]>
Commit | Line | Data |
---|---|---|
6988a057 JH |
1 | package hotline |
2 | ||
3 | import ( | |
9174dbe8 | 4 | "bytes" |
6988a057 JH |
5 | "encoding/binary" |
6 | "errors" | |
7 | "fmt" | |
8 | "github.com/jhalter/mobius/concat" | |
9 | "math/rand" | |
6988a057 JH |
10 | ) |
11 | ||
12 | const ( | |
13 | tranError = 0 | |
14 | tranGetMsgs = 101 | |
15 | tranNewMsg = 102 | |
16 | tranOldPostNews = 103 | |
17 | tranServerMsg = 104 | |
18 | tranChatSend = 105 | |
19 | tranChatMsg = 106 | |
20 | tranLogin = 107 | |
21 | tranSendInstantMsg = 108 | |
22 | tranShowAgreement = 109 | |
23 | tranDisconnectUser = 110 | |
24 | // tranDisconnectMsg = 111 TODO: implement friendly disconnect | |
25 | tranInviteNewChat = 112 | |
26 | tranInviteToChat = 113 | |
27 | tranRejectChatInvite = 114 | |
28 | tranJoinChat = 115 | |
29 | tranLeaveChat = 116 | |
30 | tranNotifyChatChangeUser = 117 | |
31 | tranNotifyChatDeleteUser = 118 | |
32 | tranNotifyChatSubject = 119 | |
33 | tranSetChatSubject = 120 | |
34 | tranAgreed = 121 | |
9067f234 | 35 | tranServerBanner = 122 |
6988a057 JH |
36 | tranGetFileNameList = 200 |
37 | tranDownloadFile = 202 | |
38 | tranUploadFile = 203 | |
39 | tranNewFolder = 205 | |
40 | tranDeleteFile = 204 | |
41 | tranGetFileInfo = 206 | |
42 | tranSetFileInfo = 207 | |
43 | tranMoveFile = 208 | |
7cd900d6 | 44 | tranMakeFileAlias = 209 |
decc2fbf | 45 | tranDownloadFldr = 210 |
6988a057 | 46 | // tranDownloadInfo = 211 TODO: implement file transfer queue |
9067f234 | 47 | tranDownloadBanner = 212 |
d2810ae9 JH |
48 | tranUploadFldr = 213 |
49 | tranGetUserNameList = 300 | |
50 | tranNotifyChangeUser = 301 | |
51 | tranNotifyDeleteUser = 302 | |
52 | tranGetClientInfoText = 303 | |
53 | tranSetClientUserInfo = 304 | |
54 | tranListUsers = 348 | |
55 | tranUpdateUser = 349 | |
6988a057 JH |
56 | tranNewUser = 350 |
57 | tranDeleteUser = 351 | |
58 | tranGetUser = 352 | |
59 | tranSetUser = 353 | |
60 | tranUserAccess = 354 | |
61 | tranUserBroadcast = 355 | |
62 | tranGetNewsCatNameList = 370 | |
63 | tranGetNewsArtNameList = 371 | |
64 | tranDelNewsItem = 380 | |
65 | tranNewNewsFldr = 381 | |
66 | tranNewNewsCat = 382 | |
67 | tranGetNewsArtData = 400 | |
68 | tranPostNewsArt = 410 | |
69 | tranDelNewsArt = 411 | |
70 | tranKeepAlive = 500 | |
71 | ) | |
72 | ||
73 | type Transaction struct { | |
74 | clientID *[]byte | |
75 | ||
76 | Flags byte // Reserved (should be 0) | |
77 | IsReply byte // Request (0) or reply (1) | |
78 | Type []byte // Requested operation (user defined) | |
79 | ID []byte // Unique transaction ID (must be != 0) | |
80 | ErrorCode []byte // Used in the reply (user defined, 0 = no error) | |
81 | TotalSize []byte // Total data size for the transaction (all parts) | |
82 | DataSize []byte // Size of data in this transaction part. This allows splitting large transactions into smaller parts. | |
83 | ParamCount []byte // Number of the parameters for this transaction | |
84 | Fields []Field | |
85 | } | |
86 | ||
87 | func NewTransaction(t int, clientID *[]byte, fields ...Field) *Transaction { | |
88 | typeSlice := make([]byte, 2) | |
89 | binary.BigEndian.PutUint16(typeSlice, uint16(t)) | |
90 | ||
91 | idSlice := make([]byte, 4) | |
92 | binary.BigEndian.PutUint32(idSlice, rand.Uint32()) | |
93 | ||
94 | return &Transaction{ | |
95 | clientID: clientID, | |
96 | Flags: 0x00, | |
97 | IsReply: 0x00, | |
98 | Type: typeSlice, | |
99 | ID: idSlice, | |
100 | ErrorCode: []byte{0, 0, 0, 0}, | |
101 | Fields: fields, | |
102 | } | |
103 | } | |
104 | ||
854a92fc JH |
105 | // Write implements io.Writer interface for Transaction |
106 | func (t *Transaction) Write(p []byte) (n int, err error) { | |
107 | totalSize := binary.BigEndian.Uint32(p[12:16]) | |
6988a057 JH |
108 | |
109 | // the buf may include extra bytes that are not part of the transaction | |
110 | // tranLen represents the length of bytes that are part of the transaction | |
111 | tranLen := int(20 + totalSize) | |
112 | ||
854a92fc JH |
113 | if tranLen > len(p) { |
114 | return n, errors.New("buflen too small for tranLen") | |
6988a057 | 115 | } |
854a92fc | 116 | fields, err := ReadFields(p[20:22], p[22:tranLen]) |
6988a057 | 117 | if err != nil { |
854a92fc | 118 | return n, err |
6988a057 JH |
119 | } |
120 | ||
854a92fc JH |
121 | t.Flags = p[0] |
122 | t.IsReply = p[1] | |
123 | t.Type = p[2:4] | |
124 | t.ID = p[4:8] | |
125 | t.ErrorCode = p[8:12] | |
126 | t.TotalSize = p[12:16] | |
127 | t.DataSize = p[16:20] | |
128 | t.ParamCount = p[20:22] | |
129 | t.Fields = fields | |
130 | ||
131 | return len(p), err | |
6988a057 JH |
132 | } |
133 | ||
3178ae58 | 134 | const tranHeaderLen = 20 // fixed length of transaction fields before the variable length fields |
6988a057 | 135 | |
3178ae58 JH |
136 | // transactionScanner implements bufio.SplitFunc for parsing incoming byte slices into complete tokens |
137 | func transactionScanner(data []byte, _ bool) (advance int, token []byte, err error) { | |
138 | // The bytes that contain the size of a transaction are from 12:16, so we need at least 16 bytes | |
139 | if len(data) < 16 { | |
140 | return 0, nil, nil | |
141 | } | |
6988a057 | 142 | |
3178ae58 | 143 | totalSize := binary.BigEndian.Uint32(data[12:16]) |
6988a057 | 144 | |
3178ae58 JH |
145 | // tranLen represents the length of bytes that are part of the transaction |
146 | tranLen := int(tranHeaderLen + totalSize) | |
147 | if tranLen > len(data) { | |
148 | return 0, nil, nil | |
6988a057 JH |
149 | } |
150 | ||
3178ae58 | 151 | return tranLen, data[0:tranLen], nil |
6988a057 JH |
152 | } |
153 | ||
154 | const minFieldLen = 4 | |
155 | ||
156 | func ReadFields(paramCount []byte, buf []byte) ([]Field, error) { | |
157 | paramCountInt := int(binary.BigEndian.Uint16(paramCount)) | |
158 | if paramCountInt > 0 && len(buf) < minFieldLen { | |
159 | return []Field{}, fmt.Errorf("invalid field length %v", len(buf)) | |
160 | } | |
161 | ||
162 | // A Field consists of: | |
163 | // ID: 2 bytes | |
164 | // Size: 2 bytes | |
165 | // Data: FieldSize number of bytes | |
166 | var fields []Field | |
167 | for i := 0; i < paramCountInt; i++ { | |
168 | if len(buf) < minFieldLen { | |
169 | return []Field{}, fmt.Errorf("invalid field length %v", len(buf)) | |
170 | } | |
171 | fieldID := buf[0:2] | |
172 | fieldSize := buf[2:4] | |
173 | fieldSizeInt := int(binary.BigEndian.Uint16(buf[2:4])) | |
174 | expectedLen := minFieldLen + fieldSizeInt | |
175 | if len(buf) < expectedLen { | |
176 | return []Field{}, fmt.Errorf("field length too short") | |
177 | } | |
178 | ||
179 | fields = append(fields, Field{ | |
180 | ID: fieldID, | |
181 | FieldSize: fieldSize, | |
182 | Data: buf[4 : 4+fieldSizeInt], | |
183 | }) | |
184 | ||
185 | buf = buf[fieldSizeInt+4:] | |
186 | } | |
187 | ||
188 | if len(buf) != 0 { | |
189 | return []Field{}, fmt.Errorf("extra field bytes") | |
190 | } | |
191 | ||
192 | return fields, nil | |
193 | } | |
194 | ||
0a92e50b | 195 | func (t *Transaction) MarshalBinary() (data []byte, err error) { |
6988a057 JH |
196 | payloadSize := t.Size() |
197 | ||
198 | fieldCount := make([]byte, 2) | |
199 | binary.BigEndian.PutUint16(fieldCount, uint16(len(t.Fields))) | |
200 | ||
201 | var fieldPayload []byte | |
202 | for _, field := range t.Fields { | |
203 | fieldPayload = append(fieldPayload, field.Payload()...) | |
204 | } | |
205 | ||
206 | return concat.Slices( | |
207 | []byte{t.Flags, t.IsReply}, | |
208 | t.Type, | |
209 | t.ID, | |
210 | t.ErrorCode, | |
211 | payloadSize, | |
212 | payloadSize, // this is the dataSize field, but seeming the same as totalSize | |
213 | fieldCount, | |
214 | fieldPayload, | |
72dd37f1 | 215 | ), err |
6988a057 JH |
216 | } |
217 | ||
218 | // Size returns the total size of the transaction payload | |
0a92e50b | 219 | func (t *Transaction) Size() []byte { |
6988a057 JH |
220 | bs := make([]byte, 4) |
221 | ||
222 | fieldSize := 0 | |
223 | for _, field := range t.Fields { | |
224 | fieldSize += len(field.Data) + 4 | |
225 | } | |
226 | ||
227 | binary.BigEndian.PutUint32(bs, uint32(fieldSize+2)) | |
228 | ||
229 | return bs | |
230 | } | |
231 | ||
0a92e50b | 232 | func (t *Transaction) GetField(id int) Field { |
6988a057 JH |
233 | for _, field := range t.Fields { |
234 | if id == int(binary.BigEndian.Uint16(field.ID)) { | |
235 | return field | |
236 | } | |
237 | } | |
238 | ||
239 | return Field{} | |
240 | } | |
9174dbe8 JH |
241 | |
242 | func (t *Transaction) IsError() bool { | |
043c00da | 243 | return bytes.Equal(t.ErrorCode, []byte{0, 0, 0, 1}) |
9174dbe8 | 244 | } |