123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- // Copyright 2016 The etcd Authors
- //
- // 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 main
- import (
- "fmt"
- "io/ioutil"
- "net/http"
- "strings"
- "sync"
- "time"
- )
- type failpointStats struct {
- // crashes counts the number of crashes for a failpoint
- crashes map[string]int
- // mu protects crashes
- mu sync.Mutex
- }
- var fpStats failpointStats
- func failpointFailures(c *cluster, failpoints []string) (ret []failure, err error) {
- var fps []string
- fps, err = failpointPaths(c.Members[0].FailpointURL)
- if err != nil {
- return nil, err
- }
- // create failure objects for all failpoints
- for _, fp := range fps {
- if len(fp) == 0 {
- continue
- }
- fpFails := failuresFromFailpoint(fp, failpoints)
- // wrap in delays so failpoint has time to trigger
- for i, fpf := range fpFails {
- if strings.Contains(fp, "Snap") {
- // hack to trigger snapshot failpoints
- fpFails[i] = &failureUntilSnapshot{fpf}
- } else {
- fpFails[i] = &failureDelay{fpf, 3 * time.Second}
- }
- }
- ret = append(ret, fpFails...)
- }
- fpStats.crashes = make(map[string]int)
- return ret, err
- }
- func failpointPaths(endpoint string) ([]string, error) {
- resp, err := http.Get(endpoint)
- if err != nil {
- return nil, err
- }
- defer resp.Body.Close()
- body, rerr := ioutil.ReadAll(resp.Body)
- if rerr != nil {
- return nil, rerr
- }
- var fps []string
- for _, l := range strings.Split(string(body), "\n") {
- fp := strings.Split(l, "=")[0]
- fps = append(fps, fp)
- }
- return fps, nil
- }
- // failpoints follows FreeBSD KFAIL_POINT syntax.
- // e.g. panic("etcd-tester"),1*sleep(1000)->panic("etcd-tester")
- func failuresFromFailpoint(fp string, failpoints []string) (fs []failure) {
- recov := makeRecoverFailpoint(fp)
- for _, failpoint := range failpoints {
- inject := makeInjectFailpoint(fp, failpoint)
- fs = append(fs, []failure{
- &failureOne{
- description: description(fmt.Sprintf("failpoint %s (one: %s)", fp, failpoint)),
- injectMember: inject,
- recoverMember: recov,
- },
- &failureAll{
- description: description(fmt.Sprintf("failpoint %s (all: %s)", fp, failpoint)),
- injectMember: inject,
- recoverMember: recov,
- },
- &failureMajority{
- description: description(fmt.Sprintf("failpoint %s (majority: %s)", fp, failpoint)),
- injectMember: inject,
- recoverMember: recov,
- },
- &failureLeader{
- failureByFunc{
- description: description(fmt.Sprintf("failpoint %s (leader: %s)", fp, failpoint)),
- injectMember: inject,
- recoverMember: recov,
- },
- 0,
- },
- }...)
- }
- return fs
- }
- func makeInjectFailpoint(fp, val string) injectMemberFunc {
- return func(m *member) (err error) {
- return putFailpoint(m.FailpointURL, fp, val)
- }
- }
- func makeRecoverFailpoint(fp string) recoverMemberFunc {
- return func(m *member) error {
- if err := delFailpoint(m.FailpointURL, fp); err == nil {
- return nil
- }
- // node not responding, likely dead from fp panic; restart
- fpStats.mu.Lock()
- fpStats.crashes[fp]++
- fpStats.mu.Unlock()
- return recoverStop(m)
- }
- }
- func putFailpoint(ep, fp, val string) error {
- req, _ := http.NewRequest(http.MethodPut, ep+"/"+fp, strings.NewReader(val))
- c := http.Client{}
- resp, err := c.Do(req)
- if err != nil {
- return err
- }
- resp.Body.Close()
- if resp.StatusCode/100 != 2 {
- return fmt.Errorf("failed to PUT %s=%s at %s (%v)", fp, val, ep, resp.Status)
- }
- return nil
- }
- func delFailpoint(ep, fp string) error {
- req, _ := http.NewRequest(http.MethodDelete, ep+"/"+fp, strings.NewReader(""))
- c := http.Client{}
- resp, err := c.Do(req)
- if err != nil {
- return err
- }
- resp.Body.Close()
- if resp.StatusCode/100 != 2 {
- return fmt.Errorf("failed to DELETE %s at %s (%v)", fp, ep, resp.Status)
- }
- return nil
- }
|