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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
|
package session
import (
"bytes"
"encoding/xml"
"fmt"
"io"
"log"
"os"
"os/exec"
"sync"
"time"
"github.com/twstrike/otr3"
"github.com/twstrike/coyim/client"
"github.com/twstrike/coyim/config"
"github.com/twstrike/coyim/event"
"github.com/twstrike/coyim/i18n"
"github.com/twstrike/coyim/roster"
"github.com/twstrike/coyim/session/access"
"github.com/twstrike/coyim/session/events"
"github.com/twstrike/coyim/tls"
"github.com/twstrike/coyim/xmpp/data"
xi "github.com/twstrike/coyim/xmpp/interfaces"
"github.com/twstrike/coyim/xmpp/utils"
)
type connStatus int
// These constants represent the different connection states
const (
DISCONNECTED connStatus = iota
CONNECTING
CONNECTED
)
type session struct {
conn xi.Conn
connectionLogger io.Writer
r *roster.List
connStatus connStatus
otrEventHandler map[string]*event.OtrEventHandler
privateKeys []otr3.PrivateKey
//TODO: the session does not need all application config. Copy only what it needs to configure the session
config *config.ApplicationConfig
accountConfig *config.Account
// timeouts maps from Cookies (from outstanding requests) to the
// absolute time when that request should timeout.
timeouts map[data.Cookie]time.Time
// LastActionTime is the time at which the user last entered a command,
// or was last notified.
lastActionTime time.Time
sessionEventHandler access.EventHandler
// WantToBeOnline keeps track of whether a user has expressed a wish
// to be online - if it's true, it will do more aggressive reconnecting
wantToBeOnline bool
subscribers struct {
sync.RWMutex
subs []chan<- interface{}
}
groupDelimiter string
inMemoryLog *bytes.Buffer
xmppLogger io.Writer
connector access.Connector
cmdManager client.CommandManager
convManager client.ConversationManager
dialerFactory func(tls.Verifier) xi.Dialer
autoApproves map[string]bool
nicknames []string
}
// GetInMemoryLog returns the in memory log or nil
func (s *session) GetInMemoryLog() *bytes.Buffer {
return s.inMemoryLog
}
// GetConfig returns the current account configuration
func (s *session) GetConfig() *config.Account {
return s.accountConfig
}
func parseFromConfig(cu *config.Account) []otr3.PrivateKey {
var result []otr3.PrivateKey
allKeys := cu.AllPrivateKeys()
log.Printf("Loading %d configured keys", len(allKeys))
for _, pp := range allKeys {
_, ok, parsedKey := otr3.ParsePrivateKey(pp)
if ok {
result = append(result, parsedKey)
log.Printf("Loaded key: %s", config.FormatFingerprint(parsedKey.PublicKey().Fingerprint()))
}
}
return result
}
func createXmppLogger(rawLog string) (*bytes.Buffer, io.Writer) {
log := openLogFile(rawLog)
var inMemory *bytes.Buffer
if *config.DebugFlag {
inMemory = new(bytes.Buffer)
if log != nil {
log = io.MultiWriter(log, inMemory)
} else {
log = inMemory
}
}
return inMemory, log
}
// Factory creates a new session from the given config
func Factory(c *config.ApplicationConfig, cu *config.Account, df func(tls.Verifier) xi.Dialer) access.Session {
// Make xmppLogger go to in memory STRING and/or the log file
inMemoryLog, xmppLogger := createXmppLogger(c.RawLogFile)
s := &session{
config: c,
accountConfig: cu,
r: roster.New(),
otrEventHandler: make(map[string]*event.OtrEventHandler),
lastActionTime: time.Now(),
timeouts: make(map[data.Cookie]time.Time),
autoApproves: make(map[string]bool),
inMemoryLog: inMemoryLog,
xmppLogger: xmppLogger,
connectionLogger: logToDebugLog(),
dialerFactory: df,
}
s.ReloadKeys()
s.convManager = client.NewConversationManager(s, s)
go observe(s)
go checkReconnect(s)
return s
}
// ReloadKeys will reload the keys from the configuration
func (s *session) ReloadKeys() {
s.privateKeys = parseFromConfig(s.accountConfig)
}
// Send will send the given message to the receiver given
func (s *session) Send(to, resource string, msg string) error {
conn, ok := s.connection()
if ok {
log.Printf("<- to=%v {%v}\n", utils.ComposeFullJid(to, resource), msg)
return conn.Send(utils.ComposeFullJid(to, resource), msg)
}
return &access.OfflineError{Msg: i18n.Local("Couldn't send message since we are not connected")}
}
//TODO: error
func openLogFile(logFile string) io.Writer {
if len(logFile) == 0 {
return nil
}
log.Println("Logging XMPP messages to:", logFile)
rawLog, err := os.OpenFile(logFile, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
if err != nil {
log.Println("Failed to open log file.", err)
//return nil, errors.New("Failed to open raw log file: " + err.Error())
return nil
}
return rawLog
}
func (s *session) info(m string) {
s.publishEvent(events.Log{
Level: events.Info,
Message: m,
})
}
func (s *session) warn(m string) {
s.publishEvent(events.Log{
Level: events.Warn,
Message: m,
})
}
func (s *session) alert(m string) {
s.publishEvent(events.Log{
Level: events.Alert,
Message: m,
})
}
func (s *session) receivedStreamError(stanza *data.StreamError) bool {
s.alert("Exiting in response to fatal error from server: " + stanza.String())
return false
}
func (s *session) receivedClientMessage(stanza *data.ClientMessage) bool {
s.processClientMessage(stanza)
return true
}
func either(l, r string) string {
if l == "" {
return r
}
return l
}
func firstNonEmpty(ss ...string) string {
for _, s := range ss {
if s != "" {
return s
}
}
return ""
}
func (s *session) receivedClientPresence(stanza *data.ClientPresence) bool {
switch stanza.Type {
case "subscribe":
jj := utils.RemoveResourceFromJid(stanza.From)
if s.autoApproves[jj] {
delete(s.autoApproves, jj)
s.ApprovePresenceSubscription(jj, stanza.ID)
} else {
s.r.SubscribeRequest(jj, either(stanza.ID, "0000"), s.GetConfig().ID())
s.publishPeerEvent(
events.SubscriptionRequest,
jj,
)
}
case "unavailable":
if !s.r.PeerBecameUnavailable(stanza.From) {
return true
}
s.publishEvent(events.Presence{
Session: s,
ClientPresence: stanza,
Gone: true,
})
case "":
if !s.r.PeerPresenceUpdate(stanza.From, stanza.Show, stanza.Status, s.GetConfig().ID()) {
return true
}
s.publishEvent(events.Presence{
Session: s,
ClientPresence: stanza,
Gone: false,
})
case "subscribed":
s.r.Subscribed(stanza.From)
s.publishPeerEvent(
events.Subscribed,
utils.RemoveResourceFromJid(stanza.From),
)
case "unsubscribe":
s.r.Unsubscribed(stanza.From)
s.publishPeerEvent(
events.Unsubscribe,
utils.RemoveResourceFromJid(stanza.From),
)
case "unsubscribed":
// Ignore
case "error":
s.warn(fmt.Sprintf("Got a presence error from %s: %#v\n", stanza.From, stanza.Error))
s.r.LatestError(stanza.From, stanza.Error.Code, stanza.Error.Type, stanza.Error.Any.Space+" "+stanza.Error.Any.Local)
default:
s.info(fmt.Sprintf("unrecognized presence: %#v", stanza))
}
return true
}
func (s *session) receivedClientIQ(stanza *data.ClientIQ) bool {
if stanza.Type == "get" || stanza.Type == "set" {
reply, ignore := s.processIQ(stanza)
if ignore {
return true
}
if reply == nil {
reply = data.ErrorReply{
Type: "cancel",
Error: data.ErrorBadRequest{},
}
}
if err := s.conn.SendIQReply(stanza.From, "result", stanza.ID, reply); err != nil {
s.alert("Failed to send IQ message: " + err.Error())
}
return true
}
s.info(fmt.Sprintf("unrecognized iq: %#v", stanza))
return true
}
func (s *session) receiveStanza(stanzaChan chan data.Stanza) bool {
select {
case rawStanza, ok := <-stanzaChan:
if !ok {
return false
}
switch stanza := rawStanza.Value.(type) {
case *data.StreamError:
return s.receivedStreamError(stanza)
case *data.ClientMessage:
return s.receivedClientMessage(stanza)
case *data.ClientPresence:
return s.receivedClientPresence(stanza)
case *data.ClientIQ:
return s.receivedClientIQ(stanza)
default:
s.info(fmt.Sprintf("RECEIVED %s %s", rawStanza.Name, rawStanza.Value))
return true
}
}
}
//TODO: differentiate errors from disconnect request
func (s *session) watchStanzas() {
defer s.connectionLost()
stanzaChan := make(chan data.Stanza)
go s.readStanzasAndAlertOnErrors(stanzaChan)
for s.receiveStanza(stanzaChan) {
}
}
func (s *session) readStanzasAndAlertOnErrors(stanzaChan chan data.Stanza) {
if err := s.conn.ReadStanzas(stanzaChan); err != nil {
s.alert(fmt.Sprintf("error reading XMPP message: %s", err.Error()))
}
}
func (s *session) rosterReceived() {
s.info("Roster received")
s.publish(events.RosterReceived)
}
func (s *session) iqReceived(uid string) {
s.publishPeerEvent(events.IQReceived, uid)
}
func (s *session) receivedIQDiscoInfo() data.DiscoveryReply {
return data.DiscoveryReply{
Identities: []data.DiscoveryIdentity{
{
Category: "client",
Type: "pc",
Name: s.GetConfig().Account,
},
},
}
}
func (s *session) receivedIQVersion() data.VersionReply {
return data.VersionReply{
Name: "testing",
Version: "version",
OS: "none",
}
}
func peerFrom(entry data.RosterEntry, c *config.Account) *roster.Peer {
belongsTo := c.ID()
var nickname string
var groups []string
if p, ok := c.GetPeer(entry.Jid); ok {
nickname = p.Nickname
groups = p.Groups
}
return roster.PeerFrom(entry, belongsTo, nickname, groups)
}
func (s *session) addOrMergeNewPeer(entry data.RosterEntry, c *config.Account) bool {
return s.r.AddOrMerge(peerFrom(entry, c))
}
func (s *session) receivedIQRosterQuery(stanza *data.ClientIQ) (ret interface{}, ignore bool) {
// TODO: we should deal with "ask" attributes here
if len(stanza.From) > 0 && !s.GetConfig().Is(stanza.From) {
s.warn("Ignoring roster IQ from bad address: " + stanza.From)
return nil, true
}
var rst data.Roster
if err := xml.NewDecoder(bytes.NewBuffer(stanza.Query)).Decode(&rst); err != nil || len(rst.Item) == 0 {
s.warn("Failed to parse roster push IQ")
return nil, false
}
for _, entry := range rst.Item {
if entry.Subscription == "remove" {
s.r.Remove(entry.Jid)
} else if s.addOrMergeNewPeer(entry, s.GetConfig()) {
s.iqReceived(entry.Jid)
}
}
return data.EmptyReply{}, false
}
func (s *session) processIQ(stanza *data.ClientIQ) (ret interface{}, ignore bool) {
buf := bytes.NewBuffer(stanza.Query)
parser := xml.NewDecoder(buf)
token, _ := parser.Token()
isGet := stanza.Type == "get"
if token == nil {
return nil, false
}
startElem, ok := token.(xml.StartElement)
if !ok {
return nil, false
}
switch startElem.Name.Space + " " + startElem.Name.Local {
case "http://jabber.org/protocol/disco#info query":
if isGet {
return s.receivedIQDiscoInfo(), false
}
case "jabber:iq:version query":
if isGet {
return s.receivedIQVersion(), false
}
case "jabber:iq:roster query":
if !isGet {
return s.receivedIQRosterQuery(stanza)
}
}
s.info("Unknown IQ: " + startElem.Name.Space + " " + startElem.Name.Local)
return nil, false
}
// HandleConfirmOrDeny is used to handle a users response to a subscription request
func (s *session) HandleConfirmOrDeny(jid string, isConfirm bool) {
id, ok := s.r.RemovePendingSubscribe(jid)
if !ok {
s.warn("No pending subscription from " + jid)
return
}
var err error
switch isConfirm {
case true:
err = s.ApprovePresenceSubscription(jid, id)
default:
err = s.DenyPresenceSubscription(jid, id)
}
if err != nil {
s.warn("Error sending presence stanza: " + err.Error())
return
}
if isConfirm {
s.RequestPresenceSubscription(jid, "")
}
}
func (s *session) newOTRKeys(from string, conversation client.Conversation) {
s.publishPeerEvent(events.OTRNewKeys, from)
}
func (s *session) renewedOTRKeys(from string, conversation client.Conversation) {
s.publishPeerEvent(events.OTRRenewedKeys, from)
}
func (s *session) otrEnded(uid string) {
s.publishPeerEvent(events.OTREnded, uid)
}
func (s *session) listenToNotifications(c <-chan string, peer string) {
for notification := range c {
s.publishEvent(events.Notification{
Session: s,
Peer: peer,
Notification: notification,
})
}
}
func (s *session) listenToDelayedMessageDelivery(c <-chan int, peer string) {
for t := range c {
s.publishEvent(events.DelayedMessageSent{
Session: s,
Peer: peer,
Tracer: t,
})
}
}
// NewConversation will create a new OTR conversation with the given peer
//TODO: why creating a conversation is coupled to the account config and the session
//TODO: does the creation of the OTR event handler need to be guarded with a lock?
//TODO: Why starting a conversation requires being able to translate a message?
//This also assumes it's useful to send friendly message to another person in
//the same language configured on your app.
func (s *session) NewConversation(peer string) *otr3.Conversation {
conversation := &otr3.Conversation{}
conversation.SetOurKeys(s.privateKeys)
conversation.SetFriendlyQueryMessage(i18n.Local("Your peer has requested a private conversation with you, but your client doesn't seem to support the OTR protocol."))
instanceTag := conversation.InitializeInstanceTag(s.GetConfig().InstanceTag)
if s.GetConfig().InstanceTag != instanceTag {
s.cmdManager.ExecuteCmd(client.SaveInstanceTagCmd{
Account: s.GetConfig(),
InstanceTag: instanceTag,
})
}
s.GetConfig().SetOTRPoliciesFor(peer, conversation)
eh, ok := s.otrEventHandler[peer]
if !ok {
eh = new(event.OtrEventHandler)
eh.Delays = make(map[int]bool)
eh.Account = s.GetConfig().Account
eh.Peer = peer
notificationsChan := make(chan string)
eh.Notifications = notificationsChan
go s.listenToNotifications(notificationsChan, peer)
delayedChan := make(chan int)
eh.DelayedMessageSent = delayedChan
go s.listenToDelayedMessageDelivery(delayedChan, peer)
conversation.SetSMPEventHandler(eh)
conversation.SetErrorMessageHandler(eh)
conversation.SetMessageEventHandler(eh)
conversation.SetSecurityEventHandler(eh)
s.otrEventHandler[peer] = eh
}
return conversation
}
func (s *session) processClientMessage(stanza *data.ClientMessage) {
log.Printf("-> Stanza %#v\n", stanza)
from, resource := utils.SplitJid(stanza.From)
//TODO: investigate which errors are recoverable
//https://xmpp.org/rfcs/rfc3920.html#stanzas-error
if stanza.Type == "error" && stanza.Error != nil {
s.alert(fmt.Sprintf("Error reported from %s: %#v", from, stanza.Error))
return
}
//TODO: Add a more general solution to XEP's
if len(stanza.Body) == 0 && len(stanza.Extensions) > 0 {
//Extension only stanza
return
}
var err error
var messageTime time.Time
if stanza.Delay != nil && len(stanza.Delay.Stamp) > 0 {
// An XEP-0203 Delayed Delivery <delay/> element exists for
// this message, meaning that someone sent it while we were
// offline. Let's show the timestamp for when the message was
// sent, rather than time.Now().
messageTime, err = time.Parse(time.RFC3339, stanza.Delay.Stamp)
if err != nil {
s.alert("Can not parse Delayed Delivery timestamp, using quoted string instead.")
}
} else {
messageTime = time.Now()
}
s.receiveClientMessage(from, resource, messageTime, stanza.Body)
}
// ManuallyEndEncryptedChat allows a user to end the encrypted chat from this side
func (s *session) ManuallyEndEncryptedChat(peer, resource string) error {
c, ok := s.ConversationManager().GetConversationWith(peer, resource)
if !ok {
return fmt.Errorf("couldn't find conversation with %s / %s", peer, resource)
}
defer s.otrEventHandler[peer].ConsumeSecurityChange()
return c.EndEncryptedChat(s, resource)
}
func (s *session) receiveClientMessage(from, resource string, when time.Time, body string) {
// TODO: do we want to have different conversation instances for different resources?
conversation, _ := s.convManager.EnsureConversationWith(from, resource)
out, err := conversation.Receive(s, resource, []byte(body))
encrypted := conversation.IsEncrypted()
if err != nil {
s.alert("While processing message from " + from + ": " + err.Error())
}
eh, _ := s.otrEventHandler[from]
change := eh.ConsumeSecurityChange()
switch change {
case event.NewKeys:
s.newOTRKeys(from, conversation)
case event.RenewedKeys:
s.renewedOTRKeys(from, conversation)
case event.ConversationEnded:
s.otrEnded(from)
// TODO: all this stuff is very CLI specific, we should move it out and create good interaction
// for the gui
// TODO: twstrike/otr3 does not allow sending messages after the channel has
// been terminated, so this should not be a problem.
// This is probably unsafe without a policy that _forces_ crypto to
// _everyone_ by default and refuses plaintext. Users might not notice
// their buddy has ended a session, which they have also ended, and they
// might send a plain text message. So we should ensure they _want_ this
// feature and have set it as an explicit preference.
if s.GetConfig().OTRAutoTearDown {
c, existing := s.convManager.GetConversationWith(from, resource)
if !existing {
s.alert(fmt.Sprintf("No secure session established; unable to automatically tear down OTR conversation with %s.", from))
break
} else {
s.info(fmt.Sprintf("%s has ended the secure conversation.", from))
err := c.EndEncryptedChat(s, resource)
if err != nil {
s.info(fmt.Sprintf("Unable to automatically tear down OTR conversation with %s: %s\n", from, err.Error()))
break
}
s.info(fmt.Sprintf("Secure session with %s has been automatically ended. Messages will be sent in the clear until another OTR session is established.", from))
}
} else {
s.info(fmt.Sprintf("%s has ended the secure conversation. You should do likewise with /otr-end %s", from, from))
}
case event.SMPSecretNeeded:
s.info(fmt.Sprintf("%s is attempting to authenticate. Please supply mutual shared secret with /otr-auth user secret", from))
if question := eh.SmpQuestion; len(question) > 0 {
s.info(fmt.Sprintf("%s asks: %s", from, question))
}
case event.SMPComplete:
s.info(fmt.Sprintf("Authentication with %s successful", from))
fpr := conversation.TheirFingerprint()
s.cmdManager.ExecuteCmd(client.AuthorizeFingerprintCmd{
Account: s.GetConfig(),
Peer: from,
Fingerprint: fpr,
})
case event.SMPFailed:
s.alert(fmt.Sprintf("Authentication with %s failed", from))
}
if len(out) == 0 {
return
}
s.messageReceived(from, resource, when, encrypted, out)
}
func (s *session) messageReceived(from, resource string, timestamp time.Time, encrypted bool, message []byte) {
s.publishEvent(events.Message{
Session: s,
From: from,
Resource: resource,
When: timestamp,
Body: message,
Encrypted: encrypted,
})
s.maybeNotify()
}
func (s *session) maybeNotify() {
now := time.Now()
idleThreshold := s.config.IdleSecondsBeforeNotification
if idleThreshold == 0 {
idleThreshold = 60
}
notifyTime := s.lastActionTime.Add(time.Duration(idleThreshold) * time.Second)
if now.Before(notifyTime) {
return
}
s.lastActionTime = now
if len(s.config.NotifyCommand) == 0 {
return
}
cmd := exec.Command(s.config.NotifyCommand[0], s.config.NotifyCommand[1:]...)
go func() {
if err := cmd.Run(); err != nil {
s.alert("Failed to run notify command: " + err.Error())
}
}()
}
func isAwayStatus(status string) bool {
switch status {
case "xa", "away":
return true
}
return false
}
// AwaitVersionReply listens on the channel and waits for the version reply
func (s *session) AwaitVersionReply(ch <-chan data.Stanza, user string) {
stanza, ok := <-ch
if !ok {
s.warn("Version request to " + user + " timed out")
return
}
reply, ok := stanza.Value.(*data.ClientIQ)
if !ok {
s.warn("Version request to " + user + " resulted in bad reply type")
return
}
if reply.Type == "error" {
s.warn("Version request to " + user + " resulted in XMPP error")
return
} else if reply.Type != "result" {
s.warn("Version request to " + user + " resulted in response with unknown type: " + reply.Type)
return
}
buf := bytes.NewBuffer(reply.Query)
var versionReply data.VersionReply
if err := xml.NewDecoder(buf).Decode(&versionReply); err != nil {
s.warn("Failed to parse version reply from " + user + ": " + err.Error())
return
}
s.info(fmt.Sprintf("Version reply from %s: %#v", user, versionReply))
}
func (s *session) watchTimeout() {
tickInterval := time.Second
for s.IsConnected() {
now := <-time.After(tickInterval)
haveExpired := false
for _, expiry := range s.timeouts {
if now.After(expiry) {
haveExpired = true
break
}
}
if !haveExpired {
continue
}
newTimeouts := make(map[data.Cookie]time.Time)
for cookie, expiry := range s.timeouts {
if now.After(expiry) {
log.Println("session: cookie", cookie, "has expired")
s.conn.Cancel(cookie)
} else {
newTimeouts[cookie] = expiry
}
}
s.timeouts = newTimeouts
}
}
// Timeout set the timeout for an XMPP request
func (s *session) Timeout(c data.Cookie, t time.Time) {
s.timeouts[c] = t
}
const defaultDelimiter = "::"
func (s *session) watchRoster() {
for s.requestRoster() {
time.Sleep(time.Duration(3) * time.Minute)
}
}
func (s *session) getVCard() {
conn, ok := s.connection()
if !ok {
return
}
s.info("Fetching VCard")
vcardReply, _, err := conn.RequestVCard()
if err != nil {
s.alert("Failed to request vcard: " + err.Error())
return
}
vcardStanza, ok := <-vcardReply
if !ok {
log.Println("session: vcard request cancelled or timedout")
return
}
vc, err := data.ParseVCard(vcardStanza)
if err != nil {
s.alert("Failed to parse vcard: " + err.Error())
return
}
s.nicknames = []string{vc.Nickname, vc.FullName}
return
}
func (s *session) DisplayName() string {
return either(either(s.accountConfig.Nickname, firstNonEmpty(s.nicknames...)), s.accountConfig.Account)
}
func (s *session) requestRoster() bool {
conn, ok := s.connection()
if !ok {
return false
}
s.info("Fetching roster")
delim, err := conn.GetRosterDelimiter()
if err != nil || delim == "" {
delim = defaultDelimiter
}
s.groupDelimiter = delim
rosterReply, _, err := conn.RequestRoster()
if err != nil {
s.alert("Failed to request roster: " + err.Error())
return true
}
rosterStanza, ok := <-rosterReply
if !ok {
//TODO: should we retry the request in such case?
log.Println("session: roster request cancelled or timedout")
return true
}
rst, err := data.ParseRoster(rosterStanza)
if err != nil {
s.alert("Failed to parse roster: " + err.Error())
return true
}
for _, rr := range rst {
s.addOrMergeNewPeer(rr, s.GetConfig())
}
s.rosterReceived()
return true
}
// IsDisconnected returns true if this account is disconnected and is not in the process of connecting
func (s *session) IsDisconnected() bool {
return s.connStatus == DISCONNECTED
}
// IsConnected returns true if this account is connected and is not in the process of connecting
func (s *session) IsConnected() bool {
return s.connStatus == CONNECTED
}
func (s *session) connection() (xi.Conn, bool) {
return s.conn, s.connStatus == CONNECTED
}
func (s *session) setStatus(status connStatus) {
s.connStatus = status
switch status {
case CONNECTED:
s.publish(events.Connected)
case DISCONNECTED:
s.publish(events.Disconnected)
case CONNECTING:
s.publish(events.Connecting)
}
}
// Connect connects to the server and starts the main threads
func (s *session) Connect(password string, verifier tls.Verifier) error {
if !s.IsDisconnected() {
return nil
}
s.setStatus(CONNECTING)
conf := s.GetConfig()
policy := config.ConnectionPolicy{
Logger: s.connectionLogger,
XMPPLogger: s.xmppLogger,
DialerFactory: s.dialerFactory,
}
conn, err := policy.Connect(password, conf, verifier)
if err != nil {
s.setStatus(DISCONNECTED)
return err
}
if s.connStatus == CONNECTING {
s.conn = conn
s.setStatus(CONNECTED)
conn.SignalPresence("")
go s.watchRoster()
go s.getVCard()
go s.watchTimeout()
go s.watchStanzas()
} else {
if s.conn != nil {
s.conn.Close()
}
}
return nil
}
// EncryptAndSendTo encrypts and sends the message to the given peer
func (s *session) EncryptAndSendTo(peer, resource string, message string) (trace int, delayed bool, err error) {
//TODO: review whether it should create a conversation
if s.IsConnected() {
conversation, _ := s.convManager.EnsureConversationWith(peer, resource)
trace, err = conversation.Send(s, resource, []byte(message))
eh := s.otrEventHandler[peer]
delayed = eh.ConsumeDelayedState(trace)
return
}
return 0, false, &access.OfflineError{Msg: i18n.Local("Couldn't send message since we are not connected")}
}
func (s *session) terminateConversations() {
s.convManager.TerminateAll()
}
func (s *session) connectionLost() {
if s.IsDisconnected() {
return
}
s.Close()
s.publish(events.ConnectionLost)
}
// Close terminates all outstanding OTR conversations and closes the connection to the server
func (s *session) Close() {
if s.IsDisconnected() {
return
}
s.setStatus(DISCONNECTED)
conn := s.conn
if conn != nil {
if !s.wantToBeOnline {
s.terminateConversations()
}
conn.Close()
s.conn = nil
}
}
func (s *session) CommandManager() client.CommandManager {
return s.cmdManager
}
func (s *session) SetCommandManager(c client.CommandManager) {
s.cmdManager = c
}
func (s *session) ConversationManager() client.ConversationManager {
return s.convManager
}
func (s *session) SetWantToBeOnline(val bool) {
s.wantToBeOnline = val
}
func (s *session) PrivateKeys() []otr3.PrivateKey {
return s.privateKeys
}
func (s *session) R() *roster.List {
return s.r
}
func (s *session) SetConnector(c access.Connector) {
s.connector = c
}
func (s *session) GroupDelimiter() string {
return s.groupDelimiter
}
func (s *session) Config() *config.ApplicationConfig {
return s.config
}
func (s *session) Conn() xi.Conn {
return s.conn
}
func (s *session) SetSessionEventHandler(eh access.EventHandler) {
s.sessionEventHandler = eh
}
func (s *session) SetConnectionLogger(l io.Writer) {
s.connectionLogger = l
}
func (s *session) OtrEventHandler() map[string]*event.OtrEventHandler {
return s.otrEventHandler
}
func (s *session) SetLastActionTime(t time.Time) {
s.lastActionTime = t
}
// SendPing is called to checks if account's connection still alive
func (s *session) SendPing() {
reply, _, err := s.conn.SendPing()
if err != nil {
s.warn(fmt.Sprintf("Failure to ping server: %#v\n", err))
return
}
pingTimeout := 10 * time.Second
go func() {
select {
case <-time.After(pingTimeout):
s.info("Ping timeout. Disconnecting...")
s.setStatus(DISCONNECTED)
case stanza, _ := <-reply:
iq, ok := stanza.Value.(*data.ClientIQ)
if !ok {
return
}
if iq.Type == "error" {
s.warn("Server does not support Ping")
return
}
}
}()
}
|