forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware_basic_auth_check.go
145 lines (116 loc) · 4.47 KB
/
middleware_basic_auth_check.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
package main
import "net/http"
import (
"encoding/base64"
"errors"
"github.com/TykTechnologies/logrus"
"github.com/TykTechnologies/tykcommon"
"github.com/gorilla/context"
"golang.org/x/crypto/bcrypt"
"strings"
)
// BasicAuthKeyIsValid uses a username instead of
type BasicAuthKeyIsValid struct {
*TykMiddleware
}
// New lets you do any initialisations for the object can be done here
func (k *BasicAuthKeyIsValid) New() {}
// GetConfig retrieves the configuration from the API config - we user mapstructure for this for simplicity
func (k *BasicAuthKeyIsValid) GetConfig() (interface{}, error) {
return nil, nil
}
func (a *BasicAuthKeyIsValid) IsEnabledForSpec() bool {
return true
}
// requestForBasicAuth sends error code and message along with WWW-Authenticate header to client.
func (k *BasicAuthKeyIsValid) requestForBasicAuth(w http.ResponseWriter, msg string) (error, int) {
authReply := "Basic realm=\"" + k.TykMiddleware.Spec.Name + "\""
w.Header().Add("WWW-Authenticate", authReply)
return errors.New(msg), 401
}
// ProcessRequest will run any checks on the request on the way through the system, return an error to have the chain fail
func (k *BasicAuthKeyIsValid) ProcessRequest(w http.ResponseWriter, r *http.Request, configuration interface{}) (error, int) {
authHeaderValue := r.Header.Get("Authorization")
if authHeaderValue == "" {
// No header value, fail
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
}).Info("Attempted access with malformed header, no auth header found.")
return k.requestForBasicAuth(w, "Authorization field missing")
}
bits := strings.Split(authHeaderValue, " ")
if len(bits) != 2 {
// Header malformed
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
}).Info("Attempted access with malformed header, header not in basic auth format.")
return errors.New("Attempted access with malformed header, header not in basic auth format"), 400
}
// Decode the username:password string
authvaluesStr, err := base64.StdEncoding.DecodeString(bits[1])
if err != nil {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
}).Info("Base64 Decoding failed of basic auth data: ", err)
return errors.New("Attempted access with malformed header, auth data not encoded correctly"), 400
}
authValues := strings.Split(string(authvaluesStr), ":")
if len(authValues) != 2 {
// Header malformed
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
}).Info("Attempted access with malformed header, values not in basic auth format.")
return errors.New("Attempted access with malformed header, values not in basic auth format"), 400
}
// Check if API key valid
keyName := k.TykMiddleware.Spec.OrgID + authValues[0]
thisSessionState, keyExists := k.TykMiddleware.CheckSessionAndIdentityForValidKey(keyName)
if !keyExists {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
"key": keyName,
}).Info("Attempted access with non-existent user.")
// Fire Authfailed Event
AuthFailed(k.TykMiddleware, r, authHeaderValue)
// Report in health check
ReportHealthCheckValue(k.Spec.Health, KeyFailure, "-1")
return k.requestForBasicAuth(w, "User not authorised")
}
// Ensure that the username and password match up
var passMatch bool
if thisSessionState.BasicAuthData.Hash == HASH_BCrypt {
err := bcrypt.CompareHashAndPassword([]byte(thisSessionState.BasicAuthData.Password), []byte(authValues[1]))
if err == nil {
passMatch = true
}
}
if thisSessionState.BasicAuthData.Hash == HASH_PlainText {
if thisSessionState.BasicAuthData.Password == authValues[1] {
passMatch = true
}
}
if !passMatch {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"origin": GetIPFromRequest(r),
"key": keyName,
}).Info("Attempted access with existing user but failed password check.")
// Fire Authfailed Event
AuthFailed(k.TykMiddleware, r, authHeaderValue)
// Report in health check
ReportHealthCheckValue(k.Spec.Health, KeyFailure, "-1")
return k.requestForBasicAuth(w, "User not authorised")
}
// Set session state on context, we will need it later
if (k.TykMiddleware.Spec.BaseIdentityProvidedBy == tykcommon.BasicAuthUser) || (k.TykMiddleware.Spec.BaseIdentityProvidedBy == tykcommon.UnsetAuth) {
context.Set(r, SessionData, thisSessionState)
context.Set(r, AuthHeaderValue, keyName)
}
// Request is valid, carry on
return nil, 200
}