-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhandler.go
More file actions
445 lines (374 loc) · 10.2 KB
/
handler.go
File metadata and controls
445 lines (374 loc) · 10.2 KB
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
package yap
import (
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"net/url"
"strings"
"github.com/golang/glog"
"github.com/yaproxy/yap/yaputil"
)
// FlushWriter is a wrapper for io.Writer.
// When call the Write method, FlushWriter will try to call Flush after call Write for the io.Writer
type FlushWriter struct {
w io.Writer
}
// Write implements io.Writer
func (fw FlushWriter) Write(p []byte) (n int, err error) {
n, err = fw.w.Write(p)
if f, ok := fw.w.(http.Flusher); ok {
f.Flush()
}
return
}
// HTTPHandler serves as a HTTP proxy
type HTTPHandler struct {
Dial func(network, address string) (net.Conn, error)
*http.Transport
Authenticator
}
// ServeHTTP implements http.Handler interface
func (h *HTTPHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
var err error
var paramsPrefix string = http.CanonicalHeaderKey("X-UrlFetch-")
params := http.Header{}
for key, values := range req.Header {
if strings.HasPrefix(key, paramsPrefix) {
params[key] = values
}
}
for key := range params {
req.Header.Del(key)
}
if h.Authenticator != nil {
auth := req.Header.Get("Proxy-Authorization")
if auth == "" {
h.ProxyAuthorizationRequired(rw, req)
return
}
parts := strings.SplitN(auth, " ", 2)
if len(parts) == 2 {
switch parts[0] {
case "Basic":
if auth, err := base64.StdEncoding.DecodeString(parts[1]); err == nil {
parts := strings.Split(string(auth), ":")
username := parts[0]
password := parts[1]
if err := h.Authenticator.Authenticate(username, password); err != nil {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
}
default:
glog.Errorf("Unrecognized auth type: %#v", parts[0])
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
}
req.Header.Del("Proxy-Authorization")
}
if req.Method == http.MethodConnect {
host, port, err := net.SplitHostPort(req.Host)
if err != nil {
host = req.Host
port = "443"
}
glog.Infof("%s \"%s %s:%s %s\" - -", req.RemoteAddr, req.Method, host, port, req.Proto)
dial := h.Dial
if dial == nil {
dial = h.Transport.Dial
}
conn, err := dial("tcp", net.JoinHostPort(host, port))
if err != nil {
http.Error(rw, err.Error(), http.StatusBadGateway)
return
}
hijacker, ok := rw.(http.Hijacker)
if !ok {
http.Error(rw, fmt.Sprintf("%#v is not http.Hijacker", rw), http.StatusBadGateway)
return
}
lconn, _, err := hijacker.Hijack()
if err != nil {
http.Error(rw, err.Error(), http.StatusBadGateway)
return
}
io.WriteString(lconn, "HTTP/1.1 200 OK\r\n\r\n")
defer lconn.Close()
defer conn.Close()
go yaputil.IOCopy(conn, lconn)
yaputil.IOCopy(lconn, conn)
return
}
if req.Host == "" {
http.Error(rw, "400 Bad Request", http.StatusBadRequest)
return
}
if req.URL.Host == "" {
req.URL.Host = req.Host
}
if req.ContentLength == 0 {
io.Copy(ioutil.Discard, req.Body)
req.Body.Close()
req.Body = nil
}
glog.Infof("%s \"%s %s %s\" - -", req.RemoteAddr, req.Method, req.URL.String(), req.Proto)
if req.URL.Scheme == "" {
req.URL.Scheme = "http"
}
resp, err := h.Transport.RoundTrip(req)
if err != nil {
msg := err.Error()
if strings.HasPrefix(msg, "Invaid DNS Record: ") {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
} else {
http.Error(rw, err.Error(), http.StatusBadGateway)
}
return
}
for key, values := range resp.Header {
for _, value := range values {
rw.Header().Add(key, value)
}
}
rw.WriteHeader(resp.StatusCode)
defer resp.Body.Close()
var r io.Reader = resp.Body
yaputil.IOCopy(rw, r)
}
// ProxyAuthorizationRequired returns Proxy-Authenticate to the client
func (h *HTTPHandler) ProxyAuthorizationRequired(rw http.ResponseWriter, req *http.Request) {
data := "Proxy Authentication Required"
resp := &http.Response{
StatusCode: http.StatusProxyAuthRequired,
Header: http.Header{
"Proxy-Authenticate": []string{"Basic realm=\"Proxy Authentication Required\""},
},
Request: req,
ContentLength: int64(len(data)),
Body: ioutil.NopCloser(strings.NewReader(data)),
}
for key, values := range resp.Header {
for _, value := range values {
rw.Header().Add(key, value)
}
}
rw.WriteHeader(resp.StatusCode)
yaputil.IOCopy(rw, resp.Body)
}
// HTTP2Handler serves as a HTTP2 proxy
type HTTP2Handler struct {
ServerNames []string
Fallback *url.URL
DisableProxy bool
Dial func(network, address string) (net.Conn, error)
*http.Transport
Authenticator
}
// ServeHTTP implements http.Handler interface
func (h *HTTP2Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
var err error
reqHostname := req.Host
if host, _, err := net.SplitHostPort(req.Host); err == nil {
reqHostname = host
}
var h2 bool = req.ProtoMajor == 2 && req.ProtoMinor == 0
var isProxyRequest bool = !yaputil.ContainsString(h.ServerNames, reqHostname)
var paramsPrefix string = http.CanonicalHeaderKey("X-UrlFetch-")
params := http.Header{}
for key, values := range req.Header {
if strings.HasPrefix(key, paramsPrefix) {
params[key] = values
}
}
for key := range params {
req.Header.Del(key)
}
if isProxyRequest && h.DisableProxy {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
var username, password string
if isProxyRequest && h.Authenticator != nil {
auth := req.Header.Get("Proxy-Authorization")
if auth == "" {
h.ProxyAuthorizationRequired(rw, req)
return
}
parts := strings.SplitN(auth, " ", 2)
if len(parts) == 2 {
switch parts[0] {
case "Basic":
if auth, err := base64.StdEncoding.DecodeString(parts[1]); err == nil {
parts := strings.Split(string(auth), ":")
username = parts[0]
password = parts[1]
if err := h.Authenticator.Authenticate(username, password); err != nil {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
}
default:
glog.Errorf("Unrecognized auth type: %#v", parts[0])
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
}
req.Header.Del("Proxy-Authorization")
}
if req.Method == http.MethodConnect {
host, port, err := net.SplitHostPort(req.Host)
if err != nil {
host = req.Host
port = "443"
}
glog.Infof("[%v 0x%04x %s] %s \"%s %s %s\" - -",
req.TLS.ServerName, req.TLS.Version, username, req.RemoteAddr, req.Method, req.Host, req.Proto)
dial := h.Dial
if dial == nil {
dial = h.Transport.Dial
}
conn, err := dial("tcp", net.JoinHostPort(host, port))
if err != nil {
http.Error(rw, err.Error(), http.StatusBadGateway)
return
}
var w io.Writer
var r io.Reader
// http2 only support Flusher, http1/1.1 support Hijacker
if h2 {
flusher, ok := rw.(http.Flusher)
if !ok {
http.Error(rw, fmt.Sprintf("%#v is not http.Flusher", rw), http.StatusBadGateway)
return
}
rw.WriteHeader(http.StatusOK)
flusher.Flush()
w = FlushWriter{rw}
r = req.Body
} else {
hijacker, ok := rw.(http.Hijacker)
if !ok {
http.Error(rw, fmt.Sprintf("%#v is not http.Hijacker", rw), http.StatusBadGateway)
return
}
lconn, _, err := hijacker.Hijack()
if err != nil {
http.Error(rw, err.Error(), http.StatusBadGateway)
return
}
defer lconn.Close()
w = lconn
r = lconn
io.WriteString(lconn, "HTTP/1.1 200 OK\r\n\r\n")
}
defer conn.Close()
go yaputil.IOCopy(conn, r)
yaputil.IOCopy(w, conn)
return
}
if req.Host == "" {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
if req.URL.Host == "" {
req.URL.Host = req.Host
}
if req.ContentLength == 0 {
io.Copy(ioutil.Discard, req.Body)
req.Body.Close()
req.Body = nil
}
glog.Infof("[%v 0x%04x %s] %s \"%s %s %s\" - -",
req.TLS.ServerName, req.TLS.Version, username, req.RemoteAddr, req.Method, req.URL.String(), req.Proto)
if req.URL.Scheme == "" {
req.URL.Scheme = "http"
}
if h2 {
req.ProtoMajor = 1
req.ProtoMinor = 1
req.Proto = "HTTP/1.1"
}
if !isProxyRequest && h.Fallback != nil {
if h.Fallback.Scheme == "file" {
http.FileServer(http.Dir(h.Fallback.Path)).ServeHTTP(rw, req)
return
}
req.URL.Scheme = h.Fallback.Scheme
req.URL.Host = h.Fallback.Host
if ip, _, err := net.SplitHostPort(req.RemoteAddr); err == nil {
xff := req.Header.Get("X-Forwarded-For")
if xff == "" {
req.Header.Set("X-Forwarded-For", ip)
} else {
req.Header.Set("X-Forwarded-For", xff+", "+ip)
}
req.Header.Set("X-Forwarded-Proto", "https")
req.Header.Set("X-Real-IP", ip)
}
}
resp, err := h.Transport.RoundTrip(req)
glog.Infof("%+v", req)
if err != nil {
msg := err.Error()
if strings.HasPrefix(msg, "Invaid DNS Record: ") {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
} else {
http.Error(rw, err.Error(), http.StatusBadGateway)
}
return
}
if h2 {
resp.Header.Del("Connection")
resp.Header.Del("Keep-Alive")
}
for key, values := range resp.Header {
for _, value := range values {
rw.Header().Add(key, value)
}
}
rw.WriteHeader(resp.StatusCode)
defer resp.Body.Close()
var r io.Reader = resp.Body
yaputil.IOCopy(rw, r)
}
// ProxyAuthorizationRequired returns Proxy-Authenticate to the client
func (h *HTTP2Handler) ProxyAuthorizationRequired(rw http.ResponseWriter, req *http.Request) {
data := "Proxy Authentication Required"
resp := &http.Response{
StatusCode: http.StatusProxyAuthRequired,
Header: http.Header{
"Proxy-Authenticate": []string{"Basic realm=\"Proxy Authentication Required\""},
},
Request: req,
ContentLength: int64(len(data)),
Body: ioutil.NopCloser(strings.NewReader(data)),
}
for key, values := range resp.Header {
for _, value := range values {
rw.Header().Add(key, value)
}
}
rw.WriteHeader(resp.StatusCode)
yaputil.IOCopy(rw, resp.Body)
}
// MultiSNHandler contains multiple server name and their handler
type MultiSNHandler struct {
ServerNames []string
Handlers map[string]http.Handler
}
// ServeHTTP implements http.Handler interface
func (h *MultiSNHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
handler, ok := h.Handlers[req.TLS.ServerName]
if !ok {
handler, ok = h.Handlers[h.ServerNames[0]]
if !ok {
http.Error(rw, "403 Forbidden", http.StatusForbidden)
return
}
}
handler.ServeHTTP(rw, req)
}