2019-09-10 02:23:27 +08:00
|
|
|
|
// Copyright 2015 Matthew Holt and The Caddy 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 fastcgi
|
|
|
|
|
|
2019-09-11 04:16:41 +08:00
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
2019-09-18 05:16:17 +08:00
|
|
|
|
"net/http"
|
2019-09-11 04:16:41 +08:00
|
|
|
|
|
2019-12-11 04:36:46 +08:00
|
|
|
|
"github.com/caddyserver/caddy/v2"
|
2019-09-11 04:16:41 +08:00
|
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp/fileserver"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy"
|
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
httpcaddyfile.RegisterDirective("php_fastcgi", parsePHPFastCGI)
|
|
|
|
|
}
|
2019-09-10 02:23:27 +08:00
|
|
|
|
|
|
|
|
|
// UnmarshalCaddyfile deserializes Caddyfile tokens into h.
|
|
|
|
|
//
|
|
|
|
|
// transport fastcgi {
|
|
|
|
|
// root <path>
|
|
|
|
|
// split <at>
|
|
|
|
|
// env <key> <value>
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
func (t *Transport) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
|
2019-09-11 09:21:52 +08:00
|
|
|
|
for d.Next() {
|
|
|
|
|
for d.NextBlock(0) {
|
|
|
|
|
switch d.Val() {
|
|
|
|
|
case "root":
|
|
|
|
|
if !d.NextArg() {
|
|
|
|
|
return d.ArgErr()
|
|
|
|
|
}
|
|
|
|
|
t.Root = d.Val()
|
2019-09-10 02:23:27 +08:00
|
|
|
|
|
2019-09-11 09:21:52 +08:00
|
|
|
|
case "split":
|
|
|
|
|
if !d.NextArg() {
|
|
|
|
|
return d.ArgErr()
|
|
|
|
|
}
|
|
|
|
|
t.SplitPath = d.Val()
|
2019-09-10 02:23:27 +08:00
|
|
|
|
|
2019-09-11 09:21:52 +08:00
|
|
|
|
case "env":
|
|
|
|
|
args := d.RemainingArgs()
|
|
|
|
|
if len(args) != 2 {
|
|
|
|
|
return d.ArgErr()
|
|
|
|
|
}
|
|
|
|
|
if t.EnvVars == nil {
|
|
|
|
|
t.EnvVars = make(map[string]string)
|
|
|
|
|
}
|
|
|
|
|
t.EnvVars[args[0]] = args[1]
|
2019-09-10 02:23:27 +08:00
|
|
|
|
|
2019-09-11 09:21:52 +08:00
|
|
|
|
default:
|
|
|
|
|
return d.Errf("unrecognized subdirective %s", d.Val())
|
|
|
|
|
}
|
2019-09-10 02:23:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2019-09-11 04:16:41 +08:00
|
|
|
|
|
|
|
|
|
// parsePHPFastCGI parses the php_fastcgi directive, which has the same syntax
|
|
|
|
|
// as the reverse_proxy directive (in fact, the reverse_proxy's directive
|
|
|
|
|
// Unmarshaler is invoked by this function) but the resulting proxy is specially
|
|
|
|
|
// configured for most™️ PHP apps over FastCGI. A line such as this:
|
|
|
|
|
//
|
|
|
|
|
// php_fastcgi localhost:7777
|
|
|
|
|
//
|
|
|
|
|
// is equivalent to:
|
|
|
|
|
//
|
2020-01-10 05:38:59 +08:00
|
|
|
|
// @canonicalPath {
|
2019-09-11 04:16:41 +08:00
|
|
|
|
// file {
|
2019-10-29 05:08:45 +08:00
|
|
|
|
// try_files {path}/index.php
|
|
|
|
|
// }
|
|
|
|
|
// not {
|
|
|
|
|
// path */
|
2019-09-11 04:16:41 +08:00
|
|
|
|
// }
|
|
|
|
|
// }
|
2020-01-10 05:38:59 +08:00
|
|
|
|
// redir @canonicalPath {path}/ 308
|
2019-10-29 05:08:45 +08:00
|
|
|
|
//
|
|
|
|
|
// try_files {path} {path}/index.php index.php
|
2019-09-11 04:16:41 +08:00
|
|
|
|
//
|
2020-01-10 05:38:59 +08:00
|
|
|
|
// @phpFiles {
|
2019-09-11 04:16:41 +08:00
|
|
|
|
// path *.php
|
|
|
|
|
// }
|
2020-01-10 05:38:59 +08:00
|
|
|
|
// reverse_proxy @phpFiles localhost:7777 {
|
2019-09-11 04:16:41 +08:00
|
|
|
|
// transport fastcgi {
|
|
|
|
|
// split .php
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// Thus, this directive produces multiple routes, each with a different
|
|
|
|
|
// matcher because multiple consecutive routes are necessary to support
|
|
|
|
|
// the common PHP use case. If this "common" config is not compatible
|
2019-10-29 05:08:45 +08:00
|
|
|
|
// with a user's PHP requirements, they can use a manual approach based
|
|
|
|
|
// on the example above to configure it precisely as they need.
|
2019-09-11 04:16:41 +08:00
|
|
|
|
//
|
|
|
|
|
// If a matcher is specified by the user, for example:
|
|
|
|
|
//
|
|
|
|
|
// php_fastcgi /subpath localhost:7777
|
|
|
|
|
//
|
|
|
|
|
// then the resulting routes are wrapped in a subroute that uses the
|
2019-12-18 01:14:04 +08:00
|
|
|
|
// user's matcher as a prerequisite to enter the subroute. In other
|
|
|
|
|
// words, the directive's matcher is necessary, but not sufficient.
|
2019-09-11 04:16:41 +08:00
|
|
|
|
func parsePHPFastCGI(h httpcaddyfile.Helper) ([]httpcaddyfile.ConfigValue, error) {
|
|
|
|
|
if !h.Next() {
|
|
|
|
|
return nil, h.ArgErr()
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-18 05:16:17 +08:00
|
|
|
|
// route to redirect to canonical path if index PHP file
|
2019-12-11 04:36:46 +08:00
|
|
|
|
redirMatcherSet := caddy.ModuleMap{
|
2019-09-18 05:16:17 +08:00
|
|
|
|
"file": h.JSON(fileserver.MatchFile{
|
|
|
|
|
TryFiles: []string{"{http.request.uri.path}/index.php"},
|
2019-12-13 06:27:09 +08:00
|
|
|
|
}),
|
2019-09-18 05:16:17 +08:00
|
|
|
|
"not": h.JSON(caddyhttp.MatchNegate{
|
2019-12-11 04:36:46 +08:00
|
|
|
|
MatchersRaw: caddy.ModuleMap{
|
2019-12-13 06:27:09 +08:00
|
|
|
|
"path": h.JSON(caddyhttp.MatchPath{"*/"}),
|
2019-09-18 05:16:17 +08:00
|
|
|
|
},
|
2019-12-13 06:27:09 +08:00
|
|
|
|
}),
|
2019-09-18 05:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
redirHandler := caddyhttp.StaticResponse{
|
|
|
|
|
StatusCode: caddyhttp.WeakString("308"),
|
|
|
|
|
Headers: http.Header{"Location": []string{"{http.request.uri.path}/"}},
|
|
|
|
|
}
|
|
|
|
|
redirRoute := caddyhttp.Route{
|
2019-12-11 04:36:46 +08:00
|
|
|
|
MatcherSetsRaw: []caddy.ModuleMap{redirMatcherSet},
|
2019-09-18 05:16:17 +08:00
|
|
|
|
HandlersRaw: []json.RawMessage{caddyconfig.JSONModuleObject(redirHandler, "handler", "static_response", nil)},
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-11 04:16:41 +08:00
|
|
|
|
// route to rewrite to PHP index file
|
2019-12-11 04:36:46 +08:00
|
|
|
|
rewriteMatcherSet := caddy.ModuleMap{
|
2019-09-11 04:16:41 +08:00
|
|
|
|
"file": h.JSON(fileserver.MatchFile{
|
2019-09-18 05:16:17 +08:00
|
|
|
|
TryFiles: []string{"{http.request.uri.path}", "{http.request.uri.path}/index.php", "index.php"},
|
2019-12-13 06:27:09 +08:00
|
|
|
|
}),
|
2019-09-11 04:16:41 +08:00
|
|
|
|
}
|
|
|
|
|
rewriteHandler := rewrite.Rewrite{
|
http: Change routes to sequential matcher evaluation (#2967)
Previously, all matchers in a route would be evaluated before any
handlers were executed, and a composite route of the matching routes
would be created. This made rewrites especially tricky, since the only
way to defer later matchers' evaluation was to wrap them in a subroute,
or to invoke a "rehandle" which often caused bugs.
Instead, this new sequential design evaluates each route's matchers then
its handlers in lock-step; matcher-handlers-matcher-handlers...
If the first matching route consists of a rewrite, then the second route
will be evaluated against the rewritten request, rather than the original
one, and so on.
This should do away with any need for rehandling.
I've also taken this opportunity to avoid adding new values to the
request context in the handler chain, as this creates a copy of the
Request struct, which may possibly lead to bugs like it has in the past
(see PR #1542, PR #1481, and maybe issue #2463). We now add all the
expected context values in the top-level handler at the server, then
any new values can be added to the variable table via the VarsCtxKey
context key, or just the GetVar/SetVar functions. In particular, we are
using this facility to convey dial information in the reverse proxy.
Had to be careful in one place as the middleware compilation logic has
changed, and moved a bit. We no longer compile a middleware chain per-
request; instead, we can compile it at provision-time, and defer only the
evaluation of matchers to request-time, which should slightly improve
performance. Doing this, however, we take advantage of multiple function
closures, and we also changed the use of HandlerFunc (function pointer)
to Handler (interface)... this led to a situation where, if we aren't
careful, allows one request routed a certain way to permanently change
the "next" handler for all/most other requests! We avoid this by making
a copy of the interface value (which is a lightweight pointer copy) and
using exclusively that within our wrapped handlers. This way, the
original stack frame is preserved in a "read-only" fashion. The comments
in the code describe this phenomenon.
This may very well be a breaking change for some configurations, however
I do not expect it to impact many people. I will make it clear in the
release notes that this change has occurred.
2020-01-10 01:00:13 +08:00
|
|
|
|
URI: "{http.matchers.file.relative}{http.request.uri.query_string}",
|
2019-09-11 04:16:41 +08:00
|
|
|
|
}
|
|
|
|
|
rewriteRoute := caddyhttp.Route{
|
2019-12-11 04:36:46 +08:00
|
|
|
|
MatcherSetsRaw: []caddy.ModuleMap{rewriteMatcherSet},
|
2019-09-11 04:16:41 +08:00
|
|
|
|
HandlersRaw: []json.RawMessage{caddyconfig.JSONModuleObject(rewriteHandler, "handler", "rewrite", nil)},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// route to actually reverse proxy requests to PHP files;
|
|
|
|
|
// match only requests that are for PHP files
|
2019-12-11 04:36:46 +08:00
|
|
|
|
rpMatcherSet := caddy.ModuleMap{
|
2019-12-13 06:27:09 +08:00
|
|
|
|
"path": h.JSON([]string{"*.php"}),
|
2019-09-11 04:16:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if the user specified a matcher token, use that
|
|
|
|
|
// matcher in a route that wraps both of our routes;
|
|
|
|
|
// either way, strip the matcher token and pass
|
|
|
|
|
// the remaining tokens to the unmarshaler so that
|
|
|
|
|
// we can gain the rest of the reverse_proxy syntax
|
|
|
|
|
userMatcherSet, hasUserMatcher, err := h.MatcherToken()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if hasUserMatcher {
|
|
|
|
|
h.Dispenser.Delete() // strip matcher token
|
|
|
|
|
}
|
|
|
|
|
h.Dispenser.Reset() // pretend this lookahead never happened
|
|
|
|
|
|
|
|
|
|
// set up the transport for FastCGI, and specifically PHP
|
|
|
|
|
fcgiTransport := Transport{SplitPath: ".php"}
|
|
|
|
|
|
|
|
|
|
// create the reverse proxy handler which uses our FastCGI transport
|
|
|
|
|
rpHandler := &reverseproxy.Handler{
|
|
|
|
|
TransportRaw: caddyconfig.JSONModuleObject(fcgiTransport, "protocol", "fastcgi", nil),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// the rest of the config is specified by the user
|
|
|
|
|
// using the reverse_proxy directive syntax
|
|
|
|
|
err = rpHandler.UnmarshalCaddyfile(h.Dispenser)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// create the final reverse proxy route which is
|
|
|
|
|
// conditional on matching PHP files
|
|
|
|
|
rpRoute := caddyhttp.Route{
|
2019-12-11 04:36:46 +08:00
|
|
|
|
MatcherSetsRaw: []caddy.ModuleMap{rpMatcherSet},
|
2019-09-11 04:16:41 +08:00
|
|
|
|
HandlersRaw: []json.RawMessage{caddyconfig.JSONModuleObject(rpHandler, "handler", "reverse_proxy", nil)},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// the user's matcher is a prerequisite for ours, so
|
|
|
|
|
// wrap ours in a subroute and return that
|
|
|
|
|
if hasUserMatcher {
|
|
|
|
|
subroute := caddyhttp.Subroute{
|
2019-09-18 05:16:17 +08:00
|
|
|
|
Routes: caddyhttp.RouteList{redirRoute, rewriteRoute, rpRoute},
|
2019-09-11 04:16:41 +08:00
|
|
|
|
}
|
|
|
|
|
return []httpcaddyfile.ConfigValue{
|
|
|
|
|
{
|
|
|
|
|
Class: "route",
|
|
|
|
|
Value: caddyhttp.Route{
|
2019-12-11 04:36:46 +08:00
|
|
|
|
MatcherSetsRaw: []caddy.ModuleMap{userMatcherSet},
|
2019-09-11 04:16:41 +08:00
|
|
|
|
HandlersRaw: []json.RawMessage{caddyconfig.JSONModuleObject(subroute, "handler", "subroute", nil)},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if the user did not specify a matcher, then
|
|
|
|
|
// we can just use our own matchers
|
|
|
|
|
return []httpcaddyfile.ConfigValue{
|
2019-09-18 05:16:17 +08:00
|
|
|
|
{
|
|
|
|
|
Class: "route",
|
|
|
|
|
Value: redirRoute,
|
|
|
|
|
},
|
2019-09-11 04:16:41 +08:00
|
|
|
|
{
|
|
|
|
|
Class: "route",
|
|
|
|
|
Value: rewriteRoute,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Class: "route",
|
|
|
|
|
Value: rpRoute,
|
|
|
|
|
},
|
|
|
|
|
}, nil
|
|
|
|
|
}
|