-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: add function tcpsock:setclientcert
, reimplemented tcpsock:sslhandshake
with FFI.
#278
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 | ||||
---|---|---|---|---|---|---|
@@ -1,18 +1,27 @@ | ||||||
local base = require "resty.core.base" | ||||||
base.allows_subsystem('http') | ||||||
local debug = require 'debug' | ||||||
local ffi = require 'ffi' | ||||||
base.allows_subsystem("http") | ||||||
local debug = require "debug" | ||||||
local ffi = require "ffi" | ||||||
|
||||||
|
||||||
local error = error | ||||||
local error = error | ||||||
local assert = assert | ||||||
local tonumber = tonumber | ||||||
local tostring = tostring | ||||||
local type = type | ||||||
local select = select | ||||||
local registry = debug.getregistry() | ||||||
|
||||||
local C = ffi.C | ||||||
local ffi_new = ffi.new | ||||||
local ffi_string = ffi.string | ||||||
local C = ffi.C | ||||||
local ffi_str = ffi.string | ||||||
local ffi_gc = ffi.gc | ||||||
|
||||||
local get_string_buf = base.get_string_buf | ||||||
local get_size_ptr = base.get_size_ptr | ||||||
local tostring = tostring | ||||||
local get_size_ptr = base.get_size_ptr | ||||||
local get_request = base.get_request | ||||||
|
||||||
local co_yield = coroutine._yield | ||||||
|
||||||
|
||||||
local option_index = { | ||||||
|
@@ -35,14 +44,36 @@ ngx_http_lua_ffi_socket_tcp_getoption(ngx_http_lua_socket_tcp_upstream_t *u, | |||||
int | ||||||
ngx_http_lua_ffi_socket_tcp_setoption(ngx_http_lua_socket_tcp_upstream_t *u, | ||||||
int opt, int val, unsigned char *err, size_t *errlen); | ||||||
|
||||||
int | ||||||
ngx_http_lua_ffi_socket_tcp_sslhandshake(ngx_http_request_t *r, | ||||||
ngx_http_lua_socket_tcp_upstream_t *u, void *sess, | ||||||
int enable_session_reuse, ngx_str_t *server_name, int verify, | ||||||
int ocsp_status_req, void *chain, void *pkey, char **errmsg); | ||||||
|
||||||
int | ||||||
ngx_http_lua_ffi_socket_tcp_get_sslhandshake_result(ngx_http_request_t *r, | ||||||
ngx_http_lua_socket_tcp_upstream_t *u, void **sess, char **errmsg, | ||||||
int *openssl_error_code); | ||||||
|
||||||
void | ||||||
ngx_http_lua_ffi_ssl_free_session(void *sess); | ||||||
]] | ||||||
|
||||||
|
||||||
local output_value_buf = ffi_new("int[1]") | ||||||
local FFI_OK = base.FFI_OK | ||||||
local SOCKET_CTX_INDEX = 1 | ||||||
local ERR_BUF_SIZE = 4096 | ||||||
|
||||||
local FFI_OK = base.FFI_OK | ||||||
local FFI_ERROR = base.FFI_ERROR | ||||||
local FFI_DONE = base.FFI_DONE | ||||||
local FFI_AGAIN = base.FFI_AGAIN | ||||||
local FFI_NO_REQ_CTX = base.FFI_NO_REQ_CTX | ||||||
|
||||||
local SOCKET_CTX_INDEX = 1 | ||||||
local SOCKET_CLIENT_CERT_INDEX = 6 | ||||||
local SOCKET_CLIENT_PKEY_INDEX = 7 | ||||||
|
||||||
|
||||||
local function get_tcp_socket(cosocket) | ||||||
local tcp_socket = cosocket[SOCKET_CTX_INDEX] | ||||||
|
@@ -75,7 +106,7 @@ local function getoption(cosocket, option) | |||||
err, | ||||||
errlen) | ||||||
if rc ~= FFI_OK then | ||||||
return nil, ffi_string(err, errlen[0]) | ||||||
return nil, ffi_str(err, errlen[0]) | ||||||
end | ||||||
|
||||||
return tonumber(output_value_buf[0]) | ||||||
|
@@ -107,17 +138,134 @@ local function setoption(cosocket, option, value) | |||||
err, | ||||||
errlen) | ||||||
if rc ~= FFI_OK then | ||||||
return nil, ffi_string(err, errlen[0]) | ||||||
return nil, ffi_str(err, errlen[0]) | ||||||
end | ||||||
|
||||||
return true | ||||||
end | ||||||
|
||||||
|
||||||
local errmsg = base.get_errmsg_ptr() | ||||||
local session_ptr = ffi_new("void *[1]") | ||||||
local server_name_str = ffi_new("ngx_str_t[1]") | ||||||
local openssl_error_code = ffi_new("int[1]") | ||||||
|
||||||
|
||||||
local function setclientcert(cosocket, cert, pkey) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is to keep the style consistent with existing cosocket API function names. e.g. |
||||||
if not cert and not pkey then | ||||||
cosocket[SOCKET_CLIENT_CERT_INDEX] = nil | ||||||
cosocket[SOCKET_CLIENT_PKEY_INDEX] = nil | ||||||
return true | ||||||
end | ||||||
|
||||||
if not cert or not pkey then | ||||||
return nil, | ||||||
"client certificate must be supplied with corresponding " .. | ||||||
"private key" | ||||||
end | ||||||
|
||||||
if type(cert) ~= "cdata" then | ||||||
return nil, "bad cert arg: cdata expected, got " .. type(cert) | ||||||
end | ||||||
|
||||||
if type(pkey) ~= "cdata" then | ||||||
return nil, "bad pkey arg: cdata expected, got " .. type(pkey) | ||||||
end | ||||||
|
||||||
cosocket[SOCKET_CLIENT_CERT_INDEX] = cert | ||||||
cosocket[SOCKET_CLIENT_PKEY_INDEX] = pkey | ||||||
|
||||||
return true | ||||||
end | ||||||
dndx marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
|
||||||
local function sslhandshake(cosocket, reused_session, server_name, ssl_verify, | ||||||
send_status_req, ...) | ||||||
|
||||||
local n = select("#", ...) | ||||||
if not cosocket or n > 0 then | ||||||
error("ngx.socket sslhandshake: expecting 1 ~ 5 arguments " .. | ||||||
"(including the object), but seen " .. (cosocket and 5 + n or 0)) | ||||||
end | ||||||
|
||||||
local r = get_request() | ||||||
if not r then | ||||||
error("no request found", 2) | ||||||
end | ||||||
|
||||||
session_ptr[0] = type(reused_session) == "cdata" and reused_session or nil | ||||||
|
||||||
if server_name then | ||||||
server_name_str[0].data = server_name | ||||||
server_name_str[0].len = #server_name | ||||||
|
||||||
else | ||||||
server_name_str[0].data = nil | ||||||
server_name_str[0].len = 0 | ||||||
end | ||||||
|
||||||
local u = get_tcp_socket(cosocket) | ||||||
|
||||||
local rc = C.ngx_http_lua_ffi_socket_tcp_sslhandshake(r, u, | ||||||
session_ptr[0], | ||||||
reused_session ~= false, | ||||||
server_name_str, | ||||||
ssl_verify and 1 or 0, | ||||||
send_status_req and 1 or 0, | ||||||
cosocket[SOCKET_CLIENT_CERT_INDEX], | ||||||
cosocket[SOCKET_CLIENT_PKEY_INDEX], | ||||||
errmsg) | ||||||
|
||||||
if rc == FFI_NO_REQ_CTX then | ||||||
error("no request ctx found", 2) | ||||||
end | ||||||
|
||||||
while true do | ||||||
dndx marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
if rc == FFI_ERROR then | ||||||
if openssl_error_code[0] ~= 0 then | ||||||
return nil, openssl_error_code[0] .. ": " .. ffi_str(errmsg[0]) | ||||||
end | ||||||
|
||||||
return nil, ffi_str(errmsg[0]) | ||||||
end | ||||||
|
||||||
if rc == FFI_DONE then | ||||||
return reused_session | ||||||
end | ||||||
|
||||||
if rc == FFI_OK then | ||||||
if reused_session == false then | ||||||
return true | ||||||
end | ||||||
|
||||||
rc = C.ngx_http_lua_ffi_socket_tcp_get_sslhandshake_result(r, u, | ||||||
session_ptr, errmsg, openssl_error_code) | ||||||
|
||||||
assert(rc == FFI_OK) | ||||||
|
||||||
if session_ptr[0] == nil then | ||||||
return session_ptr[0] | ||||||
end | ||||||
|
||||||
return ffi_gc(session_ptr[0], C.ngx_http_lua_ffi_ssl_free_session) | ||||||
end | ||||||
|
||||||
assert(rc == FFI_AGAIN) | ||||||
|
||||||
co_yield() | ||||||
|
||||||
rc = C.ngx_http_lua_ffi_socket_tcp_get_sslhandshake_result(r, u, | ||||||
dndx marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
session_ptr, errmsg, openssl_error_code) | ||||||
end | ||||||
end | ||||||
|
||||||
|
||||||
do | ||||||
local method_table = registry.__tcp_cosocket_mt | ||||||
method_table.getoption = getoption | ||||||
method_table.setoption = setoption | ||||||
method_table.setclientcert = setclientcert | ||||||
method_table.sslhandshake = sslhandshake | ||||||
end | ||||||
|
||||||
|
||||||
|
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need updating before merging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should do it after we get the official confirm of openresty.