Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 97 additions & 0 deletions lib/ngx/proxyssl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
-- Copyright (C) Yichun Zhang (agentzh)


local base = require "resty.core.base"
base.allows_subsystem('http', 'stream')


local ffi = require "ffi"
local C = ffi.C
local ffi_str = ffi.string
local get_request = base.get_request
local error = error
local tonumber = tonumber
local errmsg = base.get_errmsg_ptr()
local subsystem = ngx.config.subsystem


local ngx_lua_ffi_proxy_ssl_get_tls1_version


if subsystem == 'http' then
ffi.cdef[[
int ngx_http_lua_ffi_proxy_ssl_get_tls1_version(ngx_http_request_t *r,
char **err);
]]

ngx_lua_ffi_proxy_ssl_get_tls1_version =
C.ngx_http_lua_ffi_proxy_ssl_get_tls1_version

elseif subsystem == 'stream' then
ffi.cdef[[
int ngx_stream_lua_ffi_proxy_ssl_get_tls1_version(
ngx_stream_lua_request_t *r, char **err);
]]

ngx_lua_ffi_proxy_ssl_get_tls1_version =
C.ngx_stream_lua_ffi_proxy_ssl_get_tls1_version
end


local _M = { version = base.version }


local function get_tls1_version()

local r = get_request()
if not r then
error("no request found")
end

local ver = ngx_lua_ffi_proxy_ssl_get_tls1_version(r, errmsg)

ver = tonumber(ver)

if ver >= 0 then
return ver
end

-- rc == FFI_ERROR

return nil, ffi_str(errmsg[0])
end
_M.get_tls1_version = get_tls1_version


do
_M.SSL3_VERSION = 0x0300
_M.TLS1_VERSION = 0x0301
_M.TLS1_1_VERSION = 0x0302
_M.TLS1_2_VERSION = 0x0303
_M.TLS1_3_VERSION = 0x0304

local map = {
[_M.SSL3_VERSION] = "SSLv3",
[_M.TLS1_VERSION] = "TLSv1",
[_M.TLS1_1_VERSION] = "TLSv1.1",
[_M.TLS1_2_VERSION] = "TLSv1.2",
[_M.TLS1_3_VERSION] = "TLSv1.3",
}

function _M.get_tls1_version_str()
local ver, err = get_tls1_version()
if not ver then
return nil, err
end

local ver_str = map[ver]
if not ver_str then
return nil, "unknown version"
end

return ver_str
end
end


return _M
159 changes: 159 additions & 0 deletions lib/ngx/proxyssl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
Name
====

ngx.proxyssl - Lua API for controlling NGINX upstream SSL handshakes

Table of Contents
=================

* [Name](#name)
* [Status](#status)
* [Synopsis](#synopsis)
* [Description](#description)
* [Methods](#methods)
* [get_tls1_version](#get_tls1_version)
* [get_tls1_version_str](#get_tls1_version_str)
* [Community](#community)
* [English Mailing List](#english-mailing-list)
* [Chinese Mailing List](#chinese-mailing-list)
* [Bugs and Patches](#bugs-and-patches)
* [Author](#author)
* [Copyright and License](#copyright-and-license)
* [See Also](#see-also)

Status
======

This Lua module is production ready.

Synopsis
========

```nginx
server {
listen 443 ssl;
server_name test.com;

proxy_ssl_certificate_by_lua_block {
local proxy_ssl = require "ngx.proxyssl"

local ver, err = proxy_ssl.get_tls1_version_str()
if not ver then
ngx.log(ngx.ERR, "failed to get TLS1 version: ", err)
return
end
ngx.log(ngx.INFO, "got TLS1 version: ", ver)
}

location / {
root html;
}
}
```

Description
===========

This Lua module provides API functions to control the SSL handshake process in contexts like [proxy_ssl_certificate_by_lua*](https://github.com/openresty/lua-nginx-module/#proxy_ssl_certificate_by_lua_block) and [proxy_ssl_verify_by_lua*](https://github.com/openresty/lua-nginx-module/#proxy_ssl_verify_by_lua_block) (of the [ngx_lua](https://github.com/openresty/lua-nginx-module#readme) module).

This Lua module only provides API functions that can be used in any upstream SSL context, so here we make it an independent module.

To load the `ngx.proxyssl` module in Lua, just write

```lua
local proxy_ssl = require "ngx.proxyssl"
```

[Back to TOC](#table-of-contents)

Methods
=======

get_tls1_version
----------------
**syntax:** *ver, err = proxy_ssl.get_tls1_version()*

**context:** *any*

It's the same as [ngx.ssl.get_tls1_version](https://github.com/openresty/lua-resty-core/blob/master/lib/ngx/ssl.md#get_tls1_version), but for the current upstream SSL connection.

This function can be called in any context where upstream https is used.

[Back to TOC](#table-of-contents)

get_tls1_version_str
--------------------
**syntax:** *ver, err = proxy_ssl.get_tls1_version_str()*

**context:** *any*

It's the same as [ngx.ssl.get_tls1_version_str](https://github.com/openresty/lua-resty-core/blob/master/lib/ngx/ssl.md#get_tls1_version_str), but for the current upstream SSL connection.

This function can be called in any context where upstream https is used.

[Back to TOC](#table-of-contents)

Community
=========

[Back to TOC](#table-of-contents)

English Mailing List
--------------------

The [openresty-en](https://groups.google.com/group/openresty-en) mailing list is for English speakers.

[Back to TOC](#table-of-contents)

Chinese Mailing List
--------------------

The [openresty](https://groups.google.com/group/openresty) mailing list is for Chinese speakers.

[Back to TOC](#table-of-contents)

Bugs and Patches
================

Please report bugs or submit patches by

1. creating a ticket on the [GitHub Issue Tracker](https://github.com/openresty/lua-resty-core/issues),
2. or posting to the [OpenResty community](#community).

[Back to TOC](#table-of-contents)

Author
======

Fuhong Ma <[email protected]> (willmafh)

[Back to TOC](#table-of-contents)

Copyright and License
=====================

This module is licensed under the BSD license.

Copyright (C) 2015-2017, by Yichun "agentzh" Zhang, OpenResty Inc.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

[Back to TOC](#table-of-contents)

See Also
========
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
* the [proxy_ssl_certificate_by_lua*](https://github.com/openresty/lua-nginx-module/#proxy_ssl_certificate_by_lua_block) directive.
* the [proxy_ssl_verify_by_lua*](https://github.com/openresty/lua-nginx-module/#proxy_ssl_verify_by_lua_block) directive.
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
* OpenResty: https://openresty.org

[Back to TOC](#table-of-contents)
Loading