mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* adds parity level of testing http-stream invoke the other formats had a gamut of tests, now http-stream does too. this makes obvious some of its behaviors. some things changed / can change now that we don't have pipes to worry about, the main one being that when containers blow up now the uds client will get an EOF/ECONNREFUSED instead of the pipe getting wedged up (allowing us to get the container error easily, previously). I made my best 50% effort to make a reasonable error for when this happens (similar to when http/json received garbage errors), open to ideas on verbiage / policy there. should be pretty straightforward. one thing to notice is that http/json/default don't return our fancy new Fn-Http-Status or Fn-Http-H headers... it's relatively easy to go add this to fdk-go just to test this, but for invoke I'm really not sure we care (?) and for the gateway, the output will be identical with the old formats bypassing the header decap. if anybody has any feelings, feel free to express them. * fix oomer up for new error * Adding http header stripping to agent Adding the header stripping into the agent, this should be low enough that all routes to fns get treated the same.
537 lines
14 KiB
Go
537 lines
14 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
fdk "github.com/fnproject/fdk-go"
|
|
fdkutils "github.com/fnproject/fdk-go/utils"
|
|
)
|
|
|
|
const (
|
|
// InvalidResponseStr is a string that isn't one of the 'hot' formats.
|
|
InvalidResponseStr = "Olive oil is a liquid fat obtained from olives...\n"
|
|
)
|
|
|
|
// AppRequest is the body of the input of a function, it can be used to change
|
|
// behavior of this function.
|
|
type AppRequest struct {
|
|
// if specified we 'sleep' the specified msecs
|
|
SleepTime int `json:"sleepTime,omitempty"`
|
|
// if specified, this is our response http status code
|
|
ResponseCode int `json:"responseCode,omitempty"`
|
|
// if specified, this is our response content-type
|
|
ResponseContentType string `json:"responseContentType,omitempty"`
|
|
// if specified, this is our response content-type.
|
|
// jason doesn't sit with the other kids at school.
|
|
JasonContentType string `json:"jasonContentType,omitempty"`
|
|
// if specified, this is echoed back to client
|
|
EchoContent string `json:"echoContent,omitempty"`
|
|
// verbose mode
|
|
IsDebug bool `json:"isDebug,omitempty"`
|
|
// simulate crash
|
|
IsCrash bool `json:"isCrash,omitempty"`
|
|
// read a file from disk
|
|
ReadFile string `json:"readFile,omitempty"`
|
|
// fill created with with zero bytes of specified size
|
|
ReadFileSize int `json:"readFileSize,omitempty"`
|
|
// create a file on disk
|
|
CreateFile string `json:"createFile,omitempty"`
|
|
// fill created with with zero bytes of specified size
|
|
CreateFileSize int `json:"createFileSize,omitempty"`
|
|
// allocate RAM and hold until next request
|
|
AllocateMemory int `json:"allocateMemory,omitempty"`
|
|
// leak RAM forever
|
|
LeakMemory int `json:"leakMemory,omitempty"`
|
|
// duplicate trailer if > 0
|
|
TrailerRepeat int `json:"trailerRepeat,omitempty"`
|
|
// corrupt http or json
|
|
InvalidResponse bool `json:"invalidResponse,omitempty"`
|
|
// if specified we 'sleep' the specified msecs *after* processing request
|
|
PostSleepTime int `json:"postSleepTime,omitempty"`
|
|
// spit this out in stdout after processing each request
|
|
PostOutGarbage string `json:"postOutGarbage,omitempty"`
|
|
// spit this out in stderr after processing each request
|
|
PostErrGarbage string `json:"postErrGarbage,omitempty"`
|
|
// test empty body
|
|
IsEmptyBody bool `json:"isEmptyBody,omitempty"`
|
|
// TODO: simulate slow read/slow write
|
|
// TODO: simulate partial IO write/read
|
|
// TODO: simulate high cpu usage (async and sync)
|
|
// TODO: simulate large body upload/download
|
|
// TODO: infinite loop
|
|
}
|
|
|
|
// Leaks are ever growing memory leak chunks
|
|
var Leaks []*[]byte
|
|
|
|
// Hold is memory to hold on to at every request, new requests overwrite it.
|
|
var Hold []byte
|
|
|
|
// AppResponse is the output of this function, in JSON
|
|
type AppResponse struct {
|
|
Request AppRequest `json:"request"`
|
|
Headers http.Header `json:"header"`
|
|
Config map[string]string `json:"config"`
|
|
Data map[string]string `json:"data"`
|
|
Trailer []string `json:"trailer"`
|
|
}
|
|
|
|
func init() {
|
|
Leaks = make([]*[]byte, 0, 0)
|
|
}
|
|
|
|
func getTotalLeaks() int {
|
|
total := 0
|
|
for idx := range Leaks {
|
|
total += len(*(Leaks[idx]))
|
|
}
|
|
return total
|
|
}
|
|
|
|
// AppHandler is the fdk.Handler used by this package
|
|
func AppHandler(ctx context.Context, in io.Reader, out io.Writer) {
|
|
req, resp := processRequest(ctx, in)
|
|
|
|
if req.InvalidResponse {
|
|
_, err := io.Copy(out, strings.NewReader(InvalidResponseStr))
|
|
if err != nil {
|
|
log.Printf("io copy error %v", err)
|
|
panic(err.Error())
|
|
}
|
|
}
|
|
|
|
finalizeRequest(out, req, resp)
|
|
err := postProcessRequest(req, out)
|
|
if err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|
|
|
|
func finalizeRequest(out io.Writer, req *AppRequest, resp *AppResponse) {
|
|
// custom response code
|
|
if req.ResponseCode != 0 {
|
|
fdk.WriteStatus(out, req.ResponseCode)
|
|
}
|
|
|
|
// custom content type
|
|
if req.ResponseContentType != "" {
|
|
fdk.SetHeader(out, "Content-Type", req.ResponseContentType)
|
|
}
|
|
// NOTE: don't add 'application/json' explicitly here as an else,
|
|
// we will test that go's auto-detection logic does not fade since
|
|
// some people are relying on it now
|
|
|
|
if req.JasonContentType != "" {
|
|
// this will get picked up by our json out handler...
|
|
fdk.SetHeader(out, "Content-Type", req.JasonContentType)
|
|
}
|
|
|
|
if !req.IsEmptyBody {
|
|
json.NewEncoder(out).Encode(resp)
|
|
}
|
|
}
|
|
|
|
func processRequest(ctx context.Context, in io.Reader) (*AppRequest, *AppResponse) {
|
|
|
|
fnctx := fdk.Context(ctx)
|
|
|
|
var request AppRequest
|
|
json.NewDecoder(in).Decode(&request)
|
|
|
|
if request.IsDebug {
|
|
format, _ := os.LookupEnv("FN_FORMAT")
|
|
log.Printf("BeginOfLogs")
|
|
log.Printf("Received format %v", format)
|
|
log.Printf("Received request %#v", request)
|
|
log.Printf("Received headers %v", fnctx.Header)
|
|
log.Printf("Received config %v", fnctx.Config)
|
|
}
|
|
|
|
// simulate load if requested
|
|
if request.SleepTime > 0 {
|
|
if request.IsDebug {
|
|
log.Printf("Sleeping %d", request.SleepTime)
|
|
}
|
|
time.Sleep(time.Duration(request.SleepTime) * time.Millisecond)
|
|
}
|
|
|
|
data := make(map[string]string)
|
|
|
|
// read a file
|
|
if request.ReadFile != "" {
|
|
if request.IsDebug {
|
|
log.Printf("Reading file %s", request.ReadFile)
|
|
}
|
|
out, err := readFile(request.ReadFile, request.ReadFileSize)
|
|
if err != nil {
|
|
data[request.ReadFile+".read_error"] = err.Error()
|
|
} else {
|
|
data[request.ReadFile+".read_output"] = out
|
|
}
|
|
}
|
|
|
|
// create a file
|
|
if request.CreateFile != "" {
|
|
if request.IsDebug {
|
|
log.Printf("Creating file %s (size: %d)", request.CreateFile, request.CreateFileSize)
|
|
}
|
|
err := createFile(request.CreateFile, request.CreateFileSize)
|
|
if err != nil {
|
|
data[request.CreateFile+".create_error"] = err.Error()
|
|
}
|
|
}
|
|
|
|
// handle one time alloc request (hold on to the memory until next request)
|
|
if request.AllocateMemory != 0 && request.IsDebug {
|
|
log.Printf("Allocating memory size: %d", request.AllocateMemory)
|
|
}
|
|
Hold = getChunk(request.AllocateMemory)
|
|
|
|
// leak memory forever
|
|
if request.LeakMemory != 0 {
|
|
if request.IsDebug {
|
|
log.Printf("Leaking memory size: %d total: %d", request.LeakMemory, getTotalLeaks())
|
|
}
|
|
chunk := getChunk(request.LeakMemory)
|
|
Leaks = append(Leaks, &chunk)
|
|
}
|
|
|
|
if request.IsDebug {
|
|
info := getDockerInfo()
|
|
log.Printf("DockerInfo %+v", info)
|
|
data["DockerId"] = info.ID
|
|
data["DockerHostname"] = info.Hostname
|
|
}
|
|
|
|
// simulate crash
|
|
if request.IsCrash {
|
|
log.Fatalln("Crash requested")
|
|
}
|
|
|
|
resp := AppResponse{
|
|
Data: data,
|
|
Request: request,
|
|
Headers: fnctx.Header,
|
|
Config: fnctx.Config,
|
|
Trailer: make([]string, 0, request.TrailerRepeat),
|
|
}
|
|
|
|
for i := request.TrailerRepeat; i > 0; i-- {
|
|
resp.Trailer = append(resp.Trailer, request.EchoContent)
|
|
}
|
|
|
|
// Well, almost true.. If panic/errors, we may print stuff after this
|
|
if request.IsDebug {
|
|
log.Printf("EndOfLogs")
|
|
}
|
|
return &request, &resp
|
|
}
|
|
|
|
func postProcessRequest(request *AppRequest, out io.Writer) error {
|
|
if request == nil {
|
|
return nil
|
|
}
|
|
|
|
if request.PostSleepTime > 0 {
|
|
if request.IsDebug {
|
|
log.Printf("PostProcess Sleeping %d", request.PostSleepTime)
|
|
}
|
|
time.Sleep(time.Duration(request.PostSleepTime) * time.Millisecond)
|
|
}
|
|
|
|
if request.PostOutGarbage != "" {
|
|
if request.IsDebug {
|
|
log.Printf("PostProcess PostOutGarbage %s", request.PostOutGarbage)
|
|
}
|
|
|
|
_, err := io.WriteString(out, request.PostOutGarbage)
|
|
if err != nil {
|
|
log.Printf("PostOutGarbage write string error %v", err)
|
|
return err
|
|
}
|
|
}
|
|
|
|
if request.PostErrGarbage != "" {
|
|
log.Printf("PostProcess PostErrGarbage %s", request.PostErrGarbage)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
if os.Getenv("ENABLE_HEADER") != "" {
|
|
log.Printf("Container starting")
|
|
}
|
|
|
|
format, _ := os.LookupEnv("FN_FORMAT")
|
|
testDo(format, os.Stdin, os.Stdout)
|
|
|
|
if os.Getenv("ENABLE_FOOTER") != "" {
|
|
log.Printf("Container ending")
|
|
}
|
|
}
|
|
|
|
func testDo(format string, in io.Reader, out io.Writer) {
|
|
ctx := fdkutils.BuildCtx()
|
|
switch format {
|
|
case "http":
|
|
testDoHTTP(ctx, in, out)
|
|
case "json":
|
|
testDoJSON(ctx, in, out)
|
|
case "default":
|
|
fdkutils.DoDefault(fdk.HandlerFunc(AppHandler), ctx, in, out)
|
|
case "http-stream":
|
|
fdk.Handle(fdk.HandlerFunc(AppHandler)) // XXX(reed): can extract & instrument
|
|
default:
|
|
panic("unknown format (fdk-go): " + format)
|
|
}
|
|
}
|
|
|
|
// doHTTP runs a loop, reading http requests from in and writing
|
|
// http responses to out
|
|
func testDoHTTP(ctx context.Context, in io.Reader, out io.Writer) {
|
|
var buf bytes.Buffer
|
|
// maps don't get down-sized, so we can reuse this as it's likely that the
|
|
// user sends in the same amount of headers over and over (but still clear
|
|
// b/w runs) -- buf uses same principle
|
|
hdr := make(http.Header)
|
|
|
|
for {
|
|
err := testDoHTTPOnce(ctx, in, out, &buf, hdr)
|
|
if err != nil {
|
|
panic("testDoHTTPOnce: " + err.Error())
|
|
}
|
|
}
|
|
}
|
|
|
|
func testDoJSON(ctx context.Context, in io.Reader, out io.Writer) {
|
|
var buf bytes.Buffer
|
|
hdr := make(http.Header)
|
|
|
|
for {
|
|
err := testDoJSONOnce(ctx, in, out, &buf, hdr)
|
|
if err != nil {
|
|
panic("testDoJSONOnce: " + err.Error())
|
|
}
|
|
}
|
|
}
|
|
|
|
func testDoJSONOnce(ctx context.Context, in io.Reader, out io.Writer, buf *bytes.Buffer, hdr http.Header) error {
|
|
buf.Reset()
|
|
fdkutils.ResetHeaders(hdr)
|
|
var resp fdkutils.Response
|
|
resp.Writer = buf
|
|
resp.Status = 200
|
|
resp.Header = hdr
|
|
|
|
var jsonRequest fdkutils.JsonIn
|
|
var appRequest *AppRequest
|
|
err := json.NewDecoder(in).Decode(&jsonRequest)
|
|
if err != nil {
|
|
// stdin now closed
|
|
if err == io.EOF {
|
|
log.Printf("json decoder read EOF %v", err)
|
|
return err
|
|
}
|
|
resp.Status = http.StatusInternalServerError
|
|
_, err = io.WriteString(resp, fmt.Sprintf(`{"error": %v}`, err.Error()))
|
|
if err != nil {
|
|
log.Printf("json write string error %v", err)
|
|
return err
|
|
}
|
|
} else {
|
|
fdkutils.SetHeaders(ctx, jsonRequest.Protocol.Headers)
|
|
ctx, cancel := fdkutils.CtxWithDeadline(ctx, jsonRequest.Deadline)
|
|
defer cancel()
|
|
|
|
appReq, appResp := processRequest(ctx, strings.NewReader(jsonRequest.Body))
|
|
finalizeRequest(&resp, appReq, appResp)
|
|
|
|
if appReq.InvalidResponse {
|
|
io.Copy(out, strings.NewReader(InvalidResponseStr))
|
|
}
|
|
|
|
appRequest = appReq
|
|
}
|
|
|
|
jsonResponse := getJSONResp(buf, &resp, &jsonRequest)
|
|
|
|
b, err := json.Marshal(jsonResponse)
|
|
if err != nil {
|
|
log.Printf("json marshal error %v", err)
|
|
return err
|
|
}
|
|
|
|
_, err = out.Write(b)
|
|
if err != nil {
|
|
log.Printf("json write error %v", err)
|
|
return err
|
|
}
|
|
|
|
return postProcessRequest(appRequest, out)
|
|
}
|
|
|
|
// copy of fdk.GetJSONResp but with sugar for stupid jason's little fields
|
|
func getJSONResp(buf *bytes.Buffer, fnResp *fdkutils.Response, req *fdkutils.JsonIn) *fdkutils.JsonOut {
|
|
return &fdkutils.JsonOut{
|
|
Body: buf.String(),
|
|
ContentType: fnResp.Header.Get("Content-Type"),
|
|
Protocol: fdkutils.CallResponseHTTP{
|
|
StatusCode: fnResp.Status,
|
|
Headers: fnResp.Header,
|
|
},
|
|
}
|
|
}
|
|
|
|
func testDoHTTPOnce(ctx context.Context, in io.Reader, out io.Writer, buf *bytes.Buffer, hdr http.Header) error {
|
|
buf.Reset()
|
|
fdkutils.ResetHeaders(hdr)
|
|
var resp fdkutils.Response
|
|
resp.Writer = buf
|
|
resp.Status = 200
|
|
resp.Header = hdr
|
|
|
|
var appRequest *AppRequest
|
|
req, err := http.ReadRequest(bufio.NewReader(in))
|
|
if err != nil {
|
|
// stdin now closed
|
|
if err == io.EOF {
|
|
log.Printf("http read EOF %v", err)
|
|
return err
|
|
}
|
|
// TODO it would be nice if we could let the user format this response to their preferred style..
|
|
resp.Status = http.StatusInternalServerError
|
|
_, err = io.WriteString(resp, err.Error())
|
|
if err != nil {
|
|
log.Printf("http write string error %v", err)
|
|
return err
|
|
}
|
|
} else {
|
|
fnDeadline := fdkutils.Context(ctx).Header.Get("FN_DEADLINE")
|
|
ctx, cancel := fdkutils.CtxWithDeadline(ctx, fnDeadline)
|
|
defer cancel()
|
|
fdkutils.SetHeaders(ctx, req.Header)
|
|
|
|
appReq, appResp := processRequest(ctx, req.Body)
|
|
finalizeRequest(&resp, appReq, appResp)
|
|
|
|
if appReq.InvalidResponse {
|
|
io.Copy(out, strings.NewReader(InvalidResponseStr))
|
|
}
|
|
|
|
appRequest = appReq
|
|
}
|
|
|
|
hResp := fdkutils.GetHTTPResp(buf, &resp, req)
|
|
|
|
err = hResp.Write(out)
|
|
if err != nil {
|
|
log.Printf("http response write error %v", err)
|
|
return err
|
|
}
|
|
|
|
return postProcessRequest(appRequest, out)
|
|
}
|
|
|
|
func getChunk(size int) []byte {
|
|
chunk := make([]byte, size)
|
|
// fill it
|
|
for idx := range chunk {
|
|
chunk[idx] = 1
|
|
}
|
|
return chunk
|
|
}
|
|
|
|
func readFile(name string, size int) (string, error) {
|
|
// read the whole file into memory
|
|
out, err := ioutil.ReadFile(name)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
// only respond with partion output if requested
|
|
if size > 0 {
|
|
return string(out[:size]), nil
|
|
}
|
|
return string(out), nil
|
|
}
|
|
|
|
func createFile(name string, size int) error {
|
|
f, err := os.Create(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if size > 0 {
|
|
// create a 1K block (keep this buffer small to keep
|
|
// memory usage small)
|
|
chunk := make([]byte, 1024)
|
|
for i := 0; i < 1024; i++ {
|
|
chunk[i] = byte(i)
|
|
}
|
|
|
|
for size > 0 {
|
|
dlen := size
|
|
if dlen > 1024 {
|
|
dlen = 1024
|
|
}
|
|
|
|
_, err := f.Write(chunk[:dlen])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// slightly modify the chunk to avoid any sparse file possibility
|
|
chunk[0]++
|
|
size = size - dlen
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type dockerInfo struct {
|
|
Hostname string
|
|
ID string
|
|
}
|
|
|
|
func getDockerInfo() dockerInfo {
|
|
var info dockerInfo
|
|
|
|
info.Hostname, _ = os.Hostname()
|
|
|
|
// cgroup file has lines such as, where last token is the docker id
|
|
/*
|
|
12:freezer:/docker/610d96c712c6983776f920f2bcf10fae056a6fe5274393c86678ca802d184b0a
|
|
*/
|
|
file, err := os.Open("/proc/self/cgroup")
|
|
if err == nil {
|
|
defer file.Close()
|
|
r := bufio.NewReader(file)
|
|
for {
|
|
line, _, err := r.ReadLine()
|
|
if err != nil {
|
|
break
|
|
}
|
|
|
|
tokens := bytes.Split(line, []byte("/"))
|
|
tokLen := len(tokens)
|
|
if tokLen >= 3 && bytes.Compare(tokens[tokLen-2], []byte("docker")) == 0 {
|
|
info.ID = string(tokens[tokLen-1])
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return info
|
|
}
|