forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
412 lines (375 loc) · 10.8 KB
/
handler.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
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
// Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package main
import (
"bytes"
"compress/gzip"
"context"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"sort"
"strings"
"time"
"github.com/google/syzkaller/pkg/html"
"google.golang.org/appengine/v2"
"google.golang.org/appengine/v2/log"
"google.golang.org/appengine/v2/user"
)
// This file contains common middleware for UI handlers (auth, html templates, etc).
type contextHandler func(c context.Context, w http.ResponseWriter, r *http.Request) error
func handlerWrapper(fn contextHandler) http.Handler {
return handleContext(handleAuth(fn))
}
func handleContext(fn contextHandler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
c := appengine.NewContext(r)
if coverageDBClient != nil { // Nil in prod.
c = SetCoverageDBClient(c, coverageDBClient)
}
c = context.WithValue(c, ¤tURLKey, r.URL.RequestURI())
authorizedUser, _ := userAccessLevel(currentUser(c), "", getConfig(c))
if !authorizedUser {
if !throttleRequest(c, w, r) {
return
}
defer backpressureRobots(c, r)()
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
gzw := newGzipResponseWriterCloser(w)
defer gzw.Close()
err := fn(c, gzw, r)
if err == nil {
if err = gzw.writeResult(r); err == nil {
return
}
}
hdr := commonHeaderRaw(c, r)
data := &struct {
Header *uiHeader
Error string
TraceID string
}{
Header: hdr,
Error: err.Error(),
TraceID: strings.Join(r.Header["X-Cloud-Trace-Context"], " "),
}
if err == ErrAccess {
if hdr.LoginLink != "" {
http.Redirect(w, r, hdr.LoginLink, http.StatusTemporaryRedirect)
return
}
http.Error(w, "403 Forbidden", http.StatusForbidden)
return
}
var redir *ErrRedirect
if errors.As(err, &redir) {
http.Redirect(w, r, redir.Error(), http.StatusFound)
return
}
status := logErrorPrepareStatus(c, err)
w.WriteHeader(status)
if err1 := templates.ExecuteTemplate(w, "error.html", data); err1 != nil {
combinedError := fmt.Sprintf("got err \"%v\" processing ExecuteTemplate() for err \"%v\"", err1, err)
http.Error(w, combinedError, http.StatusInternalServerError)
}
})
}
func logErrorPrepareStatus(c context.Context, err error) int {
status := http.StatusInternalServerError
logf := log.Errorf
var clientError *ErrClient
if errors.As(err, &clientError) {
// We don't log these as errors because they can be provoked
// by invalid user requests, so we don't wan't to pollute error log.
logf = log.Warningf
status = clientError.HTTPStatus()
}
logf(c, "appengine error: %v", err)
return status
}
func isRobot(r *http.Request) bool {
userAgent := strings.ToLower(strings.Join(r.Header["User-Agent"], " "))
if strings.HasPrefix(userAgent, "curl") ||
strings.HasPrefix(userAgent, "wget") {
return true
}
return false
}
// We don't count the request round trip time here.
// Actual delay will be the minDelay + requestRoundTripTime.
func backpressureRobots(c context.Context, r *http.Request) func() {
if !isRobot(r) {
return func() {}
}
cfg := getConfig(c).Throttle
if cfg.Empty() {
return func() {}
}
minDelay := cfg.Window / time.Duration(cfg.Limit)
delayUntil := time.Now().Add(minDelay)
return func() {
select {
case <-c.Done():
case <-time.After(time.Until(delayUntil)):
}
}
}
func throttleRequest(c context.Context, w http.ResponseWriter, r *http.Request) bool {
// AppEngine removes all App Engine-specific headers, which include
// X-Appengine-User-IP and X-Forwarded-For.
// https://cloud.google.com/appengine/docs/standard/reference/request-headers?tab=python#removed_headers
ip := r.Header.Get("X-Appengine-User-IP")
if ip == "" {
ip = r.Header.Get("X-Forwarded-For")
ip, _, _ = strings.Cut(ip, ",") // X-Forwarded-For is a comma-delimited list.
ip = strings.TrimSpace(ip)
}
cron := r.Header.Get("X-Appengine-Cron") != ""
if ip == "" || cron {
log.Infof(c, "cannot throttle request from %q, cron %t", ip, cron)
return true
}
accept, err := ThrottleRequest(c, ip)
if errors.Is(err, ErrThrottleTooManyRetries) {
// We get these at peak QPS anyway, it's not an error.
log.Warningf(c, "failed to throttle: %v", err)
} else if err != nil {
log.Errorf(c, "failed to throttle: %v", err)
}
log.Infof(c, "throttling for %q: %t", ip, accept)
if !accept {
http.Error(w, throttlingErrorMessage(c), http.StatusTooManyRequests)
return false
}
return true
}
func throttlingErrorMessage(c context.Context) string {
ret := fmt.Sprintf("429 Too Many Requests\nAllowed rate is %d requests per %d seconds.",
getConfig(c).Throttle.Limit, int(getConfig(c).Throttle.Window.Seconds()))
email := getConfig(c).ContactEmail
if email == "" {
return ret
}
return fmt.Sprintf("%s\nPlease contact us at %s if you need access to our data.", ret, email)
}
var currentURLKey = "the URL of the HTTP request in context"
func getCurrentURL(c context.Context) string {
val, ok := c.Value(¤tURLKey).(string)
if ok {
return val
}
return ""
}
type (
ErrClient struct{ error }
ErrRedirect struct{ error }
)
var ErrClientNotFound = &ErrClient{errors.New("resource not found")}
var ErrClientBadRequest = &ErrClient{errors.New("bad request")}
func (ce *ErrClient) HTTPStatus() int {
switch ce {
case ErrClientNotFound:
return http.StatusNotFound
case ErrClientBadRequest:
return http.StatusBadRequest
}
return http.StatusInternalServerError
}
func handleAuth(fn contextHandler) contextHandler {
return func(c context.Context, w http.ResponseWriter, r *http.Request) error {
if err := checkAccessLevel(c, r, getConfig(c).AccessLevel); err != nil {
return err
}
return fn(c, w, r)
}
}
func serveTemplate(w http.ResponseWriter, name string, data interface{}) error {
buf := new(bytes.Buffer)
if err := templates.ExecuteTemplate(buf, name, data); err != nil {
return err
}
w.Write(buf.Bytes())
return nil
}
type uiHeader struct {
Admin bool
URLPath string
LoginLink string
AnalyticsTrackingID string
Subpage string
Namespace string
ContactEmail string
BugCounts *CachedBugStats
MissingBackports int
Namespaces []uiNamespace
ShowSubsystems bool
ShowCoverageMenu bool
}
type uiNamespace struct {
Name string
Caption string
}
type cookieData struct {
Namespace string `json:"namespace"`
}
func commonHeaderRaw(c context.Context, r *http.Request) *uiHeader {
h := &uiHeader{
Admin: accessLevel(c, r) == AccessAdmin,
URLPath: r.URL.Path,
AnalyticsTrackingID: getConfig(c).AnalyticsTrackingID,
ContactEmail: getConfig(c).ContactEmail,
}
if user.Current(c) == nil {
h.LoginLink, _ = user.LoginURL(c, r.URL.String())
}
return h
}
func commonHeader(c context.Context, r *http.Request, w http.ResponseWriter, ns string) (*uiHeader, error) {
accessLevel := accessLevel(c, r)
if ns == "" {
ns = strings.ToLower(r.URL.Path)
if ns != "" && ns[0] == '/' {
ns = ns[1:]
}
if pos := strings.IndexByte(ns, '/'); pos != -1 {
ns = ns[:pos]
}
}
h := commonHeaderRaw(c, r)
const adminPage = "admin"
isAdminPage := r.URL.Path == "/"+adminPage
found := false
for ns1, cfg := range getConfig(c).Namespaces {
if accessLevel < cfg.AccessLevel {
if ns1 == ns {
return nil, ErrAccess
}
continue
}
if ns1 == ns {
found = true
}
if getNsConfig(c, ns1).Decommissioned {
continue
}
h.Namespaces = append(h.Namespaces, uiNamespace{
Name: ns1,
Caption: cfg.DisplayTitle,
})
}
sort.Slice(h.Namespaces, func(i, j int) bool {
return h.Namespaces[i].Caption < h.Namespaces[j].Caption
})
cookie := decodeCookie(r)
if !found {
ns = getConfig(c).DefaultNamespace
if cfg := getNsConfig(c, cookie.Namespace); cfg != nil && cfg.AccessLevel <= accessLevel {
ns = cookie.Namespace
}
if accessLevel == AccessAdmin {
ns = adminPage
}
if ns != adminPage || !isAdminPage {
return nil, &ErrRedirect{fmt.Errorf("/%v", ns)}
}
}
if ns != adminPage {
h.Namespace = ns
h.ShowSubsystems = getNsConfig(c, ns).Subsystems.Service != nil
cookie.Namespace = ns
encodeCookie(w, cookie)
cached, err := CacheGet(c, r, ns)
if err != nil {
return nil, err
}
h.BugCounts = &cached.Total
h.MissingBackports = cached.MissingBackports
h.ShowCoverageMenu = getNsConfig(c, ns).Coverage != nil
}
return h, nil
}
const cookieName = "syzkaller"
func decodeCookie(r *http.Request) *cookieData {
cd := new(cookieData)
cookie, err := r.Cookie(cookieName)
if err != nil {
return cd
}
decoded, err := base64.StdEncoding.DecodeString(cookie.Value)
if err != nil {
return cd
}
json.Unmarshal(decoded, cd)
return cd
}
func encodeCookie(w http.ResponseWriter, cd *cookieData) {
data, err := json.Marshal(cd)
if err != nil {
return
}
cookie := &http.Cookie{
Name: cookieName,
Value: base64.StdEncoding.EncodeToString(data),
Expires: time.Now().Add(time.Hour * 24 * 365),
}
http.SetCookie(w, cookie)
}
var templates = html.CreateGlob("*.html")
// gzipResponseWriterCloser accumulates the gzipped result.
// In case of error during the handler processing, we'll drop this gzipped data.
// It allows to call http.Error in the middle of the response generation.
//
// For 200 Ok responses we return the compressed data or decompress it depending on the client Accept-Encoding header.
type gzipResponseWriterCloser struct {
w *gzip.Writer
plainResponseSize int
buf *bytes.Buffer
rw http.ResponseWriter
}
func (g *gzipResponseWriterCloser) Write(p []byte) (n int, err error) {
g.plainResponseSize += len(p)
return g.w.Write(p)
}
func (g *gzipResponseWriterCloser) Close() {
if g.w != nil {
g.w.Close()
}
}
func (g *gzipResponseWriterCloser) Header() http.Header {
return g.rw.Header()
}
func (g *gzipResponseWriterCloser) WriteHeader(statusCode int) {
g.rw.WriteHeader(statusCode)
}
func (g *gzipResponseWriterCloser) writeResult(r *http.Request) error {
g.w.Close()
g.w = nil
clientSupportsGzip := strings.Contains(r.Header.Get("Accept-Encoding"), "gzip")
if clientSupportsGzip {
g.rw.Header().Set("Content-Encoding", "gzip")
_, err := g.rw.Write(g.buf.Bytes())
return err
}
if g.plainResponseSize > 31<<20 { // 32MB is the AppEngine hard limit for the response size.
return fmt.Errorf("len(response) > 31M, try to request gzipped: %w", ErrClientBadRequest)
}
gzr, err := gzip.NewReader(g.buf)
if err != nil {
return fmt.Errorf("gzip.NewReader: %w", err)
}
defer gzr.Close()
_, err = io.Copy(g.rw, gzr)
return err
}
func newGzipResponseWriterCloser(w http.ResponseWriter) *gzipResponseWriterCloser {
buf := &bytes.Buffer{}
return &gzipResponseWriterCloser{
w: gzip.NewWriter(buf),
buf: buf,
rw: w,
}
}