-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
read.go
191 lines (169 loc) · 4.71 KB
/
read.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
package mtproto
import (
"context"
"errors"
"net"
"time"
"go.uber.org/zap"
"golang.org/x/xerrors"
"github.com/gotd/td/bin"
"github.com/gotd/td/internal/crypto"
"github.com/gotd/td/internal/proto"
"github.com/gotd/td/internal/proto/codec"
)
// errRejected is returned on invalid message that should not be processed.
var errRejected = errors.New("message rejected")
func checkMessageID(now time.Time, rawID int64) error {
id := proto.MessageID(rawID)
// Check that message is from server.
switch id.Type() {
case proto.MessageFromServer, proto.MessageServerResponse:
// Valid.
default:
return xerrors.Errorf("unexpected type %s: %w", id.Type(), errRejected)
}
// https://core.telegram.org/mtproto/description#message-identifier-msg-id
// A message is rejected over 300 seconds after it is created or 30 seconds
// before it is created (this is needed to protect from replay attacks).
const (
maxPast = time.Second * 300
maxFuture = time.Second * 30
)
created := id.Time()
if created.Before(now) && now.Sub(created) > maxPast {
return xerrors.Errorf("created too far in past: %w", errRejected)
}
if created.Sub(now) > maxFuture {
return xerrors.Errorf("created too far in future: %w", errRejected)
}
return nil
}
func (c *Conn) read(ctx context.Context, b *bin.Buffer) (*crypto.EncryptedMessageData, error) {
b.Reset()
if err := c.conn.Recv(ctx, b); err != nil {
return nil, err
}
session := c.session()
msg, err := c.cipher.DecryptFromBuffer(session.Key, b)
if err != nil {
return nil, xerrors.Errorf("decrypt: %w", err)
}
// Validating message. This protects from replay attacks.
if msg.SessionID != session.ID {
return nil, xerrors.Errorf("invalid session: %w", errRejected)
}
if err := checkMessageID(c.clock.Now(), msg.MessageID); err != nil {
return nil, xerrors.Errorf("bad message id: %w", err)
}
if !c.messageIDBuf.Consume(msg.MessageID) {
return nil, xerrors.Errorf("duplicate or too low message id: %w", errRejected)
}
return msg, nil
}
func (c *Conn) noUpdates(err error) bool {
// Checking for read timeout.
var syscall *net.OpError
if errors.As(err, &syscall) && syscall.Timeout() {
// We call SetReadDeadline so such error is expected.
c.log.Debug("No updates")
return true
}
return false
}
func (c *Conn) handleAuthKeyNotFound(ctx context.Context) error {
if c.session().ID == 0 {
// The 404 error can also be caused by zero session id.
// See https://github.com/gotd/td/issues/107
//
// We should recover from this in createAuthKey, but in general
// this code branch should be unreachable.
c.log.Warn("BUG: zero session id found")
}
c.log.Warn("Re-generating keys (server not found key that we provided)")
if err := c.createAuthKey(ctx); err != nil {
return xerrors.Errorf("unable to create auth key: %w", err)
}
c.log.Info("Re-created auth keys")
// Request will be retried by ack loop.
// Probably we can speed-up this.
return nil
}
func (c *Conn) readLoop(ctx context.Context) (err error) {
b := new(bin.Buffer)
log := c.log.Named("read")
log.Debug("Read loop started")
defer func() {
l := log
if err != nil {
l = log.With(zap.NamedError("reason", err))
}
l.Debug("Read loop done")
}()
defer close(c.messages)
for {
msg, err := c.read(ctx, b)
if errors.Is(err, errRejected) {
c.log.Warn("Ignoring rejected message", zap.Error(err))
continue
}
if err == nil {
select {
case <-ctx.Done():
return ctx.Err()
case c.messages <- msg:
continue
}
}
select {
case <-ctx.Done():
return ctx.Err()
default:
if c.noUpdates(err) {
continue
}
}
var protoErr *codec.ProtocolErr
if errors.As(err, &protoErr) && protoErr.Code == codec.CodeAuthKeyNotFound {
if err := c.handleAuthKeyNotFound(ctx); err != nil {
return xerrors.Errorf("auth key not found: %w", err)
}
continue
}
select {
case <-ctx.Done():
return xerrors.Errorf("read loop: %w", ctx.Err())
default:
return xerrors.Errorf("read: %w", err)
}
}
}
func (c *Conn) readEncryptedMessages(ctx context.Context) error {
b := new(bin.Buffer)
for {
select {
case <-ctx.Done():
return ctx.Err()
case msg, ok := <-c.messages:
if !ok {
return nil
}
b.ResetTo(msg.Data())
if err := c.handleMessage(b); err != nil {
// Probably we can return here, but this will shutdown whole
// connection which can be unexpected.
c.log.Warn("Error while handling message", zap.Error(err))
// Sending acknowledge even on error. Client should restore
// from missing updates via explicit pts check and getDiff call.
}
needAck := (msg.SeqNo & 0x01) != 0
if needAck {
select {
case <-ctx.Done():
return ctx.Err()
case c.ackSendChan <- msg.MessageID:
continue
}
}
}
}
}