mirror of https://github.com/perkeep/perkeep.git
506 lines
14 KiB
Go
506 lines
14 KiB
Go
/*
|
|
Copyright 2011 Google Inc.
|
|
|
|
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 serverconfig is responsible for mapping from a Camlistore
|
|
// configuration file and instantiating HTTP Handlers for all the
|
|
// necessary endpoints.
|
|
package serverconfig
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"expvar"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"net/http"
|
|
"net/http/pprof"
|
|
"os"
|
|
"runtime"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"camlistore.org/pkg/auth"
|
|
"camlistore.org/pkg/blobserver"
|
|
"camlistore.org/pkg/blobserver/handlers"
|
|
"camlistore.org/pkg/httputil"
|
|
"camlistore.org/pkg/importer"
|
|
"camlistore.org/pkg/jsonconfig"
|
|
)
|
|
|
|
const camliPrefix = "/camli/"
|
|
|
|
var ErrCamliPath = errors.New("Invalid Camlistore request path")
|
|
|
|
type handlerConfig struct {
|
|
prefix string // "/foo/"
|
|
htype string // "localdisk", etc
|
|
conf jsonconfig.Obj // never nil
|
|
|
|
settingUp, setupDone bool
|
|
}
|
|
|
|
type handlerLoader struct {
|
|
installer HandlerInstaller
|
|
baseURL string
|
|
config map[string]*handlerConfig // prefix -> config
|
|
handler map[string]interface{} // prefix -> http.Handler / func / blobserver.Storage
|
|
curPrefix string
|
|
closers []io.Closer
|
|
prefixStack []string
|
|
|
|
// optional context (for App Engine, the first request that
|
|
// started up the process). we may need this if setting up
|
|
// handlers involves doing datastore/memcache/blobstore
|
|
// lookups.
|
|
context *http.Request
|
|
}
|
|
|
|
// A HandlerInstaller is anything that can register an HTTP Handler at
|
|
// a prefix path. Both *http.ServeMux and camlistore.org/pkg/webserver.Server
|
|
// implement HandlerInstaller.
|
|
type HandlerInstaller interface {
|
|
Handle(path string, h http.Handler)
|
|
}
|
|
|
|
type storageAndConfig struct {
|
|
blobserver.Storage
|
|
config *blobserver.Config
|
|
}
|
|
|
|
func parseCamliPath(path string) (action string, err error) {
|
|
camIdx := strings.Index(path, camliPrefix)
|
|
if camIdx == -1 {
|
|
return "", ErrCamliPath
|
|
}
|
|
action = path[camIdx+len(camliPrefix):]
|
|
return
|
|
}
|
|
|
|
func unsupportedHandler(conn http.ResponseWriter, req *http.Request) {
|
|
httputil.BadRequestError(conn, "Unsupported camlistore path or method.")
|
|
}
|
|
|
|
func (s *storageAndConfig) Config() *blobserver.Config {
|
|
return s.config
|
|
}
|
|
|
|
// GetStorage returns the unwrapped blobserver.Storage interface value for
|
|
// callers to type-assert optional interface implementations on. (e.g. EnumeratorConfig)
|
|
func (s *storageAndConfig) GetStorage() blobserver.Storage {
|
|
return s.Storage
|
|
}
|
|
|
|
func camliHandlerUsingStorage(req *http.Request, action string, storage blobserver.StorageConfiger) (func(http.ResponseWriter, *http.Request), auth.Operation) {
|
|
handler := unsupportedHandler
|
|
op := auth.OpAll
|
|
switch req.Method {
|
|
case "GET", "HEAD":
|
|
switch action {
|
|
case "enumerate-blobs":
|
|
handler = handlers.CreateEnumerateHandler(storage).ServeHTTP
|
|
op = auth.OpGet
|
|
case "stat":
|
|
handler = handlers.CreateStatHandler(storage).ServeHTTP
|
|
default:
|
|
handler = handlers.CreateGetHandler(storage).ServeHTTP
|
|
op = auth.OpGet
|
|
}
|
|
case "POST":
|
|
switch action {
|
|
case "stat":
|
|
handler = handlers.CreateStatHandler(storage).ServeHTTP
|
|
op = auth.OpStat
|
|
case "upload":
|
|
handler = handlers.CreateUploadHandler(storage).ServeHTTP
|
|
op = auth.OpUpload
|
|
case "remove":
|
|
handler = handlers.CreateRemoveHandler(storage).ServeHTTP
|
|
}
|
|
}
|
|
return handler, op
|
|
}
|
|
|
|
// where prefix is like "/" or "/s3/" for e.g. "/camli/" or "/s3/camli/*"
|
|
func makeCamliHandler(prefix, baseURL string, storage blobserver.Storage, hf blobserver.FindHandlerByTyper) http.Handler {
|
|
if !strings.HasSuffix(prefix, "/") {
|
|
panic("expected prefix to end in slash")
|
|
}
|
|
baseURL = strings.TrimRight(baseURL, "/")
|
|
|
|
canLongPoll := true
|
|
// TODO(bradfitz): set to false if this is App Engine, or provide some way to disable
|
|
|
|
storageConfig := &storageAndConfig{
|
|
storage,
|
|
&blobserver.Config{
|
|
Writable: true,
|
|
Readable: true,
|
|
Deletable: false,
|
|
URLBase: baseURL + prefix[:len(prefix)-1],
|
|
CanLongPoll: canLongPoll,
|
|
HandlerFinder: hf,
|
|
},
|
|
}
|
|
return http.HandlerFunc(func(conn http.ResponseWriter, req *http.Request) {
|
|
action, err := parseCamliPath(req.URL.Path[len(prefix)-1:])
|
|
if err != nil {
|
|
log.Printf("Invalid request for method %q, path %q",
|
|
req.Method, req.URL.Path)
|
|
unsupportedHandler(conn, req)
|
|
return
|
|
}
|
|
handler := auth.RequireAuth(camliHandlerUsingStorage(req, action, storageConfig))
|
|
handler(conn, req)
|
|
})
|
|
}
|
|
|
|
func (hl *handlerLoader) FindHandlerByType(htype string) (prefix string, handler interface{}, err error) {
|
|
nFound := 0
|
|
for pfx, config := range hl.config {
|
|
if config.htype == htype {
|
|
nFound++
|
|
prefix, handler = pfx, hl.handler[pfx]
|
|
}
|
|
}
|
|
if nFound == 0 {
|
|
return "", nil, blobserver.ErrHandlerTypeNotFound
|
|
}
|
|
if htype == "jsonsign" && nFound > 1 {
|
|
// TODO: do this for all handler types later? audit
|
|
// callers of FindHandlerByType and see if that's
|
|
// feasible. For now I'm only paranoid about jsonsign.
|
|
return "", nil, fmt.Errorf("%d handlers found of type %q; ambiguous", nFound, htype)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (hl *handlerLoader) setupAll() {
|
|
for prefix := range hl.config {
|
|
hl.setupHandler(prefix)
|
|
}
|
|
}
|
|
|
|
func (hl *handlerLoader) configType(prefix string) string {
|
|
if h, ok := hl.config[prefix]; ok {
|
|
return h.htype
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (hl *handlerLoader) getOrSetup(prefix string) interface{} {
|
|
hl.setupHandler(prefix)
|
|
return hl.handler[prefix]
|
|
}
|
|
|
|
func (hl *handlerLoader) MyPrefix() string {
|
|
return hl.curPrefix
|
|
}
|
|
|
|
func (hl *handlerLoader) GetStorage(prefix string) (blobserver.Storage, error) {
|
|
hl.setupHandler(prefix)
|
|
if s, ok := hl.handler[prefix].(blobserver.Storage); ok {
|
|
return s, nil
|
|
}
|
|
return nil, fmt.Errorf("bogus storage handler referenced as %q", prefix)
|
|
}
|
|
|
|
func (hl *handlerLoader) GetHandler(prefix string) (interface{}, error) {
|
|
hl.setupHandler(prefix)
|
|
if s, ok := hl.handler[prefix].(blobserver.Storage); ok {
|
|
return s, nil
|
|
}
|
|
if h, ok := hl.handler[prefix].(http.Handler); ok {
|
|
return h, nil
|
|
}
|
|
return nil, fmt.Errorf("bogus http or storage handler referenced as %q", prefix)
|
|
}
|
|
|
|
func (hl *handlerLoader) GetHandlerType(prefix string) string {
|
|
return hl.configType(prefix)
|
|
}
|
|
|
|
func exitFailure(pattern string, args ...interface{}) {
|
|
if !strings.HasSuffix(pattern, "\n") {
|
|
pattern = pattern + "\n"
|
|
}
|
|
panic(fmt.Sprintf(pattern, args...))
|
|
}
|
|
|
|
func (hl *handlerLoader) setupHandler(prefix string) {
|
|
h, ok := hl.config[prefix]
|
|
if !ok {
|
|
exitFailure("invalid reference to undefined handler %q", prefix)
|
|
}
|
|
if h.setupDone {
|
|
// Already setup by something else reference it and forcing it to be
|
|
// setup before the bottom loop got to it.
|
|
return
|
|
}
|
|
hl.prefixStack = append(hl.prefixStack, prefix)
|
|
if h.settingUp {
|
|
buf := make([]byte, 1024)
|
|
buf = buf[:runtime.Stack(buf, false)]
|
|
exitFailure("loop in configuration graph; %q tried to load itself indirectly: %q\nStack:\n%s",
|
|
prefix, hl.prefixStack, buf)
|
|
}
|
|
h.settingUp = true
|
|
defer func() {
|
|
// log.Printf("Configured handler %q", prefix)
|
|
h.setupDone = true
|
|
hl.prefixStack = hl.prefixStack[:len(hl.prefixStack)-1]
|
|
r := recover()
|
|
if r == nil {
|
|
if hl.handler[prefix] == nil {
|
|
panic(fmt.Sprintf("setupHandler for %q didn't install a handler", prefix))
|
|
}
|
|
} else {
|
|
panic(r)
|
|
}
|
|
}()
|
|
|
|
hl.curPrefix = prefix
|
|
|
|
if strings.HasPrefix(h.htype, "storage-") {
|
|
stype := strings.TrimPrefix(h.htype, "storage-")
|
|
// Assume a storage interface
|
|
pstorage, err := blobserver.CreateStorage(stype, hl, h.conf)
|
|
if err != nil {
|
|
exitFailure("error instantiating storage for prefix %q, type %q: %v",
|
|
h.prefix, stype, err)
|
|
}
|
|
hl.handler[h.prefix] = pstorage
|
|
hl.installer.Handle(prefix+"camli/", makeCamliHandler(prefix, hl.baseURL, pstorage, hl))
|
|
if cl, ok := pstorage.(blobserver.ShutdownStorage); ok {
|
|
hl.closers = append(hl.closers, cl)
|
|
}
|
|
return
|
|
}
|
|
|
|
var hh http.Handler
|
|
|
|
if strings.HasPrefix(h.htype, "importer-") {
|
|
itype := strings.TrimPrefix(h.htype, "importer-")
|
|
imp, err := importer.Create(itype, hl, hl.baseURL+h.prefix, h.conf)
|
|
if err != nil {
|
|
exitFailure("error instantiating importer for prefix %q, type %q: %v",
|
|
h.prefix, itype, err)
|
|
}
|
|
hh = imp
|
|
} else {
|
|
var err error
|
|
hh, err = blobserver.CreateHandler(h.htype, hl, h.conf)
|
|
if err != nil {
|
|
exitFailure("error instantiating handler for prefix %q, type %q: %v",
|
|
h.prefix, h.htype, err)
|
|
}
|
|
}
|
|
|
|
hl.handler[prefix] = hh
|
|
var wrappedHandler http.Handler = &httputil.PrefixHandler{prefix, hh}
|
|
if handerTypeWantsAuth(h.htype) {
|
|
wrappedHandler = auth.Handler{wrappedHandler}
|
|
}
|
|
hl.installer.Handle(prefix, wrappedHandler)
|
|
}
|
|
|
|
func handerTypeWantsAuth(handlerType string) bool {
|
|
// TODO(bradfitz): ask the handler instead? This is a bit of a
|
|
// weird spot for this policy maybe?
|
|
switch handlerType {
|
|
case "ui", "search", "jsonsign", "sync", "status":
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// A Config is the wrapper around a Camlistore JSON configuration file.
|
|
// Files on disk can be in either high-level or low-level format, but
|
|
// the Load function always returns the Config in its low-level format.
|
|
type Config struct {
|
|
jsonconfig.Obj
|
|
UIPath string // Not valid until after InstallHandlers
|
|
configPath string // Filesystem path
|
|
}
|
|
|
|
// Load returns a low-level "handler config" from the provided filename.
|
|
// If the config file doesn't contain a top-level JSON key of "handlerConfig"
|
|
// with boolean value true, the configuration is assumed to be a high-level
|
|
// "user config" file, and transformed into a low-level config.
|
|
func Load(filename string) (*Config, error) {
|
|
obj, err := jsonconfig.ReadFile(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
conf := &Config{
|
|
Obj: obj,
|
|
configPath: filename,
|
|
}
|
|
|
|
if lowLevel := obj.OptionalBool("handlerConfig", false); !lowLevel {
|
|
conf, err = genLowLevelConfig(conf)
|
|
if err != nil {
|
|
return nil, fmt.Errorf(
|
|
"Failed to transform user config file %q into internal handler configuration: %v",
|
|
filename, err)
|
|
}
|
|
if v, _ := strconv.ParseBool(os.Getenv("CAMLI_DEBUG_CONFIG")); v {
|
|
jsconf, _ := json.MarshalIndent(conf.Obj, "", " ")
|
|
log.Printf("From high-level config, generated low-level config: %s", jsconf)
|
|
}
|
|
}
|
|
|
|
return conf, nil
|
|
}
|
|
|
|
func (config *Config) checkValidAuth() error {
|
|
authConfig := config.OptionalString("auth", "")
|
|
mode, err := auth.FromConfig(authConfig)
|
|
if err == nil {
|
|
auth.SetMode(mode)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// InstallHandlers creates and registers all the HTTP Handlers needed by config
|
|
// into the provided HandlerInstaller.
|
|
//
|
|
// baseURL is required and specifies the root of this webserver, without trailing slash.
|
|
// context may be nil (used and required by App Engine only)
|
|
//
|
|
// The returned shutdown value can be used to cleanly shut down the
|
|
// handlers.
|
|
func (config *Config) InstallHandlers(hi HandlerInstaller, baseURL string, context *http.Request) (shutdown io.Closer, err error) {
|
|
defer func() {
|
|
if e := recover(); e != nil {
|
|
log.Printf("Caught panic installer handlers: %v", e)
|
|
err = fmt.Errorf("Caught panic: %v", e)
|
|
}
|
|
}()
|
|
|
|
if err := config.checkValidAuth(); err != nil {
|
|
return nil, fmt.Errorf("error while configuring auth: %v", err)
|
|
}
|
|
prefixes := config.RequiredObject("prefixes")
|
|
if err := config.Validate(); err != nil {
|
|
return nil, fmt.Errorf("configuration error in root object's keys: %v", err)
|
|
}
|
|
|
|
hl := &handlerLoader{
|
|
installer: hi,
|
|
baseURL: baseURL,
|
|
config: make(map[string]*handlerConfig),
|
|
handler: make(map[string]interface{}),
|
|
context: context,
|
|
}
|
|
|
|
for prefix, vei := range prefixes {
|
|
if !strings.HasPrefix(prefix, "/") {
|
|
exitFailure("prefix %q doesn't start with /", prefix)
|
|
}
|
|
if !strings.HasSuffix(prefix, "/") {
|
|
exitFailure("prefix %q doesn't end with /", prefix)
|
|
}
|
|
pmap, ok := vei.(map[string]interface{})
|
|
if !ok {
|
|
exitFailure("prefix %q value is a %T, not an object", prefix, vei)
|
|
}
|
|
pconf := jsonconfig.Obj(pmap)
|
|
enabled := pconf.OptionalBool("enabled", true)
|
|
if !enabled {
|
|
continue
|
|
}
|
|
handlerType := pconf.RequiredString("handler")
|
|
handlerArgs := pconf.OptionalObject("handlerArgs")
|
|
if err := pconf.Validate(); err != nil {
|
|
exitFailure("configuration error in prefix %s: %v", prefix, err)
|
|
}
|
|
h := &handlerConfig{
|
|
prefix: prefix,
|
|
htype: handlerType,
|
|
conf: handlerArgs,
|
|
}
|
|
hl.config[prefix] = h
|
|
|
|
if handlerType == "ui" {
|
|
config.UIPath = prefix
|
|
}
|
|
}
|
|
hl.setupAll()
|
|
|
|
// Now that everything is setup, run any handlers' InitHandler
|
|
// methods.
|
|
for pfx, handler := range hl.handler {
|
|
if in, ok := handler.(blobserver.HandlerIniter); ok {
|
|
if err := in.InitHandler(hl); err != nil {
|
|
return nil, fmt.Errorf("Error calling InitHandler on %s: %v", pfx, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
if v, _ := strconv.ParseBool(os.Getenv("CAMLI_HTTP_EXPVAR")); v {
|
|
hi.Handle("/debug/vars", expvarHandler{})
|
|
}
|
|
if v, _ := strconv.ParseBool(os.Getenv("CAMLI_HTTP_PPROF")); v {
|
|
hi.Handle("/debug/pprof/", profileHandler{})
|
|
}
|
|
return multiCloser(hl.closers), nil
|
|
}
|
|
|
|
type multiCloser []io.Closer
|
|
|
|
func (s multiCloser) Close() (err error) {
|
|
for _, cl := range s {
|
|
if err1 := cl.Close(); err == nil && err1 != nil {
|
|
err = err1
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// expvarHandler publishes expvar stats.
|
|
type expvarHandler struct{}
|
|
|
|
func (expvarHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
fmt.Fprintf(w, "{\n")
|
|
first := true
|
|
expvar.Do(func(kv expvar.KeyValue) {
|
|
if !first {
|
|
fmt.Fprintf(w, ",\n")
|
|
}
|
|
first = false
|
|
fmt.Fprintf(w, "%q: %s", kv.Key, kv.Value)
|
|
})
|
|
fmt.Fprintf(w, "\n}\n")
|
|
}
|
|
|
|
// profileHandler publishes server profile information.
|
|
type profileHandler struct{}
|
|
|
|
func (profileHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
|
switch req.URL.Path {
|
|
case "/debug/pprof/cmdline":
|
|
pprof.Cmdline(rw, req)
|
|
case "/debug/pprof/profile":
|
|
pprof.Profile(rw, req)
|
|
case "/debug/pprof/symbol":
|
|
pprof.Symbol(rw, req)
|
|
default:
|
|
pprof.Index(rw, req)
|
|
}
|
|
}
|