]>
Commit | Line | Data |
---|---|---|
6988a057 JH |
1 | package hotline |
2 | ||
3 | import ( | |
6988a057 | 4 | "encoding/binary" |
67db911d | 5 | "go.uber.org/zap" |
6988a057 | 6 | "golang.org/x/crypto/bcrypt" |
d4c152a4 | 7 | "io" |
6988a057 | 8 | "math/big" |
7cd900d6 | 9 | "sort" |
6988a057 JH |
10 | ) |
11 | ||
12 | type byClientID []*ClientConn | |
13 | ||
14 | func (s byClientID) Len() int { | |
15 | return len(s) | |
16 | } | |
17 | ||
18 | func (s byClientID) Swap(i, j int) { | |
19 | s[i], s[j] = s[j], s[i] | |
20 | } | |
21 | ||
22 | func (s byClientID) Less(i, j int) bool { | |
23 | return s[i].uint16ID() < s[j].uint16ID() | |
24 | } | |
25 | ||
d4c152a4 JH |
26 | const template = `Nickname: %s |
27 | Name: %s | |
28 | Account: %s | |
29 | Address: %s | |
30 | ||
31 | -------- File Downloads --------- | |
32 | ||
33 | %s | |
34 | ||
35 | ------- Folder Downloads -------- | |
36 | ||
37 | None. | |
38 | ||
39 | --------- File Uploads ---------- | |
40 | ||
41 | None. | |
42 | ||
43 | -------- Folder Uploads --------- | |
44 | ||
45 | None. | |
46 | ||
47 | ------- Waiting Downloads ------- | |
48 | ||
49 | None. | |
50 | ||
51 | ` | |
52 | ||
6988a057 JH |
53 | // ClientConn represents a client connected to a Server |
54 | type ClientConn struct { | |
d4c152a4 JH |
55 | Connection io.ReadWriteCloser |
56 | RemoteAddr string | |
6988a057 JH |
57 | ID *[]byte |
58 | Icon *[]byte | |
59 | Flags *[]byte | |
72dd37f1 | 60 | UserName []byte |
6988a057 | 61 | Account *Account |
61c272e1 | 62 | IdleTime int |
6988a057 JH |
63 | Server *Server |
64 | Version *[]byte | |
65 | Idle bool | |
aebc4d36 | 66 | AutoReply []byte |
6988a057 | 67 | Transfers map[int][]*FileTransfer |
bd1ce113 | 68 | Agreed bool |
67db911d | 69 | logger *zap.SugaredLogger |
6988a057 JH |
70 | } |
71 | ||
72 | func (cc *ClientConn) sendAll(t int, fields ...Field) { | |
73 | for _, c := range sortedClients(cc.Server.Clients) { | |
74 | cc.Server.outbox <- *NewTransaction(t, c.ID, fields...) | |
75 | } | |
76 | } | |
77 | ||
78 | func (cc *ClientConn) handleTransaction(transaction *Transaction) error { | |
79 | requestNum := binary.BigEndian.Uint16(transaction.Type) | |
80 | if handler, ok := TransactionHandlers[requestNum]; ok { | |
81 | for _, reqField := range handler.RequiredFields { | |
82 | field := transaction.GetField(reqField.ID) | |
83 | ||
84 | // Validate that required field is present | |
85 | if field.ID == nil { | |
0fcfa5d5 | 86 | cc.logger.Errorw( |
6988a057 | 87 | "Missing required field", |
0fcfa5d5 | 88 | "RequestType", handler.Name, "FieldID", reqField.ID, |
6988a057 JH |
89 | ) |
90 | return nil | |
91 | } | |
92 | ||
93 | if len(field.Data) < reqField.minLen { | |
0fcfa5d5 | 94 | cc.logger.Infow( |
6988a057 | 95 | "Field does not meet minLen", |
0fcfa5d5 | 96 | "RequestType", handler.Name, "FieldID", reqField.ID, |
6988a057 JH |
97 | ) |
98 | return nil | |
99 | } | |
100 | } | |
6988a057 | 101 | |
0fcfa5d5 | 102 | cc.logger.Infow("Received Transaction", "RequestType", handler.Name) |
6988a057 JH |
103 | |
104 | transactions, err := handler.Handler(cc, transaction) | |
105 | if err != nil { | |
106 | return err | |
107 | } | |
108 | for _, t := range transactions { | |
109 | cc.Server.outbox <- t | |
110 | } | |
111 | } else { | |
0fcfa5d5 JH |
112 | cc.logger.Errorw( |
113 | "Unimplemented transaction type received", "RequestID", requestNum) | |
6988a057 JH |
114 | } |
115 | ||
116 | cc.Server.mux.Lock() | |
117 | defer cc.Server.mux.Unlock() | |
118 | ||
61c272e1 JH |
119 | if requestNum != tranKeepAlive { |
120 | // reset the user idle timer | |
121 | cc.IdleTime = 0 | |
122 | ||
123 | // if user was previously idle, mark as not idle and notify other connected clients that | |
124 | // the user is no longer away | |
125 | if cc.Idle { | |
126 | flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(*cc.Flags))) | |
127 | flagBitmap.SetBit(flagBitmap, userFlagAway, 0) | |
128 | binary.BigEndian.PutUint16(*cc.Flags, uint16(flagBitmap.Int64())) | |
129 | cc.Idle = false | |
130 | ||
131 | cc.sendAll( | |
132 | tranNotifyChangeUser, | |
133 | NewField(fieldUserID, *cc.ID), | |
134 | NewField(fieldUserFlags, *cc.Flags), | |
135 | NewField(fieldUserName, cc.UserName), | |
136 | NewField(fieldUserIconID, *cc.Icon), | |
137 | ) | |
138 | } | |
6988a057 JH |
139 | } |
140 | ||
6988a057 JH |
141 | return nil |
142 | } | |
143 | ||
144 | func (cc *ClientConn) Authenticate(login string, password []byte) bool { | |
145 | if account, ok := cc.Server.Accounts[login]; ok { | |
146 | return bcrypt.CompareHashAndPassword([]byte(account.Password), password) == nil | |
147 | } | |
148 | ||
149 | return false | |
150 | } | |
151 | ||
152 | func (cc *ClientConn) uint16ID() uint16 { | |
153 | id, _ := byteToInt(*cc.ID) | |
154 | return uint16(id) | |
155 | } | |
156 | ||
157 | // Authorize checks if the user account has the specified permission | |
158 | func (cc *ClientConn) Authorize(access int) bool { | |
7cd900d6 | 159 | i := big.NewInt(int64(binary.BigEndian.Uint64(*cc.Account.Access))) |
6988a057 | 160 | |
7cd900d6 | 161 | return i.Bit(63-access) == 1 |
6988a057 JH |
162 | } |
163 | ||
164 | // Disconnect notifies other clients that a client has disconnected | |
0a92e50b | 165 | func (cc *ClientConn) Disconnect() { |
6988a057 JH |
166 | cc.Server.mux.Lock() |
167 | defer cc.Server.mux.Unlock() | |
168 | ||
169 | delete(cc.Server.Clients, binary.BigEndian.Uint16(*cc.ID)) | |
170 | ||
21581958 JH |
171 | for _, t := range cc.notifyOthers(*NewTransaction(tranNotifyDeleteUser, nil, NewField(fieldUserID, *cc.ID))) { |
172 | cc.Server.outbox <- t | |
173 | } | |
6988a057 JH |
174 | |
175 | if err := cc.Connection.Close(); err != nil { | |
d4c152a4 | 176 | cc.Server.Logger.Errorw("error closing client connection", "RemoteAddr", cc.RemoteAddr) |
6988a057 JH |
177 | } |
178 | } | |
179 | ||
003a743e | 180 | // notifyOthers sends transaction t to other clients connected to the server |
21581958 | 181 | func (cc *ClientConn) notifyOthers(t Transaction) (trans []Transaction) { |
6988a057 | 182 | for _, c := range sortedClients(cc.Server.Clients) { |
bd1ce113 | 183 | if c.ID != cc.ID && c.Agreed { |
6988a057 | 184 | t.clientID = c.ID |
21581958 | 185 | trans = append(trans, t) |
6988a057 JH |
186 | } |
187 | } | |
21581958 | 188 | return trans |
6988a057 JH |
189 | } |
190 | ||
6988a057 JH |
191 | // NewReply returns a reply Transaction with fields for the ClientConn |
192 | func (cc *ClientConn) NewReply(t *Transaction, fields ...Field) Transaction { | |
193 | reply := Transaction{ | |
194 | Flags: 0x00, | |
195 | IsReply: 0x01, | |
196 | Type: t.Type, | |
197 | ID: t.ID, | |
198 | clientID: cc.ID, | |
199 | ErrorCode: []byte{0, 0, 0, 0}, | |
200 | Fields: fields, | |
201 | } | |
202 | ||
203 | return reply | |
204 | } | |
205 | ||
206 | // NewErrReply returns an error reply Transaction with errMsg | |
207 | func (cc *ClientConn) NewErrReply(t *Transaction, errMsg string) Transaction { | |
208 | return Transaction{ | |
209 | clientID: cc.ID, | |
210 | Flags: 0x00, | |
211 | IsReply: 0x01, | |
212 | Type: []byte{0, 0}, | |
213 | ID: t.ID, | |
214 | ErrorCode: []byte{0, 0, 0, 1}, | |
215 | Fields: []Field{ | |
216 | NewField(fieldError, []byte(errMsg)), | |
217 | }, | |
218 | } | |
219 | } | |
7cd900d6 JH |
220 | |
221 | // sortedClients is a utility function that takes a map of *ClientConn and returns a sorted slice of the values. | |
222 | // The purpose of this is to ensure that the ordering of client connections is deterministic so that test assertions work. | |
223 | func sortedClients(unsortedClients map[uint16]*ClientConn) (clients []*ClientConn) { | |
224 | for _, c := range unsortedClients { | |
225 | clients = append(clients, c) | |
226 | } | |
227 | sort.Sort(byClientID(clients)) | |
228 | return clients | |
229 | } |