mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-16 07:36:04 +00:00
102 lines
2.9 KiB
Go
102 lines
2.9 KiB
Go
package http
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/up9inc/mizu/tap/api"
|
|
)
|
|
|
|
var reqResMatcher = createResponseRequestMatcher() // global
|
|
|
|
// Key is {client_addr}:{client_port}->{dest_addr}:{dest_port}_{incremental_counter}
|
|
type requestResponseMatcher struct {
|
|
openMessagesMap *sync.Map
|
|
}
|
|
|
|
func createResponseRequestMatcher() requestResponseMatcher {
|
|
newMatcher := &requestResponseMatcher{openMessagesMap: &sync.Map{}}
|
|
return *newMatcher
|
|
}
|
|
|
|
func (matcher *requestResponseMatcher) registerRequest(ident string, request *http.Request, captureTime time.Time, protoMinor int) *api.OutputChannelItem {
|
|
split := splitIdent(ident)
|
|
key := genKey(split)
|
|
|
|
requestHTTPMessage := api.GenericMessage{
|
|
IsRequest: true,
|
|
CaptureTime: captureTime,
|
|
Payload: api.HTTPPayload{
|
|
Type: TypeHttpRequest,
|
|
Data: request,
|
|
},
|
|
}
|
|
|
|
if response, found := matcher.openMessagesMap.LoadAndDelete(key); found {
|
|
// Type assertion always succeeds because all of the map's values are of api.GenericMessage type
|
|
responseHTTPMessage := response.(*api.GenericMessage)
|
|
if responseHTTPMessage.IsRequest {
|
|
return nil
|
|
}
|
|
return matcher.preparePair(&requestHTTPMessage, responseHTTPMessage, protoMinor)
|
|
}
|
|
|
|
matcher.openMessagesMap.Store(key, &requestHTTPMessage)
|
|
return nil
|
|
}
|
|
|
|
func (matcher *requestResponseMatcher) registerResponse(ident string, response *http.Response, captureTime time.Time, protoMinor int) *api.OutputChannelItem {
|
|
split := splitIdent(ident)
|
|
key := genKey(split)
|
|
|
|
responseHTTPMessage := api.GenericMessage{
|
|
IsRequest: false,
|
|
CaptureTime: captureTime,
|
|
Payload: api.HTTPPayload{
|
|
Type: TypeHttpResponse,
|
|
Data: response,
|
|
},
|
|
}
|
|
|
|
if request, found := matcher.openMessagesMap.LoadAndDelete(key); found {
|
|
// Type assertion always succeeds because all of the map's values are of api.GenericMessage type
|
|
requestHTTPMessage := request.(*api.GenericMessage)
|
|
if !requestHTTPMessage.IsRequest {
|
|
return nil
|
|
}
|
|
return matcher.preparePair(requestHTTPMessage, &responseHTTPMessage, protoMinor)
|
|
}
|
|
|
|
matcher.openMessagesMap.Store(key, &responseHTTPMessage)
|
|
return nil
|
|
}
|
|
|
|
func (matcher *requestResponseMatcher) preparePair(requestHTTPMessage *api.GenericMessage, responseHTTPMessage *api.GenericMessage, protoMinor int) *api.OutputChannelItem {
|
|
protocol := http11protocol
|
|
if protoMinor == 0 {
|
|
protocol = http10protocol
|
|
}
|
|
return &api.OutputChannelItem{
|
|
Protocol: protocol,
|
|
Timestamp: requestHTTPMessage.CaptureTime.UnixNano() / int64(time.Millisecond),
|
|
ConnectionInfo: nil,
|
|
Pair: &api.RequestResponsePair{
|
|
Request: *requestHTTPMessage,
|
|
Response: *responseHTTPMessage,
|
|
},
|
|
}
|
|
}
|
|
|
|
func splitIdent(ident string) []string {
|
|
ident = strings.Replace(ident, "->", " ", -1)
|
|
return strings.Split(ident, " ")
|
|
}
|
|
|
|
func genKey(split []string) string {
|
|
key := fmt.Sprintf("%s:%s->%s:%s,%s%s", split[0], split[2], split[1], split[3], split[4], split[5])
|
|
return key
|
|
}
|