-
Notifications
You must be signed in to change notification settings - Fork 14
/
otrv3.go
184 lines (145 loc) · 3.83 KB
/
otrv3.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
package otr3
import (
"bytes"
"crypto/aes"
/* #nosec G505*/
"crypto/sha1"
"crypto/sha256"
"fmt"
"hash"
"math/big"
"strconv"
)
var otrv3FragmentationPrefix = []byte("?OTR|")
const (
otrv3HeaderLen = 11
minValidInstanceTag = uint32(0x100)
)
type otrV3 struct{}
func (v otrV3) parameterLength() int {
return 192
}
func (v otrV3) isGroupElement(n *big.Int) bool {
return isGroupElement(n)
}
func (v otrV3) isFragmented(data []byte) bool {
return bytes.HasPrefix(data, otrv3FragmentationPrefix) || otrV2{}.isFragmented(data)
}
func parseItag(s []byte) (uint32, error) {
v, err := strconv.ParseInt(string(s), 16, 0)
if err != nil {
return 0, err
}
return uint32(v), nil
}
func (v otrV3) parseFragmentPrefix(c *Conversation, data []byte) (rest []byte, ignore bool, ok bool) {
if len(data) < 23 {
return data, false, false
}
header := data[:23]
headerPart := bytes.Split(header, fragmentSeparator)[0]
itagParts := bytes.Split(headerPart, fragmentItagsSeparator)
if len(itagParts) < 3 {
return data, false, false
}
senderInstanceTag, err1 := parseItag(itagParts[1])
if err1 != nil {
return data, false, false
}
receiverInstanceTag, err2 := parseItag(itagParts[2])
if err2 != nil {
return data, false, false
}
if err := v.verifyInstanceTags(c, senderInstanceTag, receiverInstanceTag); err != nil {
switch err {
case errInvalidOTRMessage:
return data, false, false
case errReceivedMessageForOtherInstance:
return data, true, true
}
}
return data[23:], false, true
}
func (v otrV3) fragmentPrefix(n, total int, itags uint32, itagr uint32) []byte {
return []byte(fmt.Sprintf("%s%08x|%08x,%05d,%05d,", string(otrv3FragmentationPrefix), itags, itagr, n+1, total))
}
func (v otrV3) protocolVersion() uint16 {
return 3
}
func (v otrV3) whitespaceTag() []byte {
return convertToWhitespace("3")
}
func (v otrV3) messageHeader(c *Conversation, msgType byte) ([]byte, error) {
if err := c.generateInstanceTag(); err != nil {
return nil, err
}
out := AppendShort(nil, v.protocolVersion())
out = append(out, msgType)
out = AppendWord(out, c.ourInstanceTag)
out = AppendWord(out, c.theirInstanceTag)
return out, nil
}
func malformedMessage(c *Conversation) {
c.messageEvent(MessageEventReceivedMessageMalformed)
c.generatePotentialErrorMessage(ErrorCodeMessageMalformed)
}
func (v otrV3) verifyInstanceTags(c *Conversation, their, our uint32) error {
if c.theirInstanceTag == 0 {
c.theirInstanceTag = their
}
if our > 0 && our < minValidInstanceTag {
malformedMessage(c)
return errInvalidOTRMessage
}
if their < minValidInstanceTag {
malformedMessage(c)
return errInvalidOTRMessage
}
if (our != 0 && c.ourInstanceTag != our) ||
(c.theirInstanceTag != their) {
c.messageEvent(MessageEventReceivedMessageForOtherInstance)
return errReceivedMessageForOtherInstance
}
return nil
}
func (v otrV3) parseMessageHeader(c *Conversation, msg []byte) ([]byte, []byte, error) {
if len(msg) < otrv3HeaderLen {
malformedMessage(c)
return nil, nil, errInvalidOTRMessage
}
header := msg[:otrv3HeaderLen]
msg, senderInstanceTag, _ := ExtractWord(msg[messageHeaderPrefix:])
msg, receiverInstanceTag, _ := ExtractWord(msg)
if err := v.verifyInstanceTags(c, senderInstanceTag, receiverInstanceTag); err != nil {
return nil, nil, err
}
return header, msg, nil
}
func (v otrV3) hashInstance() hash.Hash {
/* #nosec G401*/
return sha1.New()
}
func (v otrV3) hash(val []byte) []byte {
/* #nosec G401*/
ret := sha1.Sum(val)
return ret[:]
}
func (v otrV3) hashLength() int {
return sha1.Size
}
func (v otrV3) hash2Instance() hash.Hash {
return sha256.New()
}
func (v otrV3) hash2(val []byte) []byte {
ret := sha256.Sum256(val)
return ret[:]
}
func (v otrV3) hash2Length() int {
return sha256.Size
}
func (v otrV3) truncateLength() int {
return 20
}
func (v otrV3) keyLength() int {
return aes.BlockSize
}