]> git.r.bdr.sh - rbdr/mobius/blame - hotline/client_conn.go
Use client logger
[rbdr/mobius] / hotline / client_conn.go
CommitLineData
6988a057
JH
1package hotline
2
3import (
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
12type byClientID []*ClientConn
13
14func (s byClientID) Len() int {
15 return len(s)
16}
17
18func (s byClientID) Swap(i, j int) {
19 s[i], s[j] = s[j], s[i]
20}
21
22func (s byClientID) Less(i, j int) bool {
23 return s[i].uint16ID() < s[j].uint16ID()
24}
25
d4c152a4
JH
26const template = `Nickname: %s
27Name: %s
28Account: %s
29Address: %s
30
31-------- File Downloads ---------
32
33%s
34
35------- Folder Downloads --------
36
37None.
38
39--------- File Uploads ----------
40
41None.
42
43-------- Folder Uploads ---------
44
45None.
46
47------- Waiting Downloads -------
48
49None.
50
51 `
52
6988a057
JH
53// ClientConn represents a client connected to a Server
54type 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
72func (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
78func (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
144func (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
152func (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
158func (cc *ClientConn) Authorize(access int) bool {
159 if access == 0 {
160 return true
161 }
162
7cd900d6 163 i := big.NewInt(int64(binary.BigEndian.Uint64(*cc.Account.Access)))
6988a057 164
7cd900d6 165 return i.Bit(63-access) == 1
6988a057
JH
166}
167
168// Disconnect notifies other clients that a client has disconnected
0a92e50b 169func (cc *ClientConn) Disconnect() {
6988a057
JH
170 cc.Server.mux.Lock()
171 defer cc.Server.mux.Unlock()
172
173 delete(cc.Server.Clients, binary.BigEndian.Uint16(*cc.ID))
174
003a743e 175 cc.notifyOthers(*NewTransaction(tranNotifyDeleteUser, nil, NewField(fieldUserID, *cc.ID)))
6988a057
JH
176
177 if err := cc.Connection.Close(); err != nil {
d4c152a4 178 cc.Server.Logger.Errorw("error closing client connection", "RemoteAddr", cc.RemoteAddr)
6988a057
JH
179 }
180}
181
003a743e 182// notifyOthers sends transaction t to other clients connected to the server
0a92e50b 183func (cc *ClientConn) notifyOthers(t Transaction) {
6988a057 184 for _, c := range sortedClients(cc.Server.Clients) {
bd1ce113 185 if c.ID != cc.ID && c.Agreed {
6988a057
JH
186 t.clientID = c.ID
187 cc.Server.outbox <- t
188 }
189 }
190}
191
6988a057
JH
192// NewReply returns a reply Transaction with fields for the ClientConn
193func (cc *ClientConn) NewReply(t *Transaction, fields ...Field) Transaction {
194 reply := Transaction{
195 Flags: 0x00,
196 IsReply: 0x01,
197 Type: t.Type,
198 ID: t.ID,
199 clientID: cc.ID,
200 ErrorCode: []byte{0, 0, 0, 0},
201 Fields: fields,
202 }
203
204 return reply
205}
206
207// NewErrReply returns an error reply Transaction with errMsg
208func (cc *ClientConn) NewErrReply(t *Transaction, errMsg string) Transaction {
209 return Transaction{
210 clientID: cc.ID,
211 Flags: 0x00,
212 IsReply: 0x01,
213 Type: []byte{0, 0},
214 ID: t.ID,
215 ErrorCode: []byte{0, 0, 0, 1},
216 Fields: []Field{
217 NewField(fieldError, []byte(errMsg)),
218 },
219 }
220}
7cd900d6
JH
221
222// sortedClients is a utility function that takes a map of *ClientConn and returns a sorted slice of the values.
223// The purpose of this is to ensure that the ordering of client connections is deterministic so that test assertions work.
224func sortedClients(unsortedClients map[uint16]*ClientConn) (clients []*ClientConn) {
225 for _, c := range unsortedClients {
226 clients = append(clients, c)
227 }
228 sort.Sort(byClientID(clients))
229 return clients
230}