Skip to content

Commit fff7bbe

Browse files
committed
msg validation error
1 parent 411bf02 commit fff7bbe

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

server/auth/mackey.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,17 @@ func EncryptMACKey(appKey, macKey string) (string, error) {
6969
}
7070

7171
// ValidateMsgHMAC validates the hmac of a websocket message.
72-
func ValidateMsgHMAC(mac hash.Hash, data []byte) ([]byte, bool) {
72+
func ValidateMsgHMAC(mac hash.Hash, data []byte) ([]byte, error) {
7373
dlen := len(data) - mac.Size()
7474
if dlen < 0 {
75-
return nil, false
75+
return nil, xerrors.Errorf("data=%v", data)
7676
}
7777
data, h := data[:dlen], data[dlen:]
78-
return data, hmac.Equal(h, CalculateMsgHMAC(mac, data))
78+
hash := CalculateMsgHMAC(mac, data)
79+
if !hmac.Equal(h, hash) {
80+
return nil, xerrors.Errorf("hash=(%v, %v)", h, hash)
81+
}
82+
return data, nil
7983
}
8084

8185
func CalculateMsgHMAC(mac hash.Hash, data []byte) []byte {

server/binary/msg.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ func BuildRegularMsgFrame(t MsgType, seq int, payload []byte, hmac hash.Hash) []
136136
}
137137

138138
// ParseMsg parse binary data to Msg struct
139-
func UnmarshalMsg(hmac hash.Hash, alldata []byte) (Msg, error) {
140-
data, ok := auth.ValidateMsgHMAC(hmac, alldata)
141-
if !ok {
142-
return nil, xerrors.Errorf("invalid msg hmac (len=%v)", len(alldata))
139+
func UnmarshalMsg(hmac hash.Hash, data []byte) (Msg, error) {
140+
data, err := auth.ValidateMsgHMAC(hmac, data)
141+
if err != nil {
142+
return nil, xerrors.Errorf("invalid msg hmac: %w", err)
143143
}
144144

145145
if len(data) < 1 {

0 commit comments

Comments
 (0)