-
Notifications
You must be signed in to change notification settings - Fork 3
/
request.go
240 lines (211 loc) · 5.71 KB
/
request.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package ensweb
import (
"bytes"
"crypto/tls"
"net"
"net/http"
"strings"
"time"
"github.com/EnsurityTechnologies/uuid"
)
const (
APIKeyHeader string = "X-API-Key"
)
// Operation is an enum that is used to specify the type
// of request being made
type Operation string
type CookiesType map[interface{}]interface{}
type Request struct {
ID string
Method string
Path string
TimeIn time.Time
ClientToken ClientToken
Connection *Connection
Data map[string]interface{} `json:"data" structs:"data" mapstructure:"data"`
Model interface{}
Headers http.Header
TenantID string
ss string
sd string
redID string
r *http.Request
w http.ResponseWriter `json:"-" sentinel:""`
}
type ClientToken struct {
Token string
BearerToken bool
APIKeyVerified bool
Verified bool
Model interface{}
}
// Connection represents the connection information for a request.
type Connection struct {
// RemoteAddr is the network address that sent the request.
RemoteAddr string `json:"remote_addr"`
// ConnState is the TLS connection state if applicable.
ConnState *tls.ConnectionState `sentinel:""`
}
// ipRange - a structure that holds the start and end of a range of ip addresses
type ipRange struct {
start net.IP
end net.IP
}
// inRange - check to see if a given ip address is within a range given
func inRange(r ipRange, ipAddress net.IP) bool {
// strcmp type byte comparison
if bytes.Compare(ipAddress, r.start) >= 0 && bytes.Compare(ipAddress, r.end) < 0 {
return true
}
return false
}
var privateRanges = []ipRange{
ipRange{
start: net.ParseIP("10.0.0.0"),
end: net.ParseIP("10.255.255.255"),
},
ipRange{
start: net.ParseIP("100.64.0.0"),
end: net.ParseIP("100.127.255.255"),
},
ipRange{
start: net.ParseIP("172.16.0.0"),
end: net.ParseIP("172.31.255.255"),
},
ipRange{
start: net.ParseIP("192.0.0.0"),
end: net.ParseIP("192.0.0.255"),
},
ipRange{
start: net.ParseIP("192.168.0.0"),
end: net.ParseIP("192.168.255.255"),
},
ipRange{
start: net.ParseIP("198.18.0.0"),
end: net.ParseIP("198.19.255.255"),
},
}
// isPrivateSubnet - check to see if this ip is in a private subnet
func isPrivateSubnet(ipAddress net.IP) bool {
// my use case is only concerned with ipv4 atm
if ipCheck := ipAddress.To4(); ipCheck != nil {
// iterate over all our ranges
for _, r := range privateRanges {
// check if this ip is in a private range
if inRange(r, ipAddress) {
return true
}
}
}
return false
}
func getIPAdress(r *http.Request) string {
privIP := ""
for _, h := range []string{"X-Forwarded-For", "X-Real-Ip"} {
addresses := strings.Split(r.Header.Get(h), ",")
// march from right to left until we get a public address
// that will be the address right before our proxy.
for i := len(addresses) - 1; i >= 0; i-- {
//ip := strings.TrimSpace(addresses[i])
ip, _, err := net.SplitHostPort(addresses[i])
if err != nil {
continue
}
// header can contain spaces too, strip those out.
realIP := net.ParseIP(ip)
if !realIP.IsGlobalUnicast() {
continue
} else if isPrivateSubnet(realIP) {
// bad address, go to next
if privIP == "" {
privIP = ip
}
continue
}
return ip
}
}
return privIP
}
// getConnection is used to format the connection information
func getConnection(r *http.Request) (connection *Connection) {
var remoteAddr string
remoteAddr = getIPAdress(r)
var err error
if remoteAddr == "" {
remoteAddr, _, err = net.SplitHostPort(r.RemoteAddr)
if err != nil {
remoteAddr = ""
}
}
connection = &Connection{
RemoteAddr: remoteAddr,
ConnState: r.TLS,
}
return
}
func (req *Request) GetHTTPRequest() *http.Request {
return req.r
}
func (req *Request) GetHTTPWritter() http.ResponseWriter {
return req.w
}
func (s *Server) getTenantID(r *http.Request) string {
if s.tcb == nil {
return s.defaultTenantID.String()
}
url := r.Host
url = strings.TrimPrefix(url, "https://")
return s.tcb(url)
}
func basicRequestFunc(s *Server, w http.ResponseWriter, r *http.Request) *Request {
path := r.URL.Path
requestId := uuid.New().String()
req := &Request{
ID: requestId,
Method: r.Method,
Path: path,
TimeIn: time.Now(),
ClientToken: getTokenFromReq(s, r),
Connection: getConnection(r),
Headers: r.Header,
TenantID: s.getTenantID(r),
r: r,
w: w,
}
if s.secureAPI {
if path != GetPublicKeyAPI && req.Method != "OPTIONS" {
req.redID = s.GetReqHeader(req, RequestIDHdr)
err := s.getSharedSecret(req)
if err != nil {
s.log.Error("failed to generate share secret", "err", err)
}
}
}
return req
}
// getTokenFromReq parse headers of the incoming request to extract token if
// present it accepts Authorization Bearer (RFC6750) and configured header.
// Returns true if the token was sourced from a Bearer header.
func getTokenFromReq(s *Server, r *http.Request) ClientToken {
if s.serverCfg != nil && s.serverCfg.AuthHeaderName != "" {
if token := r.Header.Get(s.serverCfg.AuthHeaderName); token != "" {
return ClientToken{Token: token, BearerToken: false}
}
}
if headers, ok := r.Header["Authorization"]; ok {
// Reference for Authorization header format: https://tools.ietf.org/html/rfc7236#section-3
// If string does not start by 'Bearer ', it is not one we would use,
// but might be used by plugins
for _, v := range headers {
if !strings.HasPrefix(v, "Bearer ") {
continue
}
return ClientToken{Token: strings.TrimSpace(v[7:]), BearerToken: true}
}
}
return ClientToken{Token: "", BearerToken: false}
}
func (s *Server) GetReqHeader(req *Request, key string) string {
return req.r.Header.Get(key)
}