2016-10-26 23:34:45 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes 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 streaming
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-11-03 00:42:00 +00:00
|
|
|
"net/http"
|
2016-12-14 02:27:05 +00:00
|
|
|
"strconv"
|
2016-10-26 23:34:45 +00:00
|
|
|
|
2016-11-03 00:42:00 +00:00
|
|
|
"google.golang.org/grpc"
|
2016-10-26 23:34:45 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ErrorStreamingDisabled(method string) error {
|
2016-11-03 00:42:00 +00:00
|
|
|
return grpc.Errorf(codes.NotFound, fmt.Sprintf("streaming method %s disabled", method))
|
2016-10-26 23:34:45 +00:00
|
|
|
}
|
|
|
|
|
2016-12-14 02:27:05 +00:00
|
|
|
// The error returned when the maximum number of in-flight requests is exceeded.
|
|
|
|
func ErrorTooManyInFlight() error {
|
|
|
|
return grpc.Errorf(codes.ResourceExhausted, "maximum number of in-flight requests exceeded")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Translates a CRI streaming error into an appropriate HTTP response.
|
|
|
|
func WriteError(err error, w http.ResponseWriter) error {
|
|
|
|
var status int
|
2016-11-03 00:42:00 +00:00
|
|
|
switch grpc.Code(err) {
|
|
|
|
case codes.NotFound:
|
2016-12-14 02:27:05 +00:00
|
|
|
status = http.StatusNotFound
|
|
|
|
case codes.ResourceExhausted:
|
|
|
|
// We only expect to hit this if there is a DoS, so we just wait the full TTL.
|
|
|
|
// If this is ever hit in steady-state operations, consider increasing the MaxInFlight requests,
|
|
|
|
// or plumbing through the time to next expiration.
|
|
|
|
w.Header().Set("Retry-After", strconv.Itoa(int(CacheTTL.Seconds())))
|
|
|
|
status = http.StatusTooManyRequests
|
2016-11-03 00:42:00 +00:00
|
|
|
default:
|
2016-12-14 02:27:05 +00:00
|
|
|
status = http.StatusInternalServerError
|
2016-10-26 23:34:45 +00:00
|
|
|
}
|
2016-12-14 02:27:05 +00:00
|
|
|
w.WriteHeader(status)
|
|
|
|
_, writeErr := w.Write([]byte(err.Error()))
|
|
|
|
return writeErr
|
2016-10-26 23:34:45 +00:00
|
|
|
}
|