2023-06-30 11:05:33 +00:00
|
|
|
package libgm
|
2023-06-30 09:54:08 +00:00
|
|
|
|
|
|
|
import (
|
2023-07-10 22:20:50 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/base64"
|
2023-07-17 23:01:06 +00:00
|
|
|
"fmt"
|
2023-07-01 09:51:13 +00:00
|
|
|
|
2023-07-17 23:01:06 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
|
2023-07-17 13:51:31 +00:00
|
|
|
"go.mau.fi/mautrix-gmessages/libgm/gmproto"
|
2023-06-30 09:54:08 +00:00
|
|
|
)
|
|
|
|
|
2023-07-17 23:01:06 +00:00
|
|
|
type IncomingRPCMessage struct {
|
|
|
|
*gmproto.IncomingRPCMessage
|
|
|
|
|
|
|
|
Pair *gmproto.RPCPairData
|
|
|
|
|
|
|
|
Message *gmproto.RPCMessageData
|
|
|
|
DecryptedData []byte
|
|
|
|
DecryptedMessage proto.Message
|
|
|
|
}
|
|
|
|
|
2023-07-18 21:59:51 +00:00
|
|
|
var responseType = map[gmproto.ActionType]proto.Message{
|
|
|
|
gmproto.ActionType_IS_BUGLE_DEFAULT: &gmproto.IsBugleDefaultResponse{},
|
|
|
|
gmproto.ActionType_GET_UPDATES: &gmproto.UpdateEvents{},
|
|
|
|
gmproto.ActionType_LIST_CONVERSATIONS: &gmproto.ListConversationsResponse{},
|
|
|
|
gmproto.ActionType_NOTIFY_DITTO_ACTIVITY: &gmproto.NotifyDittoActivityResponse{},
|
|
|
|
gmproto.ActionType_GET_CONVERSATION_TYPE: &gmproto.GetConversationTypeResponse{},
|
|
|
|
gmproto.ActionType_GET_CONVERSATION: &gmproto.GetConversationResponse{},
|
|
|
|
gmproto.ActionType_LIST_MESSAGES: &gmproto.ListMessagesResponse{},
|
|
|
|
gmproto.ActionType_SEND_MESSAGE: &gmproto.SendMessageResponse{},
|
|
|
|
gmproto.ActionType_SEND_REACTION: &gmproto.SendReactionResponse{},
|
|
|
|
gmproto.ActionType_DELETE_MESSAGE: &gmproto.DeleteMessageResponse{},
|
|
|
|
gmproto.ActionType_GET_PARTICIPANTS_THUMBNAIL: &gmproto.GetParticipantThumbnailResponse{},
|
|
|
|
gmproto.ActionType_LIST_CONTACTS: &gmproto.ListContactsResponse{},
|
|
|
|
gmproto.ActionType_LIST_TOP_CONTACTS: &gmproto.ListTopContactsResponse{},
|
|
|
|
gmproto.ActionType_GET_OR_CREATE_CONVERSATION: &gmproto.GetOrCreateConversationResponse{},
|
|
|
|
gmproto.ActionType_UPDATE_CONVERSATION: &gmproto.UpdateConversationResponse{},
|
|
|
|
}
|
|
|
|
|
2023-07-19 11:12:23 +00:00
|
|
|
func (c *Client) decryptInternalMessage(data *gmproto.IncomingRPCMessage) (*IncomingRPCMessage, error) {
|
2023-07-17 23:01:06 +00:00
|
|
|
msg := &IncomingRPCMessage{
|
|
|
|
IncomingRPCMessage: data,
|
|
|
|
}
|
|
|
|
switch data.BugleRoute {
|
|
|
|
case gmproto.BugleRoute_PairEvent:
|
|
|
|
msg.Pair = &gmproto.RPCPairData{}
|
|
|
|
err := proto.Unmarshal(data.GetMessageData(), msg.Pair)
|
|
|
|
if err != nil {
|
2023-07-31 16:44:13 +00:00
|
|
|
c.Logger.Trace().
|
|
|
|
Str("data", base64.StdEncoding.EncodeToString(msg.GetMessageData())).
|
|
|
|
Msg("Errored pair event content")
|
|
|
|
return nil, fmt.Errorf("failed to decode pair event: %w", err)
|
2023-07-17 23:01:06 +00:00
|
|
|
}
|
|
|
|
case gmproto.BugleRoute_DataEvent:
|
|
|
|
msg.Message = &gmproto.RPCMessageData{}
|
|
|
|
err := proto.Unmarshal(data.GetMessageData(), msg.Message)
|
|
|
|
if err != nil {
|
2023-07-31 16:44:13 +00:00
|
|
|
c.Logger.Trace().
|
|
|
|
Str("data", base64.StdEncoding.EncodeToString(msg.GetMessageData())).
|
|
|
|
Msg("Errored data event content")
|
|
|
|
return nil, fmt.Errorf("failed to decode data event: %w", err)
|
2023-07-17 23:01:06 +00:00
|
|
|
}
|
2023-07-18 21:59:51 +00:00
|
|
|
responseStruct, ok := responseType[msg.Message.GetAction()]
|
|
|
|
if ok {
|
|
|
|
msg.DecryptedMessage = responseStruct.ProtoReflect().New().Interface()
|
|
|
|
}
|
2023-07-17 23:01:06 +00:00
|
|
|
if msg.Message.EncryptedData != nil {
|
2023-07-19 11:12:23 +00:00
|
|
|
msg.DecryptedData, err = c.AuthData.RequestCrypto.Decrypt(msg.Message.EncryptedData)
|
2023-07-17 23:01:06 +00:00
|
|
|
if err != nil {
|
2023-07-31 16:44:13 +00:00
|
|
|
return nil, fmt.Errorf("failed to decrypt data event: %w", err)
|
2023-07-17 23:01:06 +00:00
|
|
|
}
|
2023-07-18 21:59:51 +00:00
|
|
|
if msg.DecryptedMessage != nil {
|
|
|
|
err = proto.Unmarshal(msg.DecryptedData, msg.DecryptedMessage)
|
|
|
|
if err != nil {
|
2023-07-31 16:44:13 +00:00
|
|
|
c.Logger.Trace().
|
|
|
|
Str("data", base64.StdEncoding.EncodeToString(msg.DecryptedData)).
|
|
|
|
Msg("Errored decrypted data event content")
|
|
|
|
return nil, fmt.Errorf("failed to decode decrypted data event: %w", err)
|
2023-07-18 21:59:51 +00:00
|
|
|
}
|
2023-07-17 23:01:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unknown bugle route %d", data.BugleRoute)
|
|
|
|
}
|
|
|
|
return msg, nil
|
|
|
|
}
|
|
|
|
|
2023-07-19 19:29:30 +00:00
|
|
|
func (c *Client) deduplicateHash(id string, hash [32]byte) bool {
|
2023-07-19 11:12:23 +00:00
|
|
|
const recentUpdatesLen = len(c.recentUpdates)
|
|
|
|
for i := c.recentUpdatesPtr + recentUpdatesLen - 1; i >= c.recentUpdatesPtr; i-- {
|
2023-07-19 19:29:30 +00:00
|
|
|
if c.recentUpdates[i%recentUpdatesLen].id == id {
|
|
|
|
if c.recentUpdates[i%recentUpdatesLen].hash == hash {
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
2023-07-10 22:20:50 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-19 19:29:30 +00:00
|
|
|
c.recentUpdates[c.recentUpdatesPtr] = updateDedupItem{id: id, hash: hash}
|
2023-07-19 11:12:23 +00:00
|
|
|
c.recentUpdatesPtr = (c.recentUpdatesPtr + 1) % recentUpdatesLen
|
2023-07-10 22:20:50 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-19 19:29:30 +00:00
|
|
|
func (c *Client) logContent(res *IncomingRPCMessage, thingID string, contentHash []byte) {
|
2023-07-19 11:12:23 +00:00
|
|
|
if c.Logger.Trace().Enabled() && (res.DecryptedData != nil || res.DecryptedMessage != nil) {
|
|
|
|
evt := c.Logger.Trace()
|
2023-07-17 23:01:06 +00:00
|
|
|
if res.DecryptedMessage != nil {
|
|
|
|
evt.Str("proto_name", string(res.DecryptedMessage.ProtoReflect().Descriptor().FullName()))
|
|
|
|
}
|
|
|
|
if res.DecryptedData != nil {
|
|
|
|
evt.Str("data", base64.StdEncoding.EncodeToString(res.DecryptedData))
|
2023-07-19 19:29:30 +00:00
|
|
|
if contentHash != nil {
|
|
|
|
evt.Str("thing_id", thingID)
|
|
|
|
evt.Hex("data_hash", contentHash)
|
|
|
|
}
|
2023-07-17 23:01:06 +00:00
|
|
|
} else {
|
|
|
|
evt.Str("data", "<null>")
|
|
|
|
}
|
|
|
|
evt.Msg("Got event")
|
2023-07-15 13:17:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-19 19:29:30 +00:00
|
|
|
func (c *Client) deduplicateUpdate(id string, msg *IncomingRPCMessage) bool {
|
2023-07-17 23:01:06 +00:00
|
|
|
if msg.DecryptedData != nil {
|
|
|
|
contentHash := sha256.Sum256(msg.DecryptedData)
|
2023-07-19 19:29:30 +00:00
|
|
|
if c.deduplicateHash(id, contentHash) {
|
|
|
|
c.Logger.Trace().Str("thing_id", id).Hex("data_hash", contentHash[:]).Msg("Ignoring duplicate update")
|
2023-07-10 22:20:50 +00:00
|
|
|
return true
|
|
|
|
}
|
2023-07-19 19:29:30 +00:00
|
|
|
c.logContent(msg, id, contentHash[:])
|
2023-07-10 22:20:50 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2023-07-09 11:16:52 +00:00
|
|
|
|
2023-07-19 11:12:23 +00:00
|
|
|
func (c *Client) HandleRPCMsg(rawMsg *gmproto.IncomingRPCMessage) {
|
|
|
|
msg, err := c.decryptInternalMessage(rawMsg)
|
2023-07-17 23:01:06 +00:00
|
|
|
if err != nil {
|
2023-07-19 11:12:23 +00:00
|
|
|
c.Logger.Err(err).Msg("Failed to decode incoming RPC message")
|
2023-07-09 11:16:52 +00:00
|
|
|
return
|
2023-07-01 09:51:13 +00:00
|
|
|
}
|
2023-07-09 11:16:52 +00:00
|
|
|
|
2023-07-19 11:12:23 +00:00
|
|
|
c.sessionHandler.queueMessageAck(msg.ResponseID)
|
|
|
|
if c.sessionHandler.receiveResponse(msg) {
|
2023-07-15 22:45:57 +00:00
|
|
|
return
|
|
|
|
}
|
2023-07-17 23:01:06 +00:00
|
|
|
switch msg.BugleRoute {
|
2023-07-17 13:51:31 +00:00
|
|
|
case gmproto.BugleRoute_PairEvent:
|
2023-07-19 11:12:23 +00:00
|
|
|
go c.handlePairingEvent(msg)
|
2023-07-17 13:51:31 +00:00
|
|
|
case gmproto.BugleRoute_DataEvent:
|
2023-07-19 11:12:23 +00:00
|
|
|
if c.skipCount > 0 {
|
|
|
|
c.skipCount--
|
|
|
|
c.Logger.Debug().
|
2023-07-17 23:01:06 +00:00
|
|
|
Any("action", msg.Message.GetAction()).
|
2023-07-19 11:12:23 +00:00
|
|
|
Int("remaining_skip_count", c.skipCount).
|
2023-07-15 22:45:57 +00:00
|
|
|
Msg("Skipped DataEvent")
|
2023-07-17 23:01:06 +00:00
|
|
|
if msg.DecryptedMessage != nil {
|
2023-07-19 11:12:23 +00:00
|
|
|
c.Logger.Trace().
|
2023-07-17 23:01:06 +00:00
|
|
|
Str("proto_name", string(msg.DecryptedMessage.ProtoReflect().Descriptor().FullName())).
|
|
|
|
Str("data", base64.StdEncoding.EncodeToString(msg.DecryptedData)).
|
2023-07-15 22:45:57 +00:00
|
|
|
Msg("Skipped event data")
|
2023-07-09 11:16:52 +00:00
|
|
|
}
|
2023-07-15 22:45:57 +00:00
|
|
|
return
|
2023-07-09 11:16:52 +00:00
|
|
|
}
|
2023-07-19 11:12:23 +00:00
|
|
|
c.handleUpdatesEvent(msg)
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-19 20:30:27 +00:00
|
|
|
|
|
|
|
func (c *Client) handleUpdatesEvent(msg *IncomingRPCMessage) {
|
|
|
|
switch msg.Message.Action {
|
|
|
|
case gmproto.ActionType_GET_UPDATES:
|
|
|
|
data, ok := msg.DecryptedMessage.(*gmproto.UpdateEvents)
|
|
|
|
if !ok {
|
|
|
|
c.Logger.Error().Type("data_type", msg.DecryptedMessage).Msg("Unexpected data type in GET_UPDATES event")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch evt := data.Event.(type) {
|
|
|
|
case *gmproto.UpdateEvents_UserAlertEvent:
|
|
|
|
c.logContent(msg, "", nil)
|
|
|
|
c.triggerEvent(evt.UserAlertEvent)
|
|
|
|
|
|
|
|
case *gmproto.UpdateEvents_SettingsEvent:
|
|
|
|
c.logContent(msg, "", nil)
|
|
|
|
c.triggerEvent(evt.SettingsEvent)
|
|
|
|
|
|
|
|
case *gmproto.UpdateEvents_ConversationEvent:
|
|
|
|
if c.deduplicateUpdate(evt.ConversationEvent.GetData().GetConversationID(), msg) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.triggerEvent(evt.ConversationEvent.GetData())
|
|
|
|
|
|
|
|
case *gmproto.UpdateEvents_MessageEvent:
|
|
|
|
if c.deduplicateUpdate(evt.MessageEvent.GetData().GetMessageID(), msg) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.triggerEvent(evt.MessageEvent.GetData())
|
|
|
|
|
|
|
|
case *gmproto.UpdateEvents_TypingEvent:
|
|
|
|
c.logContent(msg, "", nil)
|
|
|
|
c.triggerEvent(evt.TypingEvent.GetData())
|
|
|
|
|
|
|
|
default:
|
|
|
|
c.Logger.Trace().Any("evt", evt).Msg("Got unknown event type")
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
c.Logger.Trace().Any("response", msg).Msg("Got unexpected response")
|
|
|
|
}
|
|
|
|
}
|