-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
- Loading branch information
1 parent
ae08d23
commit 72da57a
Showing
17 changed files
with
985 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,7 @@ build-cache/ | |
t/fuzzing/__pycache__/ | ||
boofuzz-results/ | ||
*.pyc | ||
*.wasm | ||
# release tar package | ||
*.tgz | ||
release/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
-- | ||
-- Licensed to the Apache Software Foundation (ASF) under one or more | ||
-- contributor license agreements. See the NOTICE file distributed with | ||
-- this work for additional information regarding copyright ownership. | ||
-- The ASF licenses this file to You 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. | ||
-- | ||
local core = require("apisix.core") | ||
local support_wasm, wasm = pcall(require, "resty.proxy-wasm") | ||
local concat = table.concat | ||
|
||
|
||
local schema = { | ||
type = "object", | ||
properties = { | ||
conf = { | ||
type = "string" | ||
}, | ||
}, | ||
required = {"conf"} | ||
} | ||
local _M = {} | ||
|
||
|
||
local function check_schema(conf) | ||
return core.schema.check(schema, conf) | ||
end | ||
|
||
|
||
local get_plugin_ctx_key | ||
do | ||
local key_buf = { | ||
nil, | ||
nil, | ||
} | ||
|
||
function get_plugin_ctx_key(ctx) | ||
key_buf[1] = ctx.conf_type | ||
key_buf[2] = ctx.conf_id | ||
return concat(key_buf, "#", 1, 2) | ||
end | ||
end | ||
|
||
local function fetch_plugin_ctx(conf, ctx, plugin) | ||
if not conf.plugin_ctxs then | ||
conf.plugin_ctxs = {} | ||
end | ||
|
||
local ctxs = conf.plugin_ctxs | ||
local key = get_plugin_ctx_key(ctx) | ||
local plugin_ctx = ctxs[key] | ||
local err | ||
if not plugin_ctx then | ||
plugin_ctx, err = wasm.on_configure(plugin, conf.conf) | ||
if not plugin_ctx then | ||
return nil, err | ||
end | ||
|
||
ctxs[key] = plugin_ctx | ||
end | ||
|
||
return plugin_ctx | ||
end | ||
|
||
|
||
local function access_wrapper(self, conf, ctx) | ||
local plugin_ctx, err = fetch_plugin_ctx(conf, ctx, self.plugin) | ||
if not plugin_ctx then | ||
core.log.error("failed to init wasm plugin ctx: ", err) | ||
return 503 | ||
end | ||
|
||
local ok, err = wasm.on_http_request_headers(plugin_ctx) | ||
if not ok then | ||
core.log.error("failed to run wasm plugin: ", err) | ||
return 503 | ||
end | ||
end | ||
|
||
|
||
function _M.require(attrs) | ||
if not support_wasm then | ||
return nil, "need to build APISIX-OpenResty to support wasm" | ||
end | ||
|
||
local name = attrs.name | ||
local priority = attrs.priority | ||
local plugin, err = wasm.load(name, attrs.file) | ||
if not plugin then | ||
return nil, err | ||
end | ||
|
||
local mod = { | ||
version = 0.1, | ||
name = name, | ||
priority = priority, | ||
schema = schema, | ||
check_schema = check_schema, | ||
plugin = plugin, | ||
} | ||
mod.access = function (conf, ctx) | ||
return access_wrapper(mod, conf, ctx) | ||
end | ||
|
||
-- the returned values need to be the same as the Lua's 'require' | ||
return true, mod | ||
end | ||
|
||
|
||
return _M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.