2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
2018-11-09 14:22:44 +00:00
|
|
|
import "bytes"
|
2018-11-09 00:47:14 +00:00
|
|
|
import "flag"
|
2018-11-13 19:04:42 +00:00
|
|
|
import "fmt"
|
2018-11-13 17:42:55 +00:00
|
|
|
import "io"
|
2018-11-09 00:47:14 +00:00
|
|
|
import "log"
|
2018-11-13 19:04:42 +00:00
|
|
|
import "net"
|
2018-11-09 00:47:14 +00:00
|
|
|
import "net/http"
|
2018-11-09 14:22:44 +00:00
|
|
|
import "os"
|
2018-11-13 15:39:26 +00:00
|
|
|
import "os/signal"
|
|
|
|
import "runtime"
|
2018-11-14 00:00:59 +00:00
|
|
|
import "runtime/debug"
|
2018-11-13 15:39:26 +00:00
|
|
|
import "runtime/pprof"
|
2018-11-17 17:41:00 +00:00
|
|
|
import "strconv"
|
2018-11-13 19:04:42 +00:00
|
|
|
import "sync"
|
2018-11-13 15:39:26 +00:00
|
|
|
import "syscall"
|
2018-11-09 01:26:16 +00:00
|
|
|
import "time"
|
2018-11-15 17:11:34 +00:00
|
|
|
import "unsafe"
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2019-08-10 16:35:25 +00:00
|
|
|
import "github.com/colinmarc/cdb"
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-13 01:08:51 +00:00
|
|
|
import "github.com/valyala/fasthttp"
|
2018-11-13 19:04:42 +00:00
|
|
|
import "github.com/valyala/fasthttp/reuseport"
|
2018-11-13 01:08:51 +00:00
|
|
|
|
2018-11-18 16:11:36 +00:00
|
|
|
import . "github.com/volution/kawipiko/lib/common"
|
|
|
|
import . "github.com/volution/kawipiko/lib/server"
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-09 14:55:18 +00:00
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
type server struct {
|
2018-11-13 15:38:43 +00:00
|
|
|
httpServer *fasthttp.Server
|
2018-11-09 00:47:14 +00:00
|
|
|
cdbReader *cdb.CDB
|
2018-11-20 14:11:47 +00:00
|
|
|
cachedFileFingerprints map[string][]byte
|
|
|
|
cachedDataMeta map[string][]byte
|
|
|
|
cachedDataContent map[string][]byte
|
2018-11-09 00:47:14 +00:00
|
|
|
debug bool
|
2019-08-12 10:37:46 +00:00
|
|
|
dummy bool
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-13 15:38:43 +00:00
|
|
|
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
func (_server *server) Serve (_context *fasthttp.RequestCtx) () {
|
|
|
|
|
|
|
|
// _request := (*fasthttp.Request) (NoEscape (unsafe.Pointer (&_context.Request)))
|
|
|
|
_requestHeaders := (*fasthttp.RequestHeader) (NoEscape (unsafe.Pointer (&_context.Request.Header)))
|
|
|
|
_response := (*fasthttp.Response) (NoEscape (unsafe.Pointer (&_context.Response)))
|
|
|
|
_responseHeaders := (*fasthttp.ResponseHeader) (NoEscape (unsafe.Pointer (&_context.Response.Header)))
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-13 10:40:26 +00:00
|
|
|
_keyBuffer := [1024]byte {}
|
2018-11-14 00:00:59 +00:00
|
|
|
_pathBuffer := [1024]byte {}
|
2018-11-09 01:26:16 +00:00
|
|
|
|
2018-11-13 10:40:26 +00:00
|
|
|
_method := _requestHeaders.Method ()
|
2018-11-14 00:00:59 +00:00
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
_path := _pathBuffer[:0]
|
|
|
|
_path = append (_path, _requestHeaders.RequestURI () ...)
|
2018-11-14 00:00:59 +00:00
|
|
|
if _pathLimit := bytes.IndexByte (_path, '?'); _pathLimit > 0 {
|
|
|
|
_path = _path[: _pathLimit]
|
|
|
|
}
|
|
|
|
// FIXME: Decode path according to `decodeArgAppendNoPlus`!
|
|
|
|
|
2018-11-13 10:40:26 +00:00
|
|
|
_pathLen := len (_path)
|
|
|
|
_pathIsRoot := _pathLen == 1
|
|
|
|
_pathHasSlash := !_pathIsRoot && (_path[_pathLen - 1] == '/')
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
if ! bytes.Equal (StringToBytes (http.MethodGet), _method) {
|
2018-11-15 18:34:24 +00:00
|
|
|
log.Printf ("[ww] [bce7a75b] invalid method `%s` for `%s`!\n", _requestHeaders.Method (), _requestHeaders.RequestURI ())
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeError (_context, http.StatusMethodNotAllowed, nil, true)
|
2018-11-09 00:47:14 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-13 10:40:26 +00:00
|
|
|
if (_pathLen == 0) || (_path[0] != '/') {
|
2018-11-15 18:34:24 +00:00
|
|
|
log.Printf ("[ww] [fa6b1923] invalid path `%s`!\n", _requestHeaders.RequestURI ())
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeError (_context, http.StatusBadRequest, nil, true)
|
2018-11-13 10:40:26 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
if bytes.HasPrefix (_path, StringToBytes ("/__/")) {
|
|
|
|
if bytes.Equal (_path, StringToBytes ("/__/heartbeat")) || bytes.HasPrefix (_path, StringToBytes ("/__/heartbeat/")) {
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeStatic (_context, http.StatusOK, HeartbeatDataOk, HeartbeatContentType, HeartbeatContentEncoding, false)
|
2018-11-17 19:31:50 +00:00
|
|
|
return
|
2019-08-11 22:29:04 +00:00
|
|
|
} else if bytes.Equal (_path, StringToBytes ("/__/about")) {
|
|
|
|
_server.ServeStatic (_context, http.StatusOK, AboutBannerData, AboutBannerContentType, AboutBannerContentEncoding, true)
|
2018-11-18 15:45:46 +00:00
|
|
|
return
|
2019-08-11 22:29:04 +00:00
|
|
|
} else if bytes.HasPrefix (_path, StringToBytes ("/__/errors/banners/")) {
|
2018-11-17 19:31:50 +00:00
|
|
|
_code := _path[len ("/__/errors/banners/") :]
|
2018-11-20 14:34:17 +00:00
|
|
|
if _code, _error := strconv.Atoi (BytesToString (*NoEscapeBytes (&_code))); _error == nil {
|
2018-11-18 15:45:46 +00:00
|
|
|
_banner, _bannerFound := ErrorBannersData[uint (_code)]
|
2018-11-17 19:31:50 +00:00
|
|
|
if (_code > 0) && _bannerFound {
|
2018-11-20 14:11:47 +00:00
|
|
|
_server.ServeStatic (_context, http.StatusOK, _banner, ErrorBannerContentType, ErrorBannerContentEncoding, true)
|
2018-11-17 19:31:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_server.ServeError (_context, http.StatusNotFound, nil, true)
|
|
|
|
return
|
2018-11-15 17:11:34 +00:00
|
|
|
} else {
|
|
|
|
_server.ServeError (_context, http.StatusNotFound, nil, true)
|
2018-11-17 19:31:50 +00:00
|
|
|
return
|
2018-11-15 17:11:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
// _responseHeaders.SetCanonical (StringToBytes ("Content-Security-Policy"), StringToBytes ("upgrade-insecure-requests"))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Referrer-Policy"), StringToBytes ("strict-origin-when-cross-origin"))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("X-Frame-Options"), StringToBytes ("SAMEORIGIN"))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("X-content-type-Options"), StringToBytes ("nosniff"))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("X-XSS-Protection"), StringToBytes ("1; mode=block"))
|
2018-11-15 17:11:34 +00:00
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
var _fingerprints []byte
|
2018-11-17 17:41:00 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
var _namespaceAndPathSuffixes = [][2]string {
|
|
|
|
{NamespaceFilesContent, ""},
|
|
|
|
{NamespaceFilesContent, "/"},
|
|
|
|
{NamespaceFoldersContent, ""},
|
|
|
|
}
|
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
if _fingerprints == nil {
|
2019-08-11 22:29:04 +00:00
|
|
|
_loop_1 : for _namespaceAndPathSuffixIndex := range _namespaceAndPathSuffixes {
|
|
|
|
_namespaceAndPathSuffix := _namespaceAndPathSuffixes[_namespaceAndPathSuffixIndex]
|
2018-11-17 17:41:00 +00:00
|
|
|
_namespace := _namespaceAndPathSuffix[0]
|
|
|
|
_pathSuffix := _namespaceAndPathSuffix[1]
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case !_pathIsRoot && !_pathHasSlash :
|
|
|
|
break
|
|
|
|
case _pathSuffix == "/" :
|
|
|
|
continue _loop_1
|
|
|
|
case _pathSuffix == "" :
|
|
|
|
break
|
|
|
|
case _pathSuffix[0] == '/' :
|
|
|
|
_pathSuffix = _pathSuffix[1:]
|
|
|
|
}
|
|
|
|
_pathSuffixHasSlash := (len (_pathSuffix) != 0) && (_pathSuffix[0] == '/')
|
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
if _server.cachedFileFingerprints != nil {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, _path ...)
|
|
|
|
_key = append (_key, _pathSuffix ...)
|
|
|
|
_fingerprints, _ = _server.cachedFileFingerprints[BytesToString (_key)]
|
|
|
|
} else {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, _namespace ...)
|
|
|
|
_key = append (_key, ':')
|
|
|
|
_key = append (_key, _path ...)
|
|
|
|
_key = append (_key, _pathSuffix ...)
|
|
|
|
if _value, _error := _server.cdbReader.GetWithCdbHash (_key); _error == nil {
|
2018-11-20 12:21:22 +00:00
|
|
|
_fingerprints = _value
|
2018-11-20 14:11:47 +00:00
|
|
|
} else {
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, _error, false)
|
|
|
|
return
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
2018-11-20 14:11:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _fingerprints != nil {
|
|
|
|
if ((_namespace == NamespaceFoldersContent) || _pathSuffixHasSlash) && (!_pathIsRoot && !_pathHasSlash) {
|
|
|
|
_path = append (_path, '/')
|
|
|
|
_server.ServeRedirect (_context, http.StatusTemporaryRedirect, _path, true)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
break _loop_1
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-13 10:40:26 +00:00
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
if _fingerprints == nil {
|
2019-08-11 22:29:04 +00:00
|
|
|
if bytes.Equal (StringToBytes ("/favicon.ico"), _path) {
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeStatic (_context, http.StatusOK, FaviconData, FaviconContentType, FaviconContentEncoding, true)
|
2018-11-17 17:41:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
if _fingerprints == nil {
|
2018-11-17 17:41:00 +00:00
|
|
|
_loop_2 : for
|
|
|
|
_pathLimit := bytes.LastIndexByte (_path, '/');
|
|
|
|
_pathLimit >= 0;
|
|
|
|
_pathLimit = bytes.LastIndexByte (_path[: _pathLimit], '/') {
|
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
if _server.cachedFileFingerprints != nil {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, _path[: _pathLimit] ...)
|
|
|
|
_key = append (_key, "/*" ...)
|
|
|
|
_fingerprints, _ = _server.cachedFileFingerprints[BytesToString (_key)]
|
|
|
|
} else {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceFilesContent ...)
|
|
|
|
_key = append (_key, ':')
|
|
|
|
_key = append (_key, _path[: _pathLimit] ...)
|
|
|
|
_key = append (_key, "/*" ...)
|
|
|
|
if _value, _error := _server.cdbReader.GetWithCdbHash (_key); _error == nil {
|
2018-11-20 12:21:22 +00:00
|
|
|
_fingerprints = _value
|
2018-11-20 14:11:47 +00:00
|
|
|
} else {
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, _error, false)
|
|
|
|
return
|
2018-11-17 17:41:00 +00:00
|
|
|
}
|
2018-11-20 14:11:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _fingerprints != nil {
|
|
|
|
break _loop_2
|
2018-11-17 17:41:00 +00:00
|
|
|
}
|
2018-11-09 01:12:32 +00:00
|
|
|
}
|
2018-11-17 17:41:00 +00:00
|
|
|
}
|
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
if _fingerprints == nil {
|
2018-11-17 17:41:00 +00:00
|
|
|
log.Printf ("[ww] [7416f61d] not found `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_server.ServeError (_context, http.StatusNotFound, nil, true)
|
2018-11-09 00:47:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-20 12:21:22 +00:00
|
|
|
if len (_fingerprints) != 129 {
|
|
|
|
log.Printf ("[ee] [7ee6c981] invalid data fingerprints for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, nil, false)
|
|
|
|
return
|
|
|
|
}
|
2018-11-20 14:11:47 +00:00
|
|
|
_fingerprintContent := _fingerprints[0:64]
|
|
|
|
_fingerprintMeta := _fingerprints[65:129]
|
2018-11-20 12:21:22 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("public, immutable, max-age=3600"))
|
2018-11-17 17:41:00 +00:00
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
var _data []byte
|
2018-11-20 14:11:47 +00:00
|
|
|
if _server.cachedDataContent != nil {
|
|
|
|
_data, _ = _server.cachedDataContent[BytesToString (_fingerprintContent)]
|
|
|
|
} else {
|
2018-11-13 10:40:26 +00:00
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceDataContent ...)
|
|
|
|
_key = append (_key, ':')
|
2018-11-20 12:21:22 +00:00
|
|
|
_key = append (_key, _fingerprintContent ...)
|
2018-11-13 15:38:43 +00:00
|
|
|
if _value, _error := _server.cdbReader.GetWithCdbHash (_key); _error == nil {
|
2018-11-20 14:11:47 +00:00
|
|
|
_data = _value
|
2018-11-09 00:47:14 +00:00
|
|
|
} else {
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, _error, false)
|
2018-11-09 00:47:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 14:11:47 +00:00
|
|
|
if _data == nil {
|
|
|
|
log.Printf ("[ee] [0165c193] missing data content for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, nil, false)
|
|
|
|
return
|
|
|
|
}
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
var _dataMetaRaw []byte
|
|
|
|
if _server.cachedDataMeta != nil {
|
|
|
|
_dataMetaRaw, _ = _server.cachedDataMeta[BytesToString (_fingerprintMeta)]
|
|
|
|
} else {
|
2018-11-13 10:40:26 +00:00
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceDataMetadata ...)
|
|
|
|
_key = append (_key, ':')
|
2018-11-20 12:21:22 +00:00
|
|
|
_key = append (_key, _fingerprintMeta ...)
|
2018-11-13 15:38:43 +00:00
|
|
|
if _value, _error := _server.cdbReader.GetWithCdbHash (_key); _error == nil {
|
2018-11-20 14:11:47 +00:00
|
|
|
_dataMetaRaw = _value
|
2018-11-09 00:47:14 +00:00
|
|
|
} else {
|
2018-11-15 17:11:34 +00:00
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, _error, false)
|
2018-11-09 00:47:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 14:11:47 +00:00
|
|
|
if _dataMetaRaw == nil {
|
|
|
|
log.Printf ("[ee] [e8702411] missing data metadata for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, nil, false)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_responseStatus := http.StatusOK
|
|
|
|
_handleHeader := func (_name []byte, _value []byte) {
|
|
|
|
switch {
|
|
|
|
case len (_name) == 0 :
|
|
|
|
log.Printf ("[90009821] invalid data metadata for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_responseStatus = http.StatusInternalServerError
|
|
|
|
case _name[0] != '_' :
|
|
|
|
_responseHeaders.SetCanonical (_name, _value)
|
2019-08-11 22:29:04 +00:00
|
|
|
case bytes.Equal (_name, StringToBytes ("_Status")) :
|
2018-11-20 14:11:47 +00:00
|
|
|
if _value, _error := strconv.Atoi (BytesToString (_value)); _error == nil {
|
|
|
|
if (_value >= 200) && (_value <= 599) {
|
|
|
|
_responseStatus = _value
|
|
|
|
} else {
|
|
|
|
log.Printf ("[c2f7ec36] invalid data metadata for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_responseStatus = http.StatusInternalServerError
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Printf ("[beedae55] invalid data metadata for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
_responseStatus = http.StatusInternalServerError
|
|
|
|
}
|
|
|
|
default :
|
|
|
|
log.Printf ("[7acc7d90] invalid data metadata for `%s`!\n", _requestHeaders.RequestURI ())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _error := MetadataDecodeIterate (_dataMetaRaw, _handleHeader); _error != nil {
|
|
|
|
_server.ServeError (_context, http.StatusInternalServerError, _error, false)
|
|
|
|
return
|
|
|
|
}
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
if _server.debug {
|
2018-11-14 00:01:12 +00:00
|
|
|
log.Printf ("[dd] [b15f3cad] serving for `%s`...\n", _requestHeaders.RequestURI ())
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-17 17:41:00 +00:00
|
|
|
_response.SetStatusCode (_responseStatus)
|
2018-11-15 17:11:34 +00:00
|
|
|
_response.SetBodyRaw (_data)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (_server *server) ServeStatic (_context *fasthttp.RequestCtx, _status uint, _data []byte, _contentType string, _contentEncoding string, _cache bool) () {
|
|
|
|
|
|
|
|
_response := (*fasthttp.Response) (NoEscape (unsafe.Pointer (&_context.Response)))
|
|
|
|
_responseHeaders := (*fasthttp.ResponseHeader) (NoEscape (unsafe.Pointer (&_context.Response.Header)))
|
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Type"), StringToBytes (_contentType))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Encoding"), StringToBytes (_contentEncoding))
|
2018-11-14 00:00:59 +00:00
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
if _cache {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("public, immutable, max-age=3600"))
|
2018-11-14 00:00:59 +00:00
|
|
|
} else {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("no-cache"))
|
2018-11-14 00:00:59 +00:00
|
|
|
}
|
2018-11-15 17:11:34 +00:00
|
|
|
|
|
|
|
_response.SetStatusCode (int (_status))
|
|
|
|
_response.SetBodyRaw (_data)
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
func (_server *server) ServeRedirect (_context *fasthttp.RequestCtx, _status uint, _path []byte, _cache bool) () {
|
|
|
|
|
|
|
|
_response := (*fasthttp.Response) (NoEscape (unsafe.Pointer (&_context.Response)))
|
|
|
|
_responseHeaders := (*fasthttp.ResponseHeader) (NoEscape (unsafe.Pointer (&_context.Response.Header)))
|
2018-11-09 01:26:16 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Encoding"), StringToBytes ("identity"))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Location"), _path)
|
2018-11-09 13:54:47 +00:00
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
if _cache {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("public, immutable, max-age=3600"))
|
2018-11-15 17:11:34 +00:00
|
|
|
} else {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("no-cache"))
|
2018-11-15 17:11:34 +00:00
|
|
|
}
|
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Type"), StringToBytes (MimeTypeText))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Encoding"), StringToBytes ("identity"))
|
2018-11-17 19:31:50 +00:00
|
|
|
|
2018-11-13 01:08:51 +00:00
|
|
|
_response.SetStatusCode (int (_status))
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
func (_server *server) ServeError (_context *fasthttp.RequestCtx, _status uint, _error error, _cache bool) () {
|
2018-11-09 13:54:47 +00:00
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
_response := (*fasthttp.Response) (NoEscape (unsafe.Pointer (&_context.Response)))
|
|
|
|
_responseHeaders := (*fasthttp.ResponseHeader) (NoEscape (unsafe.Pointer (&_context.Response.Header)))
|
|
|
|
|
|
|
|
if _cache {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("public, immutable, max-age=3600"))
|
2018-11-15 17:11:34 +00:00
|
|
|
} else {
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Cache-Control"), StringToBytes ("no-cache"))
|
2018-11-15 17:11:34 +00:00
|
|
|
}
|
2018-11-09 13:54:47 +00:00
|
|
|
|
2019-08-11 22:29:04 +00:00
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Type"), StringToBytes (ErrorBannerContentType))
|
|
|
|
_responseHeaders.SetCanonical (StringToBytes ("Content-Encoding"), StringToBytes (ErrorBannerContentEncoding))
|
2018-11-17 19:31:50 +00:00
|
|
|
|
2018-11-18 15:45:46 +00:00
|
|
|
if _banner, _bannerFound := ErrorBannersData[_status]; _bannerFound {
|
2018-11-20 14:11:47 +00:00
|
|
|
_response.SetBodyRaw (_banner)
|
2018-11-17 19:31:50 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 01:08:51 +00:00
|
|
|
_response.SetStatusCode (int (_status))
|
2018-11-09 13:54:47 +00:00
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
LogError (_error, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-12 10:37:46 +00:00
|
|
|
func (_server *server) ServeDummy (_context *fasthttp.RequestCtx) () {
|
|
|
|
_server.ServeStatic (_context, http.StatusOK, DummyData, DummyContentType, DummyContentEncoding, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ServeDummyRaw (_context *fasthttp.RequestCtx) () {
|
|
|
|
_context.Response.SetBodyRaw (DummyData)
|
|
|
|
_context.Response.SetStatusCode (200)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
func main () () {
|
|
|
|
Main (main_0)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func main_0 () (error) {
|
|
|
|
|
|
|
|
|
|
|
|
var _bind string
|
2019-08-12 10:37:46 +00:00
|
|
|
var _archivePath string
|
2018-11-13 17:42:55 +00:00
|
|
|
var _archiveInmem bool
|
2018-11-13 19:04:42 +00:00
|
|
|
var _archiveMmap bool
|
2018-11-13 17:42:55 +00:00
|
|
|
var _archivePreload bool
|
2018-11-20 14:11:47 +00:00
|
|
|
var _indexPaths bool
|
|
|
|
var _indexDataMeta bool
|
|
|
|
var _indexDataContent bool
|
2018-11-13 19:04:42 +00:00
|
|
|
var _processes uint
|
|
|
|
var _threads uint
|
2018-11-15 18:34:24 +00:00
|
|
|
var _slave uint
|
2018-11-09 00:47:14 +00:00
|
|
|
var _debug bool
|
2019-08-12 10:37:46 +00:00
|
|
|
var _dummy bool
|
2018-11-15 18:34:24 +00:00
|
|
|
var _isFirst bool
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
var _profileCpu string
|
|
|
|
var _profileMem string
|
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
{
|
2018-11-18 16:11:36 +00:00
|
|
|
_flags := flag.NewFlagSet ("kawipiko-server", flag.ContinueOnError)
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-15 18:17:52 +00:00
|
|
|
_flags.Usage = func () () {
|
|
|
|
fmt.Fprintf (os.Stderr, "%s",
|
|
|
|
`
|
2018-11-18 15:50:08 +00:00
|
|
|
==== kawipiko -- blazingly fast static HTTP server ====
|
|
|
|
|
|
|
|
| Documentation, issues and sources:
|
2018-11-18 16:11:36 +00:00
|
|
|
| * https://github.com/volution/kawipiko
|
2018-11-18 15:50:08 +00:00
|
|
|
| Authors:
|
|
|
|
| * Ciprian Dorin Craciun
|
|
|
|
| ciprian@volution.ro
|
|
|
|
| ciprian.craciun@gmail.com
|
|
|
|
| https://volution.ro/ciprian
|
|
|
|
-----------------------------------------------------------
|
|
|
|
|
2018-11-18 16:11:36 +00:00
|
|
|
kawipiko-server
|
2018-11-18 15:50:08 +00:00
|
|
|
|
|
|
|
--archive <path>
|
|
|
|
--archive-inmem (memory-loaded archive file)
|
|
|
|
--archive-mmap (memory-mapped archive file)
|
|
|
|
--archive-preload (preload archive file)
|
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
--index-all
|
|
|
|
--index-paths
|
|
|
|
--index-data-meta
|
|
|
|
--index-data-content
|
|
|
|
|
2018-11-18 15:50:08 +00:00
|
|
|
--bind <ip>:<port>
|
|
|
|
|
|
|
|
--processes <count> (of slave processes)
|
|
|
|
--threads <count> (of threads per process)
|
|
|
|
|
|
|
|
--profile-cpu <path>
|
|
|
|
--profile-mem <path>
|
|
|
|
|
|
|
|
--debug
|
2019-08-12 10:37:46 +00:00
|
|
|
--dummy
|
2018-11-18 15:50:08 +00:00
|
|
|
|
2019-08-11 17:30:27 +00:00
|
|
|
** for details see:
|
|
|
|
https://github.com/volution/kawipiko#kawipiko-server
|
|
|
|
|
2018-11-15 18:17:52 +00:00
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
|
|
|
_bind_0 := _flags.String ("bind", "", "")
|
2019-08-12 10:37:46 +00:00
|
|
|
_archivePath_0 := _flags.String ("archive", "", "")
|
2018-11-15 18:17:52 +00:00
|
|
|
_archiveInmem_0 := _flags.Bool ("archive-inmem", false, "")
|
|
|
|
_archiveMmap_0 := _flags.Bool ("archive-mmap", false, "")
|
|
|
|
_archivePreload_0 := _flags.Bool ("archive-preload", false, "")
|
2018-11-20 14:11:47 +00:00
|
|
|
_indexAll_0 := _flags.Bool ("index-all", false, "")
|
|
|
|
_indexPaths_0 := _flags.Bool ("index-paths", false, "")
|
|
|
|
_indexDataMeta_0 := _flags.Bool ("index-data-meta", false, "")
|
|
|
|
_indexDataContent_0 := _flags.Bool ("index-data-content", false, "")
|
2018-11-13 19:04:42 +00:00
|
|
|
_processes_0 := _flags.Uint ("processes", 0, "")
|
|
|
|
_threads_0 := _flags.Uint ("threads", 0, "")
|
2018-11-15 18:34:24 +00:00
|
|
|
_slave_0 := _flags.Uint ("slave", 0, "")
|
2018-11-15 18:17:52 +00:00
|
|
|
_profileCpu_0 := _flags.String ("profile-cpu", "", "")
|
|
|
|
_profileMem_0 := _flags.String ("profile-mem", "", "")
|
2018-11-09 00:47:14 +00:00
|
|
|
_debug_0 := _flags.Bool ("debug", false, "")
|
2019-08-12 10:37:46 +00:00
|
|
|
_dummy_0 := _flags.Bool ("dummy", false, "")
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
FlagsParse (_flags, 0, 0)
|
|
|
|
|
|
|
|
_bind = *_bind_0
|
2019-08-12 10:37:46 +00:00
|
|
|
_archivePath = *_archivePath_0
|
2018-11-13 17:42:55 +00:00
|
|
|
_archiveInmem = *_archiveInmem_0
|
2018-11-13 19:04:42 +00:00
|
|
|
_archiveMmap = *_archiveMmap_0
|
2018-11-13 17:42:55 +00:00
|
|
|
_archivePreload = *_archivePreload_0
|
2018-11-20 14:11:47 +00:00
|
|
|
_indexAll := *_indexAll_0
|
|
|
|
_indexPaths = _indexAll || *_indexPaths_0
|
|
|
|
_indexDataMeta = _indexAll || *_indexDataMeta_0
|
|
|
|
_indexDataContent = _indexAll || *_indexDataContent_0
|
2018-11-13 19:04:42 +00:00
|
|
|
_processes = *_processes_0
|
|
|
|
_threads = *_threads_0
|
2018-11-15 18:34:24 +00:00
|
|
|
_slave = *_slave_0
|
2018-11-09 00:47:14 +00:00
|
|
|
_debug = *_debug_0
|
2019-08-12 10:37:46 +00:00
|
|
|
_dummy = *_dummy_0
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
_profileCpu = *_profileCpu_0
|
|
|
|
_profileMem = *_profileMem_0
|
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
if _bind == "" {
|
2018-11-13 17:42:55 +00:00
|
|
|
AbortError (nil, "[6edd9512] expected bind address argument!")
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2019-08-12 10:37:46 +00:00
|
|
|
if !_dummy {
|
|
|
|
if _archivePath == "" {
|
|
|
|
AbortError (nil, "[eefe1a38] expected archive file argument!")
|
|
|
|
}
|
|
|
|
if _archiveInmem && _archiveMmap {
|
|
|
|
AbortError (nil, "[a2101041] archive 'memory-loaded' and 'memory-mapped' are mutually exclusive!")
|
|
|
|
}
|
|
|
|
if _archiveInmem && _archivePreload {
|
|
|
|
log.Printf ("[ww] [3e8a40e4] archive 'memory-loaded' implies preloading!\n")
|
|
|
|
_archivePreload = false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Printf ("[ww] [8e014192] running in dummy mode; all archive related arguments are ignored!\n")
|
|
|
|
_archivePath = ""
|
|
|
|
_archiveInmem = false
|
|
|
|
_archiveMmap = false
|
2018-11-13 17:42:55 +00:00
|
|
|
_archivePreload = false
|
2019-08-12 10:37:46 +00:00
|
|
|
_indexAll = false
|
|
|
|
_indexPaths = false
|
|
|
|
_indexDataMeta = false
|
|
|
|
_indexDataContent = false
|
2018-11-13 17:42:55 +00:00
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
|
|
|
|
if (_processes > 1) && ((_profileCpu != "") || (_profileMem != "")) {
|
|
|
|
AbortError (nil, "[cd18d250] multi-process and profiling are mutually exclusive!")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _processes < 1 {
|
|
|
|
_processes = 1
|
|
|
|
}
|
|
|
|
if _threads < 1 {
|
|
|
|
_threads = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
runtime.GOMAXPROCS (int (_threads))
|
|
|
|
|
2018-11-14 00:00:59 +00:00
|
|
|
debug.SetGCPercent (50)
|
|
|
|
debug.SetMaxThreads (128)
|
2018-11-14 17:51:13 +00:00
|
|
|
debug.SetMaxStack (16 * 1024)
|
2018-11-14 00:00:59 +00:00
|
|
|
|
|
|
|
_httpServerReduceMemory := false
|
|
|
|
|
|
|
|
if false {
|
|
|
|
if _error := syscall.Setrlimit (syscall.RLIMIT_DATA, & syscall.Rlimit { Max : 4 * 1024 * 1024 * 1024 }); _error != nil {
|
|
|
|
AbortError (_error, "[f661b4fe] failed to configure limits!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-13 19:04:42 +00:00
|
|
|
|
|
|
|
if _processes > 1 {
|
|
|
|
|
|
|
|
log.Printf ("[ii] [06f8c944] sub-processes starting (`%d` processes with `%d` threads each)...\n", _processes, _threads)
|
|
|
|
|
|
|
|
_processesJoin := & sync.WaitGroup {}
|
|
|
|
|
|
|
|
_processesPid := make ([]*os.Process, _processes)
|
|
|
|
|
|
|
|
_processName := os.Args[0]
|
|
|
|
_processArguments := make ([]string, 0, len (os.Args))
|
|
|
|
_processArguments = append (_processArguments,
|
|
|
|
"--bind", _bind,
|
|
|
|
)
|
2019-08-12 10:37:46 +00:00
|
|
|
if _archivePath != "" {
|
|
|
|
_processArguments = append (_processArguments, "--archive", _archivePath)
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
if _archiveInmem {
|
|
|
|
_processArguments = append (_processArguments, "--archive-inmem")
|
|
|
|
}
|
|
|
|
if _archiveMmap {
|
|
|
|
_processArguments = append (_processArguments, "--archive-mmap")
|
|
|
|
}
|
|
|
|
if _archivePreload {
|
|
|
|
_processArguments = append (_processArguments, "--archive-preload")
|
|
|
|
}
|
|
|
|
if _debug {
|
|
|
|
_processArguments = append (_processArguments, "--debug")
|
|
|
|
}
|
2019-08-12 10:37:46 +00:00
|
|
|
if _dummy {
|
|
|
|
_processArguments = append (_processArguments, "--dummy")
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
_processArguments = append (_processArguments, "--threads", fmt.Sprintf ("%d", _threads))
|
|
|
|
|
|
|
|
_processAttributes := & os.ProcAttr {
|
|
|
|
Env : []string {},
|
|
|
|
Files : []*os.File {
|
|
|
|
os.Stdin,
|
|
|
|
os.Stdout,
|
|
|
|
os.Stderr,
|
|
|
|
},
|
|
|
|
Sys : nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _processIndex, _ := range _processesPid {
|
2018-11-15 18:34:24 +00:00
|
|
|
_processArguments := append ([]string { _processName, "--slave", fmt.Sprintf ("%d", _processIndex + 1) }, _processArguments ...)
|
2018-11-13 19:04:42 +00:00
|
|
|
if _processPid, _error := os.StartProcess (_processName, _processArguments, _processAttributes); _error == nil {
|
|
|
|
_processesJoin.Add (1)
|
|
|
|
_processesPid[_processIndex] = _processPid
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [63cb22f8] sub-process `%d` started (with `%d` threads);\n", _processPid.Pid, _threads)
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
go func (_index int, _processPid *os.Process) () {
|
|
|
|
if _processStatus, _error := _processPid.Wait (); _error == nil {
|
|
|
|
if _processStatus.Success () {
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [66b60b81] sub-process `%d` succeeded;\n", _processPid.Pid)
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
} else {
|
|
|
|
log.Printf ("[ww] [5d25046b] sub-process `%d` failed: `%s`; ignoring!\n", _processPid.Pid, _processStatus)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LogError (_error, fmt.Sprintf ("[f1bfc927] failed waiting for sub-process `%d`; ignoring!", _processPid.Pid))
|
|
|
|
}
|
|
|
|
_processesPid[_processIndex] = nil
|
|
|
|
_processesJoin.Done ()
|
|
|
|
} (_processIndex, _processPid)
|
|
|
|
} else {
|
|
|
|
LogError (_error, "[8892b34d] failed starting sub-process; ignoring!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
_signals := make (chan os.Signal, 32)
|
|
|
|
signal.Notify (_signals, syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
go func () () {
|
|
|
|
for {
|
|
|
|
_signal := <- _signals
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [a9243ecb] signaling sub-processes...\n")
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
for _, _processPid := range _processesPid {
|
|
|
|
if _processPid != nil {
|
|
|
|
if _error := _processPid.Signal (_signal); _error != nil {
|
|
|
|
LogError (_error, fmt.Sprintf ("[ab681164] failed signaling sub-process `%d`; ignoring!", _processPid.Pid))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} ()
|
|
|
|
}
|
|
|
|
|
|
|
|
_processesJoin.Wait ()
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [b949bafc] sub-processes terminated;\n")
|
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
|
|
|
|
return nil
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _slave <= 1 {
|
|
|
|
_isFirst = true
|
|
|
|
}
|
|
|
|
if _slave == 0 {
|
|
|
|
log.Printf ("[ii] [6602a54a] starting (with `%d` threads)...\n", _threads)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
var _cdbReader *cdb.CDB
|
2019-08-12 10:37:46 +00:00
|
|
|
if _archivePath != "" {
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug || _isFirst {
|
2019-08-12 10:37:46 +00:00
|
|
|
log.Printf ("[ii] [3b788396] opening archive file `%s`...\n", _archivePath)
|
2018-11-15 18:34:24 +00:00
|
|
|
}
|
2018-11-13 19:04:42 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
var _cdbFile *os.File
|
2019-08-12 10:37:46 +00:00
|
|
|
if _cdbFile_0, _error := os.Open (_archivePath); _error == nil {
|
2018-11-13 15:39:26 +00:00
|
|
|
_cdbFile = _cdbFile_0
|
2018-11-09 14:22:44 +00:00
|
|
|
} else {
|
2018-11-13 17:42:55 +00:00
|
|
|
AbortError (_error, "[9e0b5ed3] failed opening archive file!")
|
|
|
|
}
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
var _cdbFileSize int
|
|
|
|
{
|
|
|
|
var _cdbFileSize_0 int64
|
|
|
|
if _cdbFileStat, _error := _cdbFile.Stat (); _error == nil {
|
|
|
|
_cdbFileSize_0 = _cdbFileStat.Size ()
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[0ccf0a3b] failed opening archive file!")
|
|
|
|
}
|
|
|
|
if _cdbFileSize_0 < 1024 {
|
|
|
|
AbortError (nil, "[6635a2a8] failed opening archive: file is too small (or empty)!")
|
|
|
|
}
|
|
|
|
if _cdbFileSize_0 >= (2 * 1024 * 1024 * 1024) {
|
|
|
|
AbortError (nil, "[545bf6ce] failed opening archive: file is too large!")
|
|
|
|
}
|
|
|
|
_cdbFileSize = int (_cdbFileSize_0)
|
2018-11-09 14:22:44 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 17:42:55 +00:00
|
|
|
if _archivePreload {
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [13f4ebf7] preloading archive file...\n")
|
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
_buffer := [16 * 1024]byte {}
|
|
|
|
_loop : for {
|
|
|
|
switch _, _error := _cdbFile.Read (_buffer[:]); _error {
|
|
|
|
case io.EOF :
|
|
|
|
break _loop
|
|
|
|
case nil :
|
|
|
|
continue _loop
|
|
|
|
default :
|
|
|
|
AbortError (_error, "[a1c3b922] failed preloading archive file...\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if _archiveInmem || _archiveMmap {
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
var _cdbData []byte
|
2018-11-13 17:42:55 +00:00
|
|
|
|
|
|
|
if _archiveInmem {
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [216e584b] opening memory-loaded archive...\n")
|
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
|
|
|
_cdbData = make ([]byte, _cdbFileSize)
|
|
|
|
if _, _error := io.ReadFull (_cdbFile, _cdbData); _error != nil {
|
|
|
|
AbortError (_error, "[73039784] failed loading archive file!")
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if _archiveMmap {
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [f47fae8a] opening memory-mapped archive...\n")
|
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
|
|
|
if _cdbData_0, _error := syscall.Mmap (int (_cdbFile.Fd ()), 0, int (_cdbFileSize), syscall.PROT_READ, syscall.MAP_SHARED); _error == nil {
|
|
|
|
_cdbData = _cdbData_0
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[c0e2632c] failed mapping archive file!")
|
|
|
|
}
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
if _archivePreload {
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [d96b06c9] preloading memory-loaded archive...\n")
|
|
|
|
}
|
2018-11-15 17:11:34 +00:00
|
|
|
_buffer := [16 * 1024]byte {}
|
|
|
|
_bufferOffset := 0
|
|
|
|
for {
|
|
|
|
if _bufferOffset == _cdbFileSize {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
_bufferOffset += copy (_buffer[:], _cdbData[_bufferOffset:])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 14:22:44 +00:00
|
|
|
} else {
|
2018-11-13 17:42:55 +00:00
|
|
|
panic ("e4fffcd8")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _error := _cdbFile.Close (); _error != nil {
|
|
|
|
AbortError (_error, "[5e0449c2] failed closing archive file!")
|
2018-11-09 14:22:44 +00:00
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
if _cdbReader_0, _error := cdb.NewFromBufferWithHasher (_cdbData, nil); _error == nil {
|
|
|
|
_cdbReader = _cdbReader_0
|
|
|
|
} else {
|
2018-11-13 17:42:55 +00:00
|
|
|
AbortError (_error, "[27e4813e] failed opening archive!")
|
2018-11-13 15:39:26 +00:00
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2018-11-09 14:22:44 +00:00
|
|
|
} else {
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug || _isFirst {
|
|
|
|
log.Printf ("[ww] [dd697a66] using `read`-based archive (with significant performance impact)!\n")
|
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
if _cdbReader_0, _error := cdb.NewFromReaderWithHasher (_cdbFile, nil); _error == nil {
|
|
|
|
_cdbReader = _cdbReader_0
|
|
|
|
} else {
|
2018-11-13 17:42:55 +00:00
|
|
|
AbortError (_error, "[35832022] failed opening archive!")
|
2018-11-13 15:39:26 +00:00
|
|
|
}
|
2018-11-13 17:42:55 +00:00
|
|
|
|
2018-11-09 14:22:44 +00:00
|
|
|
}
|
2019-08-12 10:37:46 +00:00
|
|
|
|
|
|
|
if _schemaVersion, _error := _cdbReader.GetWithCdbHash ([]byte (NamespaceSchemaVersion)); _error == nil {
|
|
|
|
if _schemaVersion == nil {
|
|
|
|
AbortError (nil, "[09316866] missing archive schema version!")
|
|
|
|
} else if string (_schemaVersion) != CurrentSchemaVersion {
|
|
|
|
AbortError (nil, "[e6482cf7] invalid archive schema version!")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[87cae197] failed opening archive!")
|
2018-11-20 12:21:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-12 10:37:46 +00:00
|
|
|
|
2018-11-20 14:11:47 +00:00
|
|
|
var _cachedFileFingerprints map[string][]byte
|
|
|
|
if _indexPaths {
|
|
|
|
_cachedFileFingerprints = make (map[string][]byte, 128 * 1024)
|
|
|
|
}
|
|
|
|
var _cachedDataMeta map[string][]byte
|
|
|
|
if _indexDataMeta {
|
|
|
|
_cachedDataMeta = make (map[string][]byte, 128 * 1024)
|
|
|
|
}
|
|
|
|
var _cachedDataContent map[string][]byte
|
|
|
|
if _indexDataContent {
|
|
|
|
_cachedDataContent = make (map[string][]byte, 128 * 1024)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _indexPaths || _indexDataMeta || _indexDataContent {
|
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [fa5338fd] indexing archive...\n")
|
|
|
|
}
|
|
|
|
if _filesIndex, _error := _cdbReader.GetWithCdbHash ([]byte (NamespaceFilesIndex)); _error == nil {
|
|
|
|
if _filesIndex != nil {
|
|
|
|
_keyBuffer := [1024]byte {}
|
|
|
|
for {
|
|
|
|
_offset := bytes.IndexByte (_filesIndex, '\n')
|
|
|
|
if _offset == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if _offset == -1 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
_filePath := _filesIndex[: _offset]
|
|
|
|
_filesIndex = _filesIndex[_offset + 1 :]
|
|
|
|
var _fingerprints []byte
|
|
|
|
var _fingerprintContent []byte
|
|
|
|
var _fingerprintMeta []byte
|
|
|
|
{
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceFilesContent ...)
|
|
|
|
_key = append (_key, ':')
|
|
|
|
_key = append (_key, _filePath ...)
|
|
|
|
if _fingerprints_0, _error := _cdbReader.GetWithCdbHash (_key); _error == nil {
|
|
|
|
if _fingerprints_0 != nil {
|
|
|
|
_fingerprints = _fingerprints_0
|
|
|
|
_fingerprintContent = _fingerprints[0:64]
|
|
|
|
_fingerprintMeta = _fingerprints[65:129]
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[460b3cf1] failed indexing archive!")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[216f2075] failed indexing archive!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _indexPaths {
|
|
|
|
_cachedFileFingerprints[BytesToString (_filePath)] = _fingerprints
|
|
|
|
}
|
|
|
|
if _indexDataMeta {
|
|
|
|
if _, _wasCached := _cachedDataMeta[BytesToString (_fingerprintMeta)]; !_wasCached {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceDataMetadata ...)
|
|
|
|
_key = append (_key, ':')
|
|
|
|
_key = append (_key, _fingerprintMeta ...)
|
|
|
|
if _dataMeta, _error := _cdbReader.GetWithCdbHash (_key); _error == nil {
|
|
|
|
if _dataMeta != nil {
|
|
|
|
_cachedDataMeta[BytesToString (_fingerprintMeta)] = _dataMeta
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[6df556bf] failed indexing archive!")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[0d730134] failed indexing archive!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _indexDataContent {
|
|
|
|
if _, _wasCached := _cachedDataContent[BytesToString (_fingerprintContent)]; !_wasCached {
|
|
|
|
_key := _keyBuffer[:0]
|
|
|
|
_key = append (_key, NamespaceDataContent ...)
|
|
|
|
_key = append (_key, ':')
|
|
|
|
_key = append (_key, _fingerprintContent ...)
|
|
|
|
if _dataContent, _error := _cdbReader.GetWithCdbHash (_key); _error == nil {
|
|
|
|
if _dataContent != nil {
|
|
|
|
_cachedDataContent[BytesToString (_fingerprintContent)] = _dataContent
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[4e27fe46] failed indexing archive!")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[532845ad] failed indexing archive!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Printf ("[ww] [30314f31] missing archive files index; ignoring!\n")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[82299b3d] failed indexing arcdive!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-11 22:40:22 +00:00
|
|
|
if _indexPaths && _indexDataMeta && _indexDataContent {
|
|
|
|
if _error := _cdbReader.Close (); _error == nil {
|
|
|
|
_cdbReader = nil
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[d7aa79e1] failed closing archive!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
_server := & server {
|
2018-11-13 15:39:26 +00:00
|
|
|
httpServer : nil,
|
2018-11-09 00:47:14 +00:00
|
|
|
cdbReader : _cdbReader,
|
2018-11-20 14:11:47 +00:00
|
|
|
cachedFileFingerprints : _cachedFileFingerprints,
|
|
|
|
cachedDataMeta : _cachedDataMeta,
|
|
|
|
cachedDataContent : _cachedDataContent,
|
2018-11-09 00:47:14 +00:00
|
|
|
debug : _debug,
|
2019-08-12 10:37:46 +00:00
|
|
|
dummy : _dummy,
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
|
|
|
|
if _profileCpu != "" {
|
2018-11-13 17:42:55 +00:00
|
|
|
log.Printf ("[ii] [70c210f3] profiling CPU to `%s`...\n", _profileCpu)
|
2018-11-13 15:39:26 +00:00
|
|
|
_stream, _error := os.Create (_profileCpu)
|
|
|
|
if _error != nil {
|
|
|
|
AbortError (_error, "[fd4e0009] failed opening CPU profile!")
|
|
|
|
}
|
|
|
|
_error = pprof.StartCPUProfile (_stream)
|
|
|
|
if _error != nil {
|
|
|
|
AbortError (_error, "[ac721629] failed starting CPU profile!")
|
|
|
|
}
|
|
|
|
defer pprof.StopCPUProfile ()
|
|
|
|
}
|
|
|
|
if _profileMem != "" {
|
|
|
|
log.Printf ("[ii] [9196ee90] profiling MEM to `%s`...\n", _profileMem)
|
|
|
|
_stream, _error := os.Create (_profileMem)
|
|
|
|
if _error != nil {
|
|
|
|
AbortError (_error, "[907d08b5] failed opening MEM profile!")
|
|
|
|
}
|
|
|
|
_profile := pprof.Lookup ("heap")
|
2018-11-13 19:04:42 +00:00
|
|
|
defer func () () {
|
2018-11-13 15:39:26 +00:00
|
|
|
runtime.GC ()
|
|
|
|
if _profile != nil {
|
|
|
|
if _error := _profile.WriteTo (_stream, 0); _error != nil {
|
|
|
|
AbortError (_error, "[4b1e5112] failed writing MEM profile!")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AbortError (nil, "[385dc8f0] failed loading MEM profile!")
|
|
|
|
}
|
|
|
|
_stream.Close ()
|
|
|
|
} ()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_httpServer := & fasthttp.Server {
|
2018-11-13 18:04:05 +00:00
|
|
|
|
2018-11-18 16:11:36 +00:00
|
|
|
Name : "kawipiko",
|
2018-11-15 17:11:34 +00:00
|
|
|
Handler : _server.Serve,
|
2018-11-13 18:04:05 +00:00
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
NoDefaultServerHeader : true,
|
|
|
|
NoDefaultContentType : true,
|
2018-11-13 18:04:05 +00:00
|
|
|
DisableHeaderNamesNormalizing : true,
|
|
|
|
|
2019-05-16 19:15:40 +00:00
|
|
|
Concurrency : 4 * 1024 + 128,
|
2018-11-14 00:00:59 +00:00
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
ReadBufferSize : 2 * 1024,
|
|
|
|
WriteBufferSize : 2 * 1024,
|
2018-11-13 18:04:05 +00:00
|
|
|
|
2019-05-16 19:15:40 +00:00
|
|
|
ReadTimeout : 30 * time.Second,
|
|
|
|
WriteTimeout : 30 * time.Second,
|
2018-11-14 00:00:59 +00:00
|
|
|
MaxKeepaliveDuration : 360 * time.Second,
|
|
|
|
MaxRequestsPerConn : 256 * 1024,
|
2018-11-15 17:11:34 +00:00
|
|
|
MaxRequestBodySize : 2 * 1024,
|
2018-11-14 00:00:59 +00:00
|
|
|
GetOnly : true,
|
2018-11-13 18:04:05 +00:00
|
|
|
|
|
|
|
TCPKeepalive : true,
|
2019-05-16 19:15:40 +00:00
|
|
|
TCPKeepalivePeriod : 60 * time.Second,
|
2018-11-13 18:04:05 +00:00
|
|
|
|
2018-11-14 00:00:59 +00:00
|
|
|
ReduceMemoryUsage : _httpServerReduceMemory,
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 10:37:46 +00:00
|
|
|
if _dummy {
|
|
|
|
// _httpServer.Handler = _server.ServeDummy
|
|
|
|
_httpServer.Handler = ServeDummyRaw
|
|
|
|
}
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
_server.httpServer = _httpServer
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
_signals := make (chan os.Signal, 32)
|
|
|
|
signal.Notify (_signals, syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
go func () () {
|
|
|
|
<- _signals
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
log.Printf ("[ii] [691cb695] shutingdown...\n")
|
|
|
|
}
|
2018-11-13 15:39:26 +00:00
|
|
|
_server.httpServer.Shutdown ()
|
|
|
|
} ()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug || _isFirst {
|
|
|
|
log.Printf ("[ii] [f11e4e37] listening on `http://%s/`;\n", _bind)
|
|
|
|
}
|
2018-11-09 13:54:47 +00:00
|
|
|
|
2018-11-13 19:04:42 +00:00
|
|
|
var _httpListener net.Listener
|
|
|
|
if _httpListener_0, _error := reuseport.Listen ("tcp4", _bind); _error == nil {
|
|
|
|
_httpListener = _httpListener_0
|
|
|
|
} else {
|
|
|
|
AbortError (_error, "[d5f51e9f] failed starting listener!")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _error := _httpServer.Serve (_httpListener); _error != nil {
|
|
|
|
AbortError (_error, "[44f45c67] failed executing server!")
|
2018-11-09 00:47:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 15:39:26 +00:00
|
|
|
|
2018-11-15 18:34:24 +00:00
|
|
|
if _debug {
|
|
|
|
defer log.Printf ("[ii] [a49175db] done!\n")
|
|
|
|
}
|
2018-11-09 00:47:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|