mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
193 lines
4.0 KiB
Go
193 lines
4.0 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"log"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
var wg sync.WaitGroup
|
|
var closeOnce sync.Once
|
|
|
|
// Start initialize loop for sending data from inputs to outputs
|
|
func Start(plugins *InOutPlugins, stop chan int) {
|
|
if Settings.middleware != "" {
|
|
middleware := NewMiddleware(Settings.middleware)
|
|
|
|
for _, in := range plugins.Inputs {
|
|
middleware.ReadFrom(in)
|
|
}
|
|
|
|
// We are going only to read responses, so using same ReadFrom method
|
|
for _, out := range plugins.Outputs {
|
|
if r, ok := out.(io.Reader); ok {
|
|
middleware.ReadFrom(r)
|
|
}
|
|
}
|
|
wg.Add(1)
|
|
go CopyMulty(stop, middleware, plugins.Outputs...)
|
|
} else {
|
|
for _, in := range plugins.Inputs {
|
|
wg.Add(1)
|
|
go CopyMulty(stop, in, plugins.Outputs...)
|
|
}
|
|
|
|
for _, out := range plugins.Outputs {
|
|
if r, ok := out.(io.Reader); ok {
|
|
wg.Add(1)
|
|
go CopyMulty(stop, r, plugins.Outputs...)
|
|
}
|
|
}
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case <-stop:
|
|
finalize(plugins)
|
|
return
|
|
case <-time.After(100 * time.Millisecond):
|
|
}
|
|
}
|
|
}
|
|
|
|
func Close(quit chan int) {
|
|
closeOnce.Do(func() {
|
|
close(quit)
|
|
})
|
|
wg.Wait()
|
|
}
|
|
|
|
// CopyMulty copies from 1 reader to multiple writers
|
|
func CopyMulty(stop chan int, src io.Reader, writers ...io.Writer) {
|
|
defer wg.Done()
|
|
buf := make([]byte, Settings.copyBufferSize)
|
|
wIndex := 0
|
|
modifier := NewHTTPModifier(&Settings.modifierConfig)
|
|
filteredRequests := make(map[string]time.Time)
|
|
filteredRequestsLastCleanTime := time.Now()
|
|
|
|
i := 0
|
|
|
|
var er error
|
|
Loop:
|
|
for {
|
|
select {
|
|
case <-stop:
|
|
return
|
|
default:
|
|
var nr int
|
|
nr, er = src.Read(buf)
|
|
|
|
if er == io.EOF {
|
|
break Loop
|
|
}
|
|
if er != nil {
|
|
break Loop
|
|
}
|
|
|
|
_maxN := nr
|
|
if nr > 500 {
|
|
_maxN = 500
|
|
}
|
|
if nr > 0 && len(buf) > nr {
|
|
payload := buf[:nr]
|
|
meta := payloadMeta(payload)
|
|
if len(meta) < 3 {
|
|
if Settings.debug {
|
|
Debug("[EMITTER] Found malformed record", string(payload[0:_maxN]), nr, "from:", src)
|
|
}
|
|
continue
|
|
}
|
|
requestID := string(meta[1])
|
|
|
|
if nr >= 5*1024*1024 {
|
|
log.Println("INFO: Large packet... We received ", len(payload), " bytes from ", src)
|
|
}
|
|
|
|
if Settings.debug {
|
|
Debug("[EMITTER] input:", string(payload[0:_maxN]), nr, "from:", src)
|
|
}
|
|
|
|
if modifier != nil {
|
|
if isRequestPayload(payload) {
|
|
headSize := bytes.IndexByte(payload, '\n') + 1
|
|
body := payload[headSize:]
|
|
originalBodyLen := len(body)
|
|
body = modifier.Rewrite(body)
|
|
|
|
// If modifier tells to skip request
|
|
if len(body) == 0 {
|
|
filteredRequests[requestID] = time.Now()
|
|
continue
|
|
}
|
|
|
|
if originalBodyLen != len(body) {
|
|
payload = append(payload[:headSize], body...)
|
|
}
|
|
|
|
if Settings.debug {
|
|
Debug("[EMITTER] Rewritten input:", len(payload), "First 500 bytes:", string(payload[0:_maxN]))
|
|
}
|
|
} else {
|
|
if _, ok := filteredRequests[requestID]; ok {
|
|
delete(filteredRequests, requestID)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
if Settings.prettifyHTTP {
|
|
payload = prettifyHTTP(payload)
|
|
if len(payload) == 0 {
|
|
continue
|
|
}
|
|
}
|
|
|
|
if Settings.splitOutput {
|
|
// Simple round robin
|
|
if _, err := writers[wIndex].Write(payload); err != nil {
|
|
break Loop
|
|
}
|
|
|
|
wIndex++
|
|
|
|
if wIndex >= len(writers) {
|
|
wIndex = 0
|
|
}
|
|
} else {
|
|
for _, dst := range writers {
|
|
if _, err := dst.Write(payload); err != nil {
|
|
break Loop
|
|
}
|
|
}
|
|
}
|
|
} else if nr > 0 {
|
|
log.Println("WARN: Packet", nr, "bytes is too large to process. Consider increasing --copy-buffer-size")
|
|
}
|
|
|
|
// Run GC on each 1000 request
|
|
if i%1000 == 0 {
|
|
// Clean up filtered requests for which we didn't get a response to filter
|
|
now := time.Now()
|
|
if now.Sub(filteredRequestsLastCleanTime) > 60*time.Second {
|
|
for k, v := range filteredRequests {
|
|
if now.Sub(v) > 60*time.Second {
|
|
delete(filteredRequests, k)
|
|
}
|
|
}
|
|
filteredRequestsLastCleanTime = time.Now()
|
|
}
|
|
}
|
|
|
|
i++
|
|
}
|
|
}
|
|
if er != nil {
|
|
closeOnce.Do(func() {
|
|
close(stop)
|
|
})
|
|
}
|
|
}
|