blob: d5871dd5349db6ca59652b93a0c59888403d96e4 [file] [log] [blame]
package plugin
/*
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.
*/
import (
"net/http"
"runtime"
"strings"
"time"
"github.com/apache/trafficcontrol/grove/web"
"github.com/apache/trafficcontrol/lib/go-log"
)
func init() {
AddPlugin(10000, Funcs{onRequest: callgc})
}
const CallGCEndpoint = "/_callgc"
func callgc(icfg interface{}, d OnRequestData) bool {
if !strings.HasPrefix(d.R.URL.Path, CallGCEndpoint) {
return false
}
reqTime := time.Now()
log.Debugf("plugin onrequest http_callgc calling\n")
w := d.W
req := d.R
// TODO access log? Stats byte count?
ip, err := web.GetIP(req)
if err != nil {
code := http.StatusInternalServerError
w.WriteHeader(code)
w.Write([]byte(http.StatusText(code)))
log.Errorln("statHandler ServeHTTP failed to get IP: " + ip.String())
return true
}
if !d.StatRules.Allowed(ip) {
code := http.StatusForbidden
w.WriteHeader(code)
w.Write([]byte(http.StatusText(code)))
log.Debugln("statHandler.ServeHTTP IP " + ip.String() + " FORBIDDEN") // TODO event?
return true
}
runtime.GC()
respCode := http.StatusNoContent
w.WriteHeader(respCode)
clientIP, _ := web.GetClientIPPort(req)
now := time.Now()
// log, so we know if someone is hitting this endpoint when they shouldn't be. GC is expensive, this could become an accidental DDOS.
log.EventRaw(atsEventLogStr(now, clientIP, d.Hostname, req.Host, d.Port, "-", d.Scheme, req.URL.String(), req.Method, req.Proto, respCode, now.Sub(reqTime), 0, 0, 0, true, true, getCacheHitStr(true, false), "-", "-", req.UserAgent(), req.Header.Get("X-Money-Trace"), d.RequestID))
return true
}