-
Notifications
You must be signed in to change notification settings - Fork 63
/
http.go
110 lines (103 loc) · 3.11 KB
/
http.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
// Copyright 2019 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Copyright 2016 CoreOS, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package failpoint
import (
"io/ioutil"
"net"
"net/http"
"sort"
"strings"
)
// HttpHandler is used to handle failpoint Enable/Disable/Status requests
type HttpHandler struct{}
func serve(host string) error {
ln, err := net.Listen("tcp", host)
if err != nil {
return err
}
go http.Serve(ln, &HttpHandler{})
return nil
}
func (*HttpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
key := r.URL.Path
if len(key) == 0 || key[0] != '/' {
http.Error(w, "malformed request URI", http.StatusBadRequest)
return
}
key = key[1:]
switch {
// sets the failpoint
case r.Method == "PUT":
v, err := ioutil.ReadAll(r.Body)
if err != nil {
http.Error(w, "failed ReadAll in PUT", http.StatusBadRequest)
return
}
err = failpoints.EnableWith(key, string(v), func() error {
w.WriteHeader(http.StatusNoContent)
if f, ok := w.(http.Flusher); ok {
// flush before unlocking so a panic failpoint won't
// take down the http server before it sends the response
f.Flush()
}
return nil
})
if err != nil {
http.Error(w, "failed to set failpoint "+string(key), http.StatusBadRequest)
return
}
case r.Method == "GET":
if len(key) == 0 {
fps := List()
sort.Strings(fps)
lines := make([]string, len(fps))
for i := range lines {
s, _ := Status(fps[i])
lines[i] = fps[i] + "=" + s
}
w.Write([]byte(strings.Join(lines, "\n") + "\n"))
} else {
status, err := Status(key)
if err != nil {
http.Error(w, "failed to GET: "+err.Error(), http.StatusNotFound)
}
w.Write([]byte(status + "\n"))
}
// deactivates a failpoint
case r.Method == "DELETE":
if err := Disable(key); err != nil {
http.Error(w, "failed to delete failpoint "+err.Error(), http.StatusBadRequest)
return
}
w.WriteHeader(http.StatusNoContent)
default:
w.Header().Add("Allow", "DELETE")
w.Header().Add("Allow", "GET")
w.Header().Set("Allow", "PUT")
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
}
}