2019-04-10 11:08:25 +08:00
|
|
|
-- Copyright (C) Yuansheng Wang
|
|
|
|
|
2019-04-11 15:00:59 +08:00
|
|
|
local require = require
|
2019-05-20 10:36:23 +08:00
|
|
|
local core = require("apisix.core")
|
2019-05-27 17:14:06 +08:00
|
|
|
local plugin = require("apisix.plugin")
|
2019-07-12 09:57:34 +08:00
|
|
|
local service_fetch = require("apisix.http.service").get
|
2019-06-13 12:01:36 +08:00
|
|
|
local admin_init = require("apisix.admin.init")
|
|
|
|
local get_var = require("resty.ngxvar").fetch
|
2019-08-04 02:06:42 +08:00
|
|
|
local router = require("apisix.http.router")
|
2019-04-11 14:36:53 +08:00
|
|
|
local ngx = ngx
|
2019-06-13 12:01:36 +08:00
|
|
|
local get_method = ngx.req.get_method
|
|
|
|
local ngx_exit = ngx.exit
|
2019-06-22 10:44:07 +08:00
|
|
|
local ngx_ERROR = ngx.ERROR
|
2019-06-16 07:32:25 +08:00
|
|
|
local math = math
|
2019-07-17 23:52:15 +08:00
|
|
|
local error = error
|
2019-08-30 10:15:58 +08:00
|
|
|
local ngx_var = ngx.var
|
|
|
|
local ipairs = ipairs
|
2019-07-17 23:52:15 +08:00
|
|
|
local load_balancer
|
2019-04-11 12:02:16 +08:00
|
|
|
|
2019-05-20 10:36:23 +08:00
|
|
|
|
2019-08-04 02:06:42 +08:00
|
|
|
local _M = {version = 0.2}
|
2019-04-10 11:08:25 +08:00
|
|
|
|
2019-05-20 10:36:23 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_init()
|
2019-04-11 15:00:59 +08:00
|
|
|
require("resty.core")
|
2019-06-03 14:16:27 +08:00
|
|
|
|
|
|
|
if require("ffi").os == "Linux" then
|
|
|
|
require("ngx.re").opt("jit_stack_size", 200 * 1024)
|
|
|
|
end
|
|
|
|
|
2019-04-11 15:00:59 +08:00
|
|
|
require("jit.opt").start("minstitch=2", "maxtrace=4000",
|
|
|
|
"maxrecord=8000", "sizemcode=64",
|
|
|
|
"maxmcode=4000", "maxirconst=1000")
|
2019-06-10 16:32:24 +08:00
|
|
|
|
|
|
|
--
|
|
|
|
local seed, err = core.utils.get_seed_from_urandom()
|
|
|
|
if not seed then
|
|
|
|
core.log.warn('failed to get seed from urandom: ', err)
|
|
|
|
seed = ngx.now() * 1000 + ngx.worker.pid()
|
|
|
|
end
|
|
|
|
math.randomseed(seed)
|
|
|
|
|
|
|
|
core.id.init()
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-05-20 10:36:23 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_init_worker()
|
2019-07-17 23:52:15 +08:00
|
|
|
local we = require("resty.worker.events")
|
|
|
|
local ok, err = we.configure({shm = "worker-events", interval = 0.1})
|
|
|
|
if not ok then
|
|
|
|
error("failed to init worker event: " .. err)
|
|
|
|
end
|
|
|
|
|
|
|
|
load_balancer = require("apisix.http.balancer").run
|
|
|
|
|
2019-07-12 09:57:34 +08:00
|
|
|
require("apisix.admin.init").init_worker()
|
2019-08-04 02:18:29 +08:00
|
|
|
require("apisix.http.balancer").init_worker()
|
2019-07-12 09:57:34 +08:00
|
|
|
|
2019-08-04 02:06:42 +08:00
|
|
|
router.init_worker()
|
2019-07-12 09:57:34 +08:00
|
|
|
require("apisix.http.service").init_worker()
|
2019-06-14 16:11:14 +08:00
|
|
|
require("apisix.plugin").init_worker()
|
2019-06-06 15:59:30 +08:00
|
|
|
require("apisix.consumer").init_worker()
|
2019-09-09 17:42:20 +08:00
|
|
|
|
|
|
|
if core.config == require("apisix.core.config_yaml") then
|
|
|
|
core.config.init_worker()
|
|
|
|
end
|
2019-05-23 16:35:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-06-16 07:32:25 +08:00
|
|
|
local function run_plugin(phase, plugins, api_ctx)
|
2019-05-23 16:35:47 +08:00
|
|
|
api_ctx = api_ctx or ngx.ctx.api_ctx
|
2019-05-23 21:57:51 +08:00
|
|
|
if not api_ctx then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2019-06-16 07:32:25 +08:00
|
|
|
plugins = plugins or api_ctx.plugins
|
|
|
|
if not plugins then
|
2019-05-29 10:29:40 +08:00
|
|
|
return api_ctx
|
|
|
|
end
|
|
|
|
|
2019-07-24 09:01:06 +08:00
|
|
|
if phase == "balancer" then
|
|
|
|
local balancer_name = api_ctx.balancer_name
|
|
|
|
local balancer_plugin = api_ctx.balancer_plugin
|
|
|
|
if balancer_name and balancer_plugin then
|
|
|
|
local phase_fun = balancer_plugin[phase]
|
|
|
|
phase_fun(balancer_plugin, api_ctx)
|
|
|
|
return api_ctx
|
|
|
|
end
|
|
|
|
|
|
|
|
for i = 1, #plugins, 2 do
|
|
|
|
local phase_fun = plugins[i][phase]
|
|
|
|
if phase_fun and
|
|
|
|
(not balancer_name or balancer_name == plugins[i].name) then
|
|
|
|
phase_fun(plugins[i + 1], api_ctx)
|
|
|
|
if api_ctx.balancer_name == plugins[i].name then
|
|
|
|
api_ctx.balancer_plugin = plugins[i]
|
|
|
|
return api_ctx
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return api_ctx
|
|
|
|
end
|
|
|
|
|
2019-05-29 10:29:40 +08:00
|
|
|
if phase ~= "log" then
|
2019-06-16 07:32:25 +08:00
|
|
|
for i = 1, #plugins, 2 do
|
|
|
|
local phase_fun = plugins[i][phase]
|
2019-05-29 10:29:40 +08:00
|
|
|
if phase_fun then
|
2019-06-16 07:32:25 +08:00
|
|
|
local code, body = phase_fun(plugins[i + 1], api_ctx)
|
2019-05-29 10:29:40 +08:00
|
|
|
if code or body then
|
|
|
|
core.response.exit(code, body)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return api_ctx
|
2019-05-23 16:35:47 +08:00
|
|
|
end
|
|
|
|
|
2019-06-16 07:32:25 +08:00
|
|
|
for i = 1, #plugins, 2 do
|
|
|
|
local phase_fun = plugins[i][phase]
|
2019-05-28 10:47:53 +08:00
|
|
|
if phase_fun then
|
2019-06-16 07:32:25 +08:00
|
|
|
phase_fun(plugins[i + 1], api_ctx)
|
2019-05-23 16:35:47 +08:00
|
|
|
end
|
|
|
|
end
|
2019-05-29 10:29:40 +08:00
|
|
|
|
|
|
|
return api_ctx
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-05-20 10:36:23 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_ssl_phase()
|
2019-06-22 10:44:07 +08:00
|
|
|
local ngx_ctx = ngx.ctx
|
|
|
|
local api_ctx = ngx_ctx.api_ctx
|
|
|
|
|
|
|
|
if api_ctx == nil then
|
|
|
|
api_ctx = core.tablepool.fetch("api_ctx", 0, 32)
|
|
|
|
ngx_ctx.api_ctx = api_ctx
|
|
|
|
end
|
|
|
|
|
2019-08-04 02:06:42 +08:00
|
|
|
local ok, err = router.router_ssl.match(api_ctx)
|
2019-06-22 10:44:07 +08:00
|
|
|
if not ok then
|
|
|
|
if err then
|
|
|
|
core.log.error("failed to fetch ssl config: ", err)
|
|
|
|
end
|
|
|
|
return ngx_exit(ngx_ERROR)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-08-30 10:15:58 +08:00
|
|
|
local upstream_vars = {
|
|
|
|
uri = "upstream_uri",
|
|
|
|
scheme = "upstream_scheme",
|
|
|
|
host = "upstream_host",
|
|
|
|
upgrade = "upstream_upgrade",
|
|
|
|
connection = "upstream_connection",
|
|
|
|
}
|
|
|
|
local upstream_names = {}
|
|
|
|
for name, _ in pairs(upstream_vars) do
|
|
|
|
core.table.insert(upstream_names, name)
|
|
|
|
end
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_access_phase()
|
2019-04-11 12:02:16 +08:00
|
|
|
local ngx_ctx = ngx.ctx
|
|
|
|
local api_ctx = ngx_ctx.api_ctx
|
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
if not api_ctx then
|
2019-05-29 10:29:40 +08:00
|
|
|
api_ctx = core.tablepool.fetch("api_ctx", 0, 32)
|
2019-06-22 10:44:07 +08:00
|
|
|
ngx_ctx.api_ctx = api_ctx
|
2019-04-11 12:02:16 +08:00
|
|
|
end
|
|
|
|
|
2019-05-28 10:47:53 +08:00
|
|
|
core.ctx.set_vars_meta(api_ctx)
|
2019-07-28 19:37:31 +08:00
|
|
|
|
2019-08-04 02:06:42 +08:00
|
|
|
router.router_http.match(api_ctx)
|
2019-05-08 10:38:45 +08:00
|
|
|
|
2019-08-20 22:07:59 +08:00
|
|
|
core.log.info("matched route: ",
|
2019-06-16 09:56:03 +08:00
|
|
|
core.json.delay_encode(api_ctx.matched_route, true))
|
2019-05-27 17:14:06 +08:00
|
|
|
|
|
|
|
local route = api_ctx.matched_route
|
2019-05-29 16:20:02 +08:00
|
|
|
if not route then
|
2019-06-15 22:34:26 +08:00
|
|
|
return core.response.exit(404)
|
2019-05-29 16:20:02 +08:00
|
|
|
end
|
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
--
|
|
|
|
if route.value.service_protocol == "grpc" then
|
|
|
|
return ngx.exec("@grpc_pass")
|
|
|
|
end
|
|
|
|
|
2019-08-30 10:15:58 +08:00
|
|
|
local upstream = route.value.upstream
|
|
|
|
if upstream then
|
|
|
|
for _, name in ipairs(upstream_names) do
|
|
|
|
if upstream[name] then
|
|
|
|
ngx_var[upstream_vars[name]] = upstream[name]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if upstream.enable_websocket then
|
|
|
|
api_ctx.var["upstream_upgrade"] = api_ctx.var["http_upgrade"]
|
|
|
|
api_ctx.var["upstream_connection"] = api_ctx.var["http_connection"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
if route.value.service_id then
|
|
|
|
-- core.log.info("matched route: ", core.json.delay_encode(route.value))
|
|
|
|
local service = service_fetch(route.value.service_id)
|
|
|
|
if not service then
|
|
|
|
core.log.error("failed to fetch service configuration by ",
|
|
|
|
"id: ", route.value.service_id)
|
|
|
|
return core.response.exit(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
local changed
|
|
|
|
route, changed = plugin.merge_service_route(service, route)
|
|
|
|
api_ctx.matched_route = route
|
|
|
|
|
|
|
|
if changed then
|
|
|
|
api_ctx.conf_type = "route&service"
|
|
|
|
api_ctx.conf_version = route.modifiedIndex .. "&"
|
|
|
|
.. service.modifiedIndex
|
|
|
|
api_ctx.conf_id = route.value.id .. "&"
|
|
|
|
.. service.value.id
|
|
|
|
else
|
|
|
|
api_ctx.conf_type = "service"
|
|
|
|
api_ctx.conf_version = service.modifiedIndex
|
|
|
|
api_ctx.conf_id = service.value.id
|
|
|
|
end
|
|
|
|
|
|
|
|
else
|
|
|
|
api_ctx.conf_type = "route"
|
|
|
|
api_ctx.conf_version = route.modifiedIndex
|
|
|
|
api_ctx.conf_id = route.value.id
|
|
|
|
end
|
|
|
|
|
|
|
|
local plugins = core.tablepool.fetch("plugins", 32, 0)
|
|
|
|
api_ctx.plugins = plugin.filter(route, plugins)
|
|
|
|
|
|
|
|
run_plugin("rewrite", plugins, api_ctx)
|
|
|
|
run_plugin("access", plugins, api_ctx)
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.grpc_access_phase()
|
|
|
|
local ngx_ctx = ngx.ctx
|
|
|
|
local api_ctx = ngx_ctx.api_ctx
|
|
|
|
|
|
|
|
if not api_ctx then
|
|
|
|
api_ctx = core.tablepool.fetch("api_ctx", 0, 32)
|
|
|
|
ngx_ctx.api_ctx = api_ctx
|
|
|
|
end
|
|
|
|
|
|
|
|
core.ctx.set_vars_meta(api_ctx)
|
|
|
|
|
|
|
|
router.router_http.match(api_ctx)
|
|
|
|
|
|
|
|
core.log.info("route: ",
|
|
|
|
core.json.delay_encode(api_ctx.matched_route, true))
|
|
|
|
|
|
|
|
local route = api_ctx.matched_route
|
|
|
|
if not route then
|
|
|
|
return core.response.exit(404)
|
|
|
|
end
|
|
|
|
|
2019-05-27 17:14:06 +08:00
|
|
|
if route.value.service_id then
|
2019-06-15 07:09:26 +08:00
|
|
|
-- core.log.info("matched route: ", core.json.delay_encode(route.value))
|
2019-05-27 17:14:06 +08:00
|
|
|
local service = service_fetch(route.value.service_id)
|
2019-06-14 17:56:13 +08:00
|
|
|
if not service then
|
2019-06-15 07:09:26 +08:00
|
|
|
core.log.error("failed to fetch service configuration by ",
|
2019-06-14 17:56:13 +08:00
|
|
|
"id: ", route.value.service_id)
|
2019-06-15 22:34:26 +08:00
|
|
|
return core.response.exit(404)
|
2019-06-14 17:56:13 +08:00
|
|
|
end
|
|
|
|
|
2019-05-27 17:14:06 +08:00
|
|
|
local changed
|
|
|
|
route, changed = plugin.merge_service_route(service, route)
|
2019-06-05 11:33:37 +08:00
|
|
|
api_ctx.matched_route = route
|
2019-05-27 17:14:06 +08:00
|
|
|
|
|
|
|
if changed then
|
|
|
|
api_ctx.conf_type = "route&service"
|
|
|
|
api_ctx.conf_version = route.modifiedIndex .. "&"
|
|
|
|
.. service.modifiedIndex
|
|
|
|
api_ctx.conf_id = route.value.id .. "&"
|
|
|
|
.. service.value.id
|
|
|
|
else
|
2019-06-05 11:33:37 +08:00
|
|
|
api_ctx.conf_type = "service"
|
2019-06-14 17:56:13 +08:00
|
|
|
api_ctx.conf_version = service.modifiedIndex
|
|
|
|
api_ctx.conf_id = service.value.id
|
2019-05-27 17:14:06 +08:00
|
|
|
end
|
|
|
|
|
2019-05-20 16:50:43 +08:00
|
|
|
else
|
|
|
|
api_ctx.conf_type = "route"
|
2019-05-27 17:14:06 +08:00
|
|
|
api_ctx.conf_version = route.modifiedIndex
|
|
|
|
api_ctx.conf_id = route.value.id
|
2019-05-20 16:50:43 +08:00
|
|
|
end
|
|
|
|
|
2019-06-16 07:32:25 +08:00
|
|
|
local plugins = core.tablepool.fetch("plugins", 32, 0)
|
|
|
|
api_ctx.plugins = plugin.filter(route, plugins)
|
2019-05-08 11:30:16 +08:00
|
|
|
|
2019-06-16 07:32:25 +08:00
|
|
|
run_plugin("rewrite", plugins, api_ctx)
|
|
|
|
run_plugin("access", plugins, api_ctx)
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-06-13 12:01:36 +08:00
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_header_filter_phase()
|
2019-05-23 16:35:47 +08:00
|
|
|
run_plugin("header_filter")
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-08-21 23:10:34 +08:00
|
|
|
function _M.http_body_filter_phase()
|
|
|
|
run_plugin("body_filter")
|
|
|
|
end
|
2019-06-13 12:01:36 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_log_phase()
|
2019-05-29 10:29:40 +08:00
|
|
|
local api_ctx = run_plugin("log")
|
|
|
|
if api_ctx then
|
2019-06-22 10:44:07 +08:00
|
|
|
if api_ctx.uri_parse_param then
|
|
|
|
core.tablepool.release("uri_parse_param", api_ctx.uri_parse_param)
|
|
|
|
end
|
|
|
|
|
2019-05-29 10:29:40 +08:00
|
|
|
core.ctx.release_vars(api_ctx)
|
2019-06-16 07:32:25 +08:00
|
|
|
if api_ctx.plugins then
|
|
|
|
core.tablepool.release("plugins", api_ctx.plugins)
|
|
|
|
end
|
2019-06-22 10:44:07 +08:00
|
|
|
|
2019-05-29 10:29:40 +08:00
|
|
|
core.tablepool.release("api_ctx", api_ctx)
|
|
|
|
end
|
2019-04-10 11:08:25 +08:00
|
|
|
end
|
|
|
|
|
2019-06-13 12:01:36 +08:00
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_balancer_phase()
|
2019-05-17 15:58:15 +08:00
|
|
|
local api_ctx = ngx.ctx.api_ctx
|
2019-06-16 07:32:25 +08:00
|
|
|
if not api_ctx then
|
|
|
|
core.log.error("invalid api_ctx")
|
|
|
|
return core.response.exit(500)
|
2019-05-17 15:58:15 +08:00
|
|
|
end
|
|
|
|
|
2019-07-24 09:01:06 +08:00
|
|
|
-- first time
|
|
|
|
if not api_ctx.balancer_name then
|
|
|
|
run_plugin("balancer", nil, api_ctx)
|
|
|
|
if api_ctx.balancer_name then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if api_ctx.balancer_name and api_ctx.balancer_name ~= "default" then
|
|
|
|
return run_plugin("balancer", nil, api_ctx)
|
|
|
|
end
|
|
|
|
|
|
|
|
api_ctx.balancer_name = "default"
|
2019-05-23 22:38:08 +08:00
|
|
|
load_balancer(api_ctx.matched_route, api_ctx)
|
2019-05-17 15:58:15 +08:00
|
|
|
end
|
|
|
|
|
2019-06-13 12:01:36 +08:00
|
|
|
|
|
|
|
do
|
|
|
|
local router
|
|
|
|
|
2019-07-01 17:24:38 +08:00
|
|
|
function _M.http_admin()
|
2019-06-13 12:01:36 +08:00
|
|
|
if not router then
|
|
|
|
router = admin_init.get()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- core.log.info("uri: ", get_var("uri"), " method: ", get_method())
|
2019-08-20 22:07:59 +08:00
|
|
|
local ok = router:dispatch(get_var("uri"), {method = get_method()})
|
2019-06-13 12:01:36 +08:00
|
|
|
if not ok then
|
|
|
|
ngx_exit(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end -- do
|
|
|
|
|
|
|
|
|
2019-04-10 11:08:25 +08:00
|
|
|
return _M
|