-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathxmpp.go
1423 lines (1239 loc) · 39.9 KB
/
xmpp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package xmpp implements the XMPP IM protocol, as specified in RFC 6120 and
// 6121.
package xmpp
import (
"bytes"
"crypto/rand"
"crypto/sha1"
"crypto/sha256"
"crypto/tls"
"crypto/x509"
"encoding/base64"
"encoding/binary"
"encoding/xml"
"errors"
"fmt"
"io"
"io/ioutil"
"net"
"reflect"
"sort"
"strconv"
"strings"
"sync"
"time"
)
const (
NsStream = "http://etherx.jabber.org/streams"
NsTLS = "urn:ietf:params:xml:ns:xmpp-tls"
NsSASL = "urn:ietf:params:xml:ns:xmpp-sasl"
NsBind = "urn:ietf:params:xml:ns:xmpp-bind"
NsSession = "urn:ietf:params:xml:ns:xmpp-session"
NsClient = "jabber:client"
// ioTimeout is the amount of time permitted between stanzas from the
// server. It's up to the user of this package to ensure that the
// server will send stanzas sufficiently frequently to satisfy this
// timeout. One can use Conn.Ping if needed.
ioTimeout = 3 * time.Minute
)
// RemoveResourceFromJid returns the user@domain portion of a JID.
func RemoveResourceFromJid(jid string) string {
slash := strings.Index(jid, "/")
if slash != -1 {
return jid[:slash]
}
return jid
}
// domainFromJid returns the domain of a full or bare JID.
func domainFromJid(jid string) string {
jid = RemoveResourceFromJid(jid)
at := strings.Index(jid, "@")
if at != -1 {
return jid[at+1:]
}
return jid
}
// Conn represents a connection to an XMPP server.
type Conn struct {
out io.Writer
rawOut io.Writer // doesn't log. Used for <auth>
in *xml.Decoder
jid string
archive bool
domain string
conn net.Conn // underlying Conn. Used for timeouts.
lock sync.Mutex
inflights map[Cookie]inflight
customStorage map[xml.Name]reflect.Type
}
// inflight contains the details of a pending request to which we are awaiting
// a reply.
type inflight struct {
// replyChan is the channel to which we'll send the reply.
replyChan chan<- Stanza
// to is the address to which we sent the request.
to string
}
// Stanza represents a message from the XMPP server.
type Stanza struct {
Name xml.Name
Value interface{}
}
// Cookie is used to give a unique identifier to each request.
type Cookie uint64
func (c *Conn) getCookie() Cookie {
var buf [8]byte
if _, err := rand.Reader.Read(buf[:]); err != nil {
panic("Failed to read random bytes: " + err.Error())
}
return Cookie(binary.LittleEndian.Uint64(buf[:]))
}
// Next reads stanzas from the server. If the stanza is a reply, it dispatches
// it to the correct channel and reads the next message. Otherwise it returns
// the stanza for processing.
func (c *Conn) Next() (stanza Stanza, err error) {
for {
if stanza.Name, stanza.Value, err = next(c); err != nil {
return
}
if iq, ok := stanza.Value.(*ClientIQ); ok && (iq.Type == "result" || iq.Type == "error") {
var cookieValue uint64
if cookieValue, err = strconv.ParseUint(iq.Id, 16, 64); err != nil {
err = errors.New("xmpp: failed to parse id from iq: " + err.Error())
return
}
cookie := Cookie(cookieValue)
c.lock.Lock()
inflight, ok := c.inflights[cookie]
c.lock.Unlock()
if !ok {
continue
}
if len(inflight.to) > 0 {
// The reply must come from the address to
// which we sent the request.
if inflight.to != iq.From {
continue
}
} else {
// If there was no destination on the request
// then the matching is more complex because
// servers differ in how they construct the
// reply.
if len(iq.From) > 0 && iq.From != c.jid && iq.From != RemoveResourceFromJid(c.jid) && iq.From != domainFromJid(c.jid) {
continue
}
}
c.lock.Lock()
delete(c.inflights, cookie)
c.lock.Unlock()
inflight.replyChan <- stanza
continue
}
return
}
}
// Cancel cancels and outstanding request. The request's channel is closed.
func (c *Conn) Cancel(cookie Cookie) bool {
c.lock.Lock()
defer c.lock.Unlock()
inflight, ok := c.inflights[cookie]
if !ok {
return false
}
delete(c.inflights, cookie)
close(inflight.replyChan)
return true
}
// RequestRoster requests the user's roster from the server. It returns a
// channel on which the reply can be read when received and a Cookie that can
// be used to cancel the request.
func (c *Conn) RequestRoster() (<-chan Stanza, Cookie, error) {
cookie := c.getCookie()
if _, err := fmt.Fprintf(c.out, "<iq type='get' id='%x'><query xmlns='jabber:iq:roster'/></iq>", cookie); err != nil {
return nil, 0, err
}
c.lock.Lock()
defer c.lock.Unlock()
ch := make(chan Stanza, 1)
c.inflights[cookie] = inflight{ch, ""}
return ch, cookie, nil
}
type rosterEntries []RosterEntry
func (entries rosterEntries) Len() int {
return len(entries)
}
func (entries rosterEntries) Less(i, j int) bool {
return entries[i].Jid < entries[j].Jid
}
func (entries rosterEntries) Swap(i, j int) {
entries[i], entries[j] = entries[j], entries[i]
}
// ParseRoster extracts roster information from the given Stanza.
func ParseRoster(reply Stanza) ([]RosterEntry, error) {
iq, ok := reply.Value.(*ClientIQ)
if !ok {
return nil, errors.New("xmpp: roster request resulted in tag of type " + reply.Name.Local)
}
var roster Roster
if err := xml.NewDecoder(bytes.NewBuffer(iq.Query)).Decode(&roster); err != nil {
return nil, err
}
sort.Sort(rosterEntries(roster.Item))
return roster.Item, nil
}
// SendIQ sends an info/query message to the given user. It returns a channel
// on which the reply can be read when received and a Cookie that can be used
// to cancel the request.
func (c *Conn) SendIQ(to, typ string, value interface{}) (reply chan Stanza, cookie Cookie, err error) {
c.lock.Lock()
defer c.lock.Unlock()
cookie = c.getCookie()
reply = make(chan Stanza, 1)
toAttr := ""
if len(to) > 0 {
toAttr = "to='" + xmlEscape(to) + "'"
}
if _, err = fmt.Fprintf(c.out, "<iq %s from='%s' type='%s' id='%x'>", toAttr, xmlEscape(c.jid), xmlEscape(typ), cookie); err != nil {
return
}
if _, ok := value.(EmptyReply); !ok {
if err = xml.NewEncoder(c.out).Encode(value); err != nil {
return
}
}
if _, err = fmt.Fprintf(c.out, "</iq>"); err != nil {
return
}
c.inflights[cookie] = inflight{reply, to}
return
}
// SendIQReply sends a reply to an IQ query.
func (c *Conn) SendIQReply(to, typ, id string, value interface{}) error {
if _, err := fmt.Fprintf(c.out, "<iq to='%s' from='%s' type='%s' id='%s'>", xmlEscape(to), xmlEscape(c.jid), xmlEscape(typ), xmlEscape(id)); err != nil {
return err
}
if _, ok := value.(EmptyReply); !ok {
if err := xml.NewEncoder(c.out).Encode(value); err != nil {
return err
}
}
_, err := fmt.Fprintf(c.out, "</iq>")
return err
}
// Send sends an IM message to the given user.
func (c *Conn) Send(to, msg string) error {
archive := ""
if !c.archive {
// The first part of archive is from google:
// See https://developers.google.com/talk/jep_extensions/otr
// The second part of the stanza is from XEP-0136
// http://xmpp.org/extensions/xep-0136.html#pref-syntax-item-otr
// http://xmpp.org/extensions/xep-0136.html#otr-nego
archive = "<nos:x xmlns:nos='google:nosave' value='enabled'/><arc:record xmlns:arc='http://jabber.org/protocol/archive' otr='require'/>"
}
_, err := fmt.Fprintf(c.out, "<message to='%s' from='%s' type='chat'><body>%s</body>%s</message>", xmlEscape(to), xmlEscape(c.jid), xmlEscape(msg), archive)
return err
}
// SendPresence sends a presence stanza. If id is empty, a unique id is
// generated.
func (c *Conn) SendPresence(to, typ, id string) error {
if len(id) == 0 {
id = strconv.FormatUint(uint64(c.getCookie()), 10)
}
_, err := fmt.Fprintf(c.out, "<presence id='%s' to='%s' type='%s'/>", xmlEscape(id), xmlEscape(to), xmlEscape(typ))
return err
}
func (c *Conn) SignalPresence(state string) error {
_, err := fmt.Fprintf(c.out, "<presence><show>%s</show></presence>", xmlEscape(state))
return err
}
func (c *Conn) SendStanza(s interface{}) error {
return xml.NewEncoder(c.out).Encode(s)
}
func (c *Conn) SetCustomStorage(space, local string, s interface{}) {
c.lock.Lock()
defer c.lock.Unlock()
if c.customStorage == nil {
c.customStorage = make(map[xml.Name]reflect.Type)
}
key := xml.Name{Space: space, Local: local}
if s == nil {
delete(c.customStorage, key)
} else {
c.customStorage[key] = reflect.TypeOf(s)
}
}
// rfc3920 section 5.2
func (c *Conn) getFeatures(domain string) (features streamFeatures, err error) {
if _, err = fmt.Fprintf(c.out, "<?xml version='1.0'?><stream:stream to='%s' xmlns='%s' xmlns:stream='%s' version='1.0'>\n", xmlEscape(domain), NsClient, NsStream); err != nil {
return
}
se, err := nextStart(c.in)
if err != nil {
return
}
if se.Name.Space != NsStream || se.Name.Local != "stream" {
err = errors.New("xmpp: expected <stream> but got <" + se.Name.Local + "> in " + se.Name.Space)
return
}
// Now we're in the stream and can use Unmarshal.
// Next message should be <features> to tell us authentication options.
// See section 4.6 in RFC 3920.
if err = c.in.DecodeElement(&features, nil); err != nil {
err = errors.New("unmarshal <features>: " + err.Error())
return
}
return
}
func (c *Conn) authenticate(features streamFeatures, user, password string) (err error) {
havePlain := false
for _, m := range features.Mechanisms.Mechanism {
if m == "PLAIN" {
havePlain = true
break
}
}
if !havePlain {
return errors.New("xmpp: PLAIN authentication is not an option")
}
// Plain authentication: send base64-encoded \x00 user \x00 password.
raw := "\x00" + user + "\x00" + password
enc := make([]byte, base64.StdEncoding.EncodedLen(len(raw)))
base64.StdEncoding.Encode(enc, []byte(raw))
fmt.Fprintf(c.rawOut, "<auth xmlns='%s' mechanism='PLAIN'>%s</auth>\n", NsSASL, enc)
// Next message should be either success or failure.
name, val, err := next(c)
switch v := val.(type) {
case *saslSuccess:
case *saslFailure:
// v.Any is type of sub-element in failure,
// which gives a description of what failed.
return errors.New("xmpp: authentication failure: " + v.Any.Local)
default:
return errors.New("expected <success> or <failure>, got <" + name.Local + "> in " + name.Space)
}
return nil
}
func certName(cert *x509.Certificate) string {
name := cert.Subject
ret := ""
for _, org := range name.Organization {
ret += "O=" + org + "/"
}
for _, ou := range name.OrganizationalUnit {
ret += "OU=" + ou + "/"
}
if len(name.CommonName) > 0 {
ret += "CN=" + name.CommonName + "/"
}
return ret
}
// Resolve performs a DNS SRV lookup for the XMPP server that serves the given
// domain.
func Resolve(domain string) (host string, port uint16, err error) {
_, addrs, err := net.LookupSRV("xmpp-client", "tcp", domain)
if err != nil {
return "", 0, err
}
if len(addrs) == 0 {
return "", 0, errors.New("xmpp: no SRV records found for " + domain)
}
return addrs[0].Target, addrs[0].Port, nil
}
// Config contains options for an XMPP connection.
type Config struct {
// Conn is the connection to the server, if non-nill.
Conn net.Conn
// InLog is an optional Writer which receives the raw contents of the
// XML from the server.
InLog io.Writer
// OutLog is an optional Writer which receives the raw XML sent to the
// server.
OutLog io.Writer
// Log is an optional Writer which receives human readable log messages
// during the connection.
Log io.Writer
// CreateCallback, if not nil, causes a new account to be created on
// the server. The callback is needed in order to be able to handle
// XMPP forms.
CreateCallback FormCallback
// TrustedAddress, if true, means that the address passed to Dial is
// trusted and that certificates for that name should be accepted.
TrustedAddress bool
// Archive determines whether we disable archiving for messages. If
// false, XML is sent with each message to disable recording on the
// server.
Archive bool
// ServerCertificateSHA256 contains the SHA-256 hash of the server's
// leaf certificate, or may be empty to use normal X.509 verification.
// If this is specified then normal X.509 verification is disabled.
ServerCertificateSHA256 []byte
// SkipTLS, if true, causes the TLS handshake to be skipped.
// WARNING: this should only be used if Conn is already secure.
SkipTLS bool
// TLSConfig contains the configuration to be used by the TLS
// handshake. If nil, sensible defaults will be used.
TLSConfig *tls.Config
}
var tlsVersionStrings = map[uint16]string{
tls.VersionSSL30: "SSL 3.0",
tls.VersionTLS10: "TLS 1.0",
tls.VersionTLS11: "TLS 1.1",
tls.VersionTLS12: "TLS 1.2",
}
var tlsCipherSuiteNames = map[uint16]string{
0x0005: "TLS_RSA_WITH_RC4_128_SHA",
0x000a: "TLS_RSA_WITH_3DES_EDE_CBC_SHA",
0x002f: "TLS_RSA_WITH_AES_128_CBC_SHA",
0x0035: "TLS_RSA_WITH_AES_256_CBC_SHA",
0xc007: "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA",
0xc009: "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
0xc00a: "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
0xc011: "TLS_ECDHE_RSA_WITH_RC4_128_SHA",
0xc012: "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA",
0xc013: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
0xc014: "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
0xc02f: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
0xc02b: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
}
func printTLSDetails(w io.Writer, tlsState tls.ConnectionState) {
version, ok := tlsVersionStrings[tlsState.Version]
if !ok {
version = "unknown"
}
cipherSuite, ok := tlsCipherSuiteNames[tlsState.CipherSuite]
if !ok {
cipherSuite = "unknown"
}
fmt.Fprintf(w, " SSL/TLS version: %s\n", version)
fmt.Fprintf(w, " Cipher suite: %s\n", cipherSuite)
}
// Dial creates a new connection to an XMPP server, authenticates as the
// given user.
func Dial(address, user, domain, resource, password string, config *Config) (c *Conn, err error) {
c = new(Conn)
c.inflights = make(map[Cookie]inflight)
c.archive = config.Archive
log := ioutil.Discard
if config != nil && config.Log != nil {
log = config.Log
}
var conn net.Conn
if config != nil && config.Conn != nil {
conn = config.Conn
} else {
io.WriteString(log, "Making TCP connection to "+address+"\n")
if conn, err = net.Dial("tcp", address); err != nil {
return nil, err
}
}
c.in, c.out = makeInOut(conn, config)
c.conn = conn
c.domain = domain
features, err := c.getFeatures(domain)
if err != nil {
return nil, err
}
if !config.SkipTLS {
if features.StartTLS.XMLName.Local == "" {
return nil, errors.New("xmpp: server doesn't support TLS")
}
fmt.Fprintf(c.out, "<starttls xmlns='%s'/>", NsTLS)
proceed, err := nextStart(c.in)
if err != nil {
return nil, err
}
if proceed.Name.Space != NsTLS || proceed.Name.Local != "proceed" {
return nil, errors.New("xmpp: expected <proceed> after <starttls> but got <" + proceed.Name.Local + "> in " + proceed.Name.Space)
}
io.WriteString(log, "Starting TLS handshake\n")
haveCertHash := len(config.ServerCertificateSHA256) != 0
var tlsConfig tls.Config
if config.TLSConfig != nil {
tlsConfig = *config.TLSConfig
}
tlsConfig.ServerName = domain
tlsConfig.InsecureSkipVerify = true
tlsConn := tls.Client(conn, &tlsConfig)
if err := tlsConn.Handshake(); err != nil {
return nil, err
}
tlsState := tlsConn.ConnectionState()
printTLSDetails(log, tlsState)
if haveCertHash {
h := sha256.New()
h.Write(tlsState.PeerCertificates[0].Raw)
if digest := h.Sum(nil); !bytes.Equal(digest, config.ServerCertificateSHA256) {
return nil, fmt.Errorf("xmpp: server certificate does not match expected hash (got: %x, want: %x)", digest, config.ServerCertificateSHA256)
}
} else {
if len(tlsState.PeerCertificates) == 0 {
return nil, errors.New("xmpp: server has no certificates")
}
opts := x509.VerifyOptions{
Intermediates: x509.NewCertPool(),
Roots: tlsConfig.RootCAs,
}
for _, cert := range tlsState.PeerCertificates[1:] {
opts.Intermediates.AddCert(cert)
}
verifiedChains, err := tlsState.PeerCertificates[0].Verify(opts)
if err != nil {
return nil, errors.New("xmpp: failed to verify TLS certificate: " + err.Error())
}
for i, cert := range verifiedChains[0] {
fmt.Fprintf(log, " certificate %d: %s\n", i, certName(cert))
}
leafCert := verifiedChains[0][0]
if err := leafCert.VerifyHostname(domain); err != nil {
if config.TrustedAddress {
fmt.Fprintf(log, "Certificate fails to verify against domain in username: %s\n", err)
host, _, err := net.SplitHostPort(address)
if err != nil {
return nil, errors.New("xmpp: failed to split address when checking whether TLS certificate is valid: " + err.Error())
}
if err = leafCert.VerifyHostname(host); err != nil {
return nil, errors.New("xmpp: failed to match TLS certificate to address after failing to match to username: " + err.Error())
}
fmt.Fprintf(log, "Certificate matches against trusted server hostname: %s\n", host)
} else {
return nil, errors.New("xmpp: failed to match TLS certificate to name: " + err.Error())
}
}
}
c.in, c.out = makeInOut(tlsConn, config)
c.rawOut = tlsConn
if features, err = c.getFeatures(domain); err != nil {
return nil, err
}
} else {
c.rawOut = conn
}
if config != nil && config.CreateCallback != nil {
io.WriteString(log, "Attempting to create account\n")
fmt.Fprintf(c.out, "<iq type='get' id='create_1'><query xmlns='jabber:iq:register'/></iq>")
var iq ClientIQ
if err = c.in.DecodeElement(&iq, nil); err != nil {
return nil, errors.New("unmarshal <iq>: " + err.Error())
}
if iq.Type != "result" {
return nil, errors.New("xmpp: account creation failed")
}
var register RegisterQuery
if err := xml.NewDecoder(bytes.NewBuffer(iq.Query)).Decode(®ister); err != nil {
return nil, err
}
if len(register.Form.Type) > 0 {
reply, err := processForm(®ister.Form, register.Datas, config.CreateCallback)
fmt.Fprintf(c.rawOut, "<iq type='set' id='create_2'><query xmlns='jabber:iq:register'>")
if err = xml.NewEncoder(c.rawOut).Encode(reply); err != nil {
return nil, err
}
fmt.Fprintf(c.rawOut, "</query></iq>")
} else if register.Username != nil && register.Password != nil {
// Try the old-style registration.
fmt.Fprintf(c.rawOut, "<iq type='set' id='create_2'><query xmlns='jabber:iq:register'><username>%s</username><password>%s</password></query></iq>", user, password)
}
if err != nil {
return nil, err
}
var iq2 ClientIQ
if err = c.in.DecodeElement(&iq2, nil); err != nil {
return nil, errors.New("unmarshal <iq>: " + err.Error())
}
if iq2.Type == "error" {
return nil, errors.New("xmpp: account creation failed")
}
}
io.WriteString(log, "Authenticating as "+user+"\n")
if err := c.authenticate(features, user, password); err != nil {
return nil, err
}
io.WriteString(log, "Authentication successful\n")
if features, err = c.getFeatures(domain); err != nil {
return nil, err
}
if len(resource) == 0 {
// Let the server specify the resource.
// Send IQ message asking to bind to the local user name.
fmt.Fprintf(c.out, "<iq type='set' id='bind_1'><bind xmlns='%s'/></iq>", NsBind)
} else {
fmt.Fprintf(c.out,
"<iq type='set' id='bind_2'><bind xmlns='%s'><resource>%s</resource></bind></iq>",
NsBind, xmlEscape(resource))
}
var iq ClientIQ
if err = c.in.DecodeElement(&iq, nil); err != nil {
return nil, errors.New("unmarshal <iq>: " + err.Error())
}
if &iq.Bind == nil {
return nil, errors.New("<iq> result missing <bind>")
}
c.jid = iq.Bind.Jid // our local id
if features.Session != nil {
// The server needs a session to be established. See RFC 3921,
// section 3.
fmt.Fprintf(c.out, "<iq to='%s' type='set' id='sess_1'><session xmlns='%s'/></iq>", domain, NsSession)
if err = c.in.DecodeElement(&iq, nil); err != nil {
return nil, errors.New("xmpp: unmarshal <iq>: " + err.Error())
}
if iq.Type != "result" {
return nil, errors.New("xmpp: session establishment failed")
}
}
return c, nil
}
// Ping sends an XMPP ping to the domain this client is connected to.
func (c *Conn) Ping() {
c.SendIQ(c.domain, "get", struct {
XMLName xml.Name `xml:"urn:xmpp:ping ping"`
}{})
}
func makeInOut(conn io.ReadWriter, config *Config) (in *xml.Decoder, out io.Writer) {
if config != nil && config.InLog != nil {
in = xml.NewDecoder(io.TeeReader(conn, config.InLog))
} else {
in = xml.NewDecoder(conn)
}
if config != nil && config.OutLog != nil {
out = io.MultiWriter(conn, config.OutLog)
} else {
out = conn
}
return
}
var xmlSpecial = map[byte]string{
'<': "<",
'>': ">",
'"': """,
'\'': "'",
'&': "&",
}
func xmlEscape(s string) string {
var b bytes.Buffer
for i := 0; i < len(s); i++ {
c := s[i]
if s, ok := xmlSpecial[c]; ok {
b.WriteString(s)
} else {
b.WriteByte(c)
}
}
return b.String()
}
// Scan XML token stream to find next StartElement.
func nextStart(p *xml.Decoder) (elem xml.StartElement, err error) {
for {
var t xml.Token
t, err = p.Token()
if err != nil {
return
}
switch t := t.(type) {
case xml.StartElement:
elem = t
return
}
}
}
// RFC 3920 C.1 Streams name space
type streamFeatures struct {
XMLName xml.Name `xml:"http://etherx.jabber.org/streams features"`
StartTLS tlsStartTLS
Mechanisms saslMechanisms
Bind bindBind
// This is a hack for now to get around the fact that the new encoding/xml
// doesn't unmarshal to XMLName elements.
Session *string `xml:"session"`
}
type StreamError struct {
XMLName xml.Name `xml:"http://etherx.jabber.org/streams error"`
Any xml.Name `xml:",any"`
Text string `xml:"text"`
}
// RFC 3920 C.3 TLS name space
type tlsStartTLS struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls starttls"`
Required xml.Name `xml:"required"`
}
type tlsProceed struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls proceed"`
}
type tlsFailure struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls failure"`
}
// RFC 3920 C.4 SASL name space
type saslMechanisms struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-sasl mechanisms"`
Mechanism []string `xml:"mechanism"`
}
type saslAuth struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-sasl auth"`
Mechanism string `xml:"mechanism,attr"`
}
type saslChallenge string
type saslResponse string
type saslAbort struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-sasl abort"`
}
type saslSuccess struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-sasl success"`
}
type saslFailure struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-sasl failure"`
Any xml.Name `xml:",any"`
}
// RFC 3920 C.5 Resource binding name space
type bindBind struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-bind bind"`
Resource string `xml:"resource"`
Jid string `xml:"jid"`
}
// XEP-0203: Delayed Delivery of <message/> and <presence/> stanzas.
type Delay struct {
XMLName xml.Name `xml:"urn:xmpp:delay delay"`
From string `xml:"from,attr,omitempty"`
Stamp string `xml:"stamp,attr"`
Body string `xml:",chardata"`
}
// RFC 3921 B.1 jabber:client
type ClientMessage struct {
XMLName xml.Name `xml:"jabber:client message"`
From string `xml:"from,attr"`
Id string `xml:"id,attr"`
To string `xml:"to,attr"`
Type string `xml:"type,attr"` // chat, error, groupchat, headline, or normal
// These should technically be []clientText,
// but string is much more convenient.
Subject string `xml:"subject"`
Body string `xml:"body"`
Thread string `xml:"thread"`
Delay *Delay `xml:"delay,omitempty"`
}
type ClientText struct {
Lang string `xml:"lang,attr"`
Body string `xml:",chardata"`
}
type ClientPresence struct {
XMLName xml.Name `xml:"jabber:client presence"`
From string `xml:"from,attr,omitempty"`
Id string `xml:"id,attr,omitempty"`
To string `xml:"to,attr,omitempty"`
Type string `xml:"type,attr,omitempty"` // error, probe, subscribe, subscribed, unavailable, unsubscribe, unsubscribed
Lang string `xml:"lang,attr,omitempty"`
Show string `xml:"show,omitempty"` // away, chat, dnd, xa
Status string `xml:"status,omitempty"` // sb []clientText
Priority string `xml:"priority,omitempty"`
Caps *ClientCaps `xml:"c"`
Error *ClientError `xml:"error"`
Delay Delay `xml:"delay"`
}
type ClientCaps struct {
XMLName xml.Name `xml:"http://jabber.org/protocol/caps c"`
Ext string `xml:"ext,attr"`
Hash string `xml:"hash,attr"`
Node string `xml:"node,attr"`
Ver string `xml:"ver,attr"`
}
type ClientIQ struct { // info/query
XMLName xml.Name `xml:"jabber:client iq"`
From string `xml:"from,attr"`
Id string `xml:"id,attr"`
To string `xml:"to,attr"`
Type string `xml:"type,attr"` // error, get, result, set
Error ClientError `xml:"error"`
Bind bindBind `xml:"bind"`
Query []byte `xml:",innerxml"`
}
type ClientError struct {
XMLName xml.Name `xml:"jabber:client error"`
Code string `xml:"code,attr"`
Type string `xml:"type,attr"`
Any xml.Name `xml:",any"`
Text string `xml:"text"`
}
type Roster struct {
XMLName xml.Name `xml:"jabber:iq:roster query"`
Item []RosterEntry `xml:"item"`
}
type RosterEntry struct {
Jid string `xml:"jid,attr"`
Subscription string `xml:"subscription,attr"`
Name string `xml:"name,attr"`
Group []string `xml:"group"`
}
type RegisterQuery struct {
XMLName xml.Name `xml:"jabber:iq:register query"`
Username *xml.Name `xml:"username"`
Password *xml.Name `xml:"password"`
Form Form `xml:"x"`
Datas []bobData `xml:"data"`
}
// bobData is a data element from http://xmpp.org/extensions/xep-0231.html.
type bobData struct {
XMLName xml.Name `xml:"urn:xmpp:bob data"`
CID string `xml:"cid,attr"`
MIMEType string `xml:"type,attr"`
Base64 string `xml:",chardata"`
}
// Scan XML token stream for next element and save into val.
// If val == nil, allocate new element based on proto map.
// Either way, return val.
func next(c *Conn) (xml.Name, interface{}, error) {
// Read start element to find out what type we want.
se, err := nextStart(c.in)
if err != nil {
return xml.Name{}, nil, err
}
c.conn.SetDeadline(time.Now().Add(ioTimeout))
// Put it in an interface and allocate one.
var nv interface{}
c.lock.Lock()
defer c.lock.Unlock()
if t, e := c.customStorage[se.Name]; e {
nv = reflect.New(t).Interface()
} else if t, e := defaultStorage[se.Name]; e {
nv = reflect.New(t).Interface()
} else {
return xml.Name{}, nil, errors.New("unexpected XMPP message " +
se.Name.Space + " <" + se.Name.Local + "/>")
}
// Unmarshal into that storage.
if err = c.in.DecodeElement(nv, &se); err != nil {
return xml.Name{}, nil, err
}
return se.Name, nv, err
}
var defaultStorage = map[xml.Name]reflect.Type{
xml.Name{Space: NsStream, Local: "features"}: reflect.TypeOf(streamFeatures{}),
xml.Name{Space: NsStream, Local: "error"}: reflect.TypeOf(StreamError{}),
xml.Name{Space: NsTLS, Local: "starttls"}: reflect.TypeOf(tlsStartTLS{}),
xml.Name{Space: NsTLS, Local: "proceed"}: reflect.TypeOf(tlsProceed{}),
xml.Name{Space: NsTLS, Local: "failure"}: reflect.TypeOf(tlsFailure{}),
xml.Name{Space: NsSASL, Local: "mechanisms"}: reflect.TypeOf(saslMechanisms{}),
xml.Name{Space: NsSASL, Local: "challenge"}: reflect.TypeOf(""),
xml.Name{Space: NsSASL, Local: "response"}: reflect.TypeOf(""),
xml.Name{Space: NsSASL, Local: "abort"}: reflect.TypeOf(saslAbort{}),
xml.Name{Space: NsSASL, Local: "success"}: reflect.TypeOf(saslSuccess{}),
xml.Name{Space: NsSASL, Local: "failure"}: reflect.TypeOf(saslFailure{}),
xml.Name{Space: NsBind, Local: "bind"}: reflect.TypeOf(bindBind{}),
xml.Name{Space: NsClient, Local: "message"}: reflect.TypeOf(ClientMessage{}),
xml.Name{Space: NsClient, Local: "presence"}: reflect.TypeOf(ClientPresence{}),
xml.Name{Space: NsClient, Local: "iq"}: reflect.TypeOf(ClientIQ{}),
xml.Name{Space: NsClient, Local: "error"}: reflect.TypeOf(ClientError{}),
}
type DiscoveryReply struct {
XMLName xml.Name `xml:"http://jabber.org/protocol/disco#info query"`
Node string `xml:"node"`
Identities []DiscoveryIdentity `xml:"identity"`
Features []DiscoveryFeature `xml:"feature"`
Forms []Form `xml:"jabber:x:data x"`
}
type DiscoveryIdentity struct {
XMLName xml.Name `xml:"http://jabber.org/protocol/disco#info identity"`
Lang string `xml:"lang,attr,omitempty"`
Category string `xml:"category,attr"`
Type string `xml:"type,attr"`
Name string `xml:"name,attr"`
}
type DiscoveryFeature struct {
XMLName xml.Name `xml:"http://jabber.org/protocol/disco#info feature"`
Var string `xml:"var,attr"`
}
type Form struct {
XMLName xml.Name `xml:"jabber:x:data x"`
Type string `xml:"type,attr"`
Title string `xml:"title,omitempty"`
Instructions string `xml:"instructions,omitempty"`
Fields []formField `xml:"field"`
}
type formField struct {
XMLName xml.Name `xml:"field"`
Desc string `xml:"desc,omitempty"`
Var string `xml:"var,attr"`
Type string `xml:"type,attr,omitempty"`
Label string `xml:"label,attr,omitempty"`
Required *formFieldRequired `xml:"required"`
Values []string `xml:"value"`
Options []formFieldOption `xml:"option"`
Media []formFieldMedia `xml:"media"`
}