mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
281 lines
6.5 KiB
Go
281 lines
6.5 KiB
Go
// 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 is the entry point for the local tester network bridge.
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"log"
|
|
"math/rand"
|
|
"net"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type bridgeConn struct {
|
|
in net.Conn
|
|
out net.Conn
|
|
d dispatcher
|
|
}
|
|
|
|
func newBridgeConn(in net.Conn, d dispatcher) (*bridgeConn, error) {
|
|
out, err := net.Dial("tcp", flag.Args()[1])
|
|
if err != nil {
|
|
in.Close()
|
|
return nil, err
|
|
}
|
|
return &bridgeConn{in, out, d}, nil
|
|
}
|
|
|
|
func (b *bridgeConn) String() string {
|
|
return fmt.Sprintf("%v <-> %v", b.in.RemoteAddr(), b.out.RemoteAddr())
|
|
}
|
|
|
|
func (b *bridgeConn) Close() {
|
|
b.in.Close()
|
|
b.out.Close()
|
|
}
|
|
|
|
func bridge(b *bridgeConn) {
|
|
log.Println("bridging", b.String())
|
|
go b.d.Copy(b.out, makeFetch(b.in))
|
|
b.d.Copy(b.in, makeFetch(b.out))
|
|
}
|
|
|
|
func timeBridge(b *bridgeConn) {
|
|
go func() {
|
|
t := time.Duration(rand.Intn(5)+1) * time.Second
|
|
time.Sleep(t)
|
|
log.Printf("killing connection %s after %v\n", b.String(), t)
|
|
b.Close()
|
|
}()
|
|
bridge(b)
|
|
}
|
|
|
|
func blackhole(b *bridgeConn) {
|
|
log.Println("blackholing connection", b.String())
|
|
io.Copy(ioutil.Discard, b.in)
|
|
b.Close()
|
|
}
|
|
|
|
func readRemoteOnly(b *bridgeConn) {
|
|
log.Println("one way (<-)", b.String())
|
|
b.d.Copy(b.in, makeFetch(b.out))
|
|
}
|
|
|
|
func writeRemoteOnly(b *bridgeConn) {
|
|
log.Println("one way (->)", b.String())
|
|
b.d.Copy(b.out, makeFetch(b.in))
|
|
}
|
|
|
|
func corruptReceive(b *bridgeConn) {
|
|
log.Println("corruptReceive", b.String())
|
|
go b.d.Copy(b.in, makeFetchCorrupt(makeFetch(b.out)))
|
|
b.d.Copy(b.out, makeFetch(b.in))
|
|
}
|
|
|
|
func corruptSend(b *bridgeConn) {
|
|
log.Println("corruptSend", b.String())
|
|
go b.d.Copy(b.out, makeFetchCorrupt(makeFetch(b.in)))
|
|
b.d.Copy(b.in, makeFetch(b.out))
|
|
}
|
|
|
|
func makeFetch(c io.Reader) fetchFunc {
|
|
return func() ([]byte, error) {
|
|
b := make([]byte, 4096)
|
|
n, err := c.Read(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
|
|
func makeFetchCorrupt(f func() ([]byte, error)) fetchFunc {
|
|
return func() ([]byte, error) {
|
|
b, err := f()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// corrupt one byte approximately every 16K
|
|
for i := 0; i < len(b); i++ {
|
|
if rand.Intn(16*1024) == 0 {
|
|
b[i] = b[i] + 1
|
|
}
|
|
}
|
|
return b, nil
|
|
}
|
|
}
|
|
|
|
func makeFetchRand(f func() ([]byte, error)) fetchFunc {
|
|
return func() ([]byte, error) {
|
|
if rand.Intn(10) == 0 {
|
|
return nil, fmt.Errorf("fetchRand: done")
|
|
}
|
|
b, err := f()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b, nil
|
|
}
|
|
}
|
|
|
|
func randomBlackhole(b *bridgeConn) {
|
|
log.Println("random blackhole: connection", b.String())
|
|
|
|
var wg sync.WaitGroup
|
|
wg.Add(2)
|
|
go func() {
|
|
b.d.Copy(b.in, makeFetchRand(makeFetch(b.out)))
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
b.d.Copy(b.out, makeFetchRand(makeFetch(b.in)))
|
|
wg.Done()
|
|
}()
|
|
wg.Wait()
|
|
b.Close()
|
|
}
|
|
|
|
type config struct {
|
|
delayAccept bool
|
|
resetListen bool
|
|
|
|
connFaultRate float64
|
|
immediateClose bool
|
|
blackhole bool
|
|
timeClose bool
|
|
writeRemoteOnly bool
|
|
readRemoteOnly bool
|
|
randomBlackhole bool
|
|
corruptSend bool
|
|
corruptReceive bool
|
|
reorder bool
|
|
}
|
|
|
|
type acceptFaultFunc func()
|
|
type connFaultFunc func(*bridgeConn)
|
|
|
|
func main() {
|
|
var cfg config
|
|
|
|
flag.BoolVar(&cfg.delayAccept, "delay-accept", true, "delays accepting new connections")
|
|
flag.BoolVar(&cfg.resetListen, "reset-listen", true, "resets the listening port")
|
|
|
|
flag.Float64Var(&cfg.connFaultRate, "conn-fault-rate", 0.25, "rate of faulty connections")
|
|
flag.BoolVar(&cfg.immediateClose, "immediate-close", true, "close after accept")
|
|
flag.BoolVar(&cfg.blackhole, "blackhole", true, "reads nothing, writes go nowhere")
|
|
flag.BoolVar(&cfg.timeClose, "time-close", true, "close after random time")
|
|
flag.BoolVar(&cfg.writeRemoteOnly, "write-remote-only", true, "only write, no read")
|
|
flag.BoolVar(&cfg.readRemoteOnly, "read-remote-only", true, "only read, no write")
|
|
flag.BoolVar(&cfg.randomBlackhole, "random-blackhole", true, "blackhole after data xfer")
|
|
flag.BoolVar(&cfg.corruptReceive, "corrupt-receive", true, "corrupt packets received from destination")
|
|
flag.BoolVar(&cfg.corruptSend, "corrupt-send", true, "corrupt packets sent to destination")
|
|
flag.BoolVar(&cfg.reorder, "reorder", true, "reorder packet delivery")
|
|
flag.Parse()
|
|
|
|
lAddr := flag.Args()[0]
|
|
fwdAddr := flag.Args()[1]
|
|
log.Println("listening on ", lAddr)
|
|
log.Println("forwarding to ", fwdAddr)
|
|
l, err := net.Listen("tcp", lAddr)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer l.Close()
|
|
|
|
acceptFaults := []acceptFaultFunc{func() {}}
|
|
if cfg.delayAccept {
|
|
f := func() {
|
|
log.Println("delaying accept")
|
|
time.Sleep(3 * time.Second)
|
|
}
|
|
acceptFaults = append(acceptFaults, f)
|
|
}
|
|
if cfg.resetListen {
|
|
f := func() {
|
|
log.Println("reset listen port")
|
|
l.Close()
|
|
newListener, err := net.Listen("tcp", lAddr)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
l = newListener
|
|
|
|
}
|
|
acceptFaults = append(acceptFaults, f)
|
|
}
|
|
|
|
connFaults := []connFaultFunc{func(b *bridgeConn) { bridge(b) }}
|
|
if cfg.immediateClose {
|
|
f := func(b *bridgeConn) {
|
|
log.Printf("terminating connection %s immediately", b.String())
|
|
b.Close()
|
|
}
|
|
connFaults = append(connFaults, f)
|
|
}
|
|
if cfg.blackhole {
|
|
connFaults = append(connFaults, blackhole)
|
|
}
|
|
if cfg.timeClose {
|
|
connFaults = append(connFaults, timeBridge)
|
|
}
|
|
if cfg.writeRemoteOnly {
|
|
connFaults = append(connFaults, writeRemoteOnly)
|
|
}
|
|
if cfg.readRemoteOnly {
|
|
connFaults = append(connFaults, readRemoteOnly)
|
|
}
|
|
if cfg.randomBlackhole {
|
|
connFaults = append(connFaults, randomBlackhole)
|
|
}
|
|
if cfg.corruptSend {
|
|
connFaults = append(connFaults, corruptSend)
|
|
}
|
|
if cfg.corruptReceive {
|
|
connFaults = append(connFaults, corruptReceive)
|
|
}
|
|
|
|
var disp dispatcher
|
|
if cfg.reorder {
|
|
disp = newDispatcherPool()
|
|
} else {
|
|
disp = newDispatcherImmediate()
|
|
}
|
|
|
|
for {
|
|
acceptFaults[rand.Intn(len(acceptFaults))]()
|
|
conn, err := l.Accept()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
r := rand.Intn(len(connFaults))
|
|
if rand.Intn(100) > int(100.0*cfg.connFaultRate) {
|
|
r = 0
|
|
}
|
|
|
|
bc, err := newBridgeConn(conn, disp)
|
|
if err != nil {
|
|
log.Printf("oops %v", err)
|
|
continue
|
|
}
|
|
go connFaults[r](bc)
|
|
}
|
|
}
|