Skip to content

Commit

Permalink
feat(*) relying on storage to do cluster level sync
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Nov 16, 2019
1 parent 117dae7 commit b513009
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 150 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -55,9 +55,8 @@ install:
- git clone https://github.com/openresty/lua-resty-lrucache.git ../lua-resty-lrucache
- git clone https://github.com/openresty/lua-resty-redis.git ../lua-resty-redis
- git clone -b v0.15 https://github.com/ledgetech/lua-resty-http ../lua-resty-http
- git clone -b 1.0.0 https://github.com/fffonion/lua-resty-worker-events ../lua-resty-worker-events
- git clone -b 0.2.1 https://github.com/fffonion/lua-resty-openssl ../lua-resty-openssl
- cp -r ../lua-resty-lrucache/lib/* ../lua-resty-redis/lib/* ../lua-resty-http/lib/* ../lua-resty-worker-events/lib/* ../lua-resty-openssl/lib/* ../lib/
- cp -r ../lua-resty-lrucache/lib/* ../lua-resty-redis/lib/* ../lua-resty-http/lib/* ../lua-resty-openssl/lib/* ../lib/
- find ../lib
# luajit
- git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git
Expand Down
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -173,8 +173,6 @@ default_config = {
renew_threshold = 7 * 86400,
-- interval to check cert renewal, in seconds
renew_check_interval = 6 * 3600,
-- the shm name to store worker events
ev_shm = 'autossl_events',
-- the store certificates
storage_adapter = "shm",
-- the storage config passed to storage adapter
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Expand Up @@ -7,5 +7,5 @@ lib_dir = lib
doc_dir = lib
repo_link = https://github.com/fffonion/lua-resty-acme
main_module = lib/resty/acme/client.lua
requires = luajit, openresty/lua-resty-lrucache >= 0.08, pintsized/lua-resty-http >= 0.12, fffonion/lua-resty-worker-events >= 0.3.3, fffonion/lua-resty-openssl >= 0.2.1
requires = luajit, openresty/lua-resty-lrucache >= 0.08, pintsized/lua-resty-http >= 0.12, fffonion/lua-resty-openssl >= 0.2.1
exclude_files=*.rock, *.rockspec
231 changes: 95 additions & 136 deletions lib/resty/acme/autossl.lua
@@ -1,7 +1,7 @@
local lrucache = require "resty.lrucache"
local acme = require "resty.acme.client"
local util = require "resty.acme.util"
local openssl = require("resty.acme.openssl")
local openssl = require "resty.acme.openssl"
local json = require "cjson"
local ssl = require "ngx.ssl"

Expand Down Expand Up @@ -40,8 +40,6 @@ local default_config = {
renew_threshold = 7 * 86400,
-- interval to check cert renewal, in seconds
renew_check_interval = 6 * 3600,
-- the shm name to store worker events
ev_shm = 'autossl_events',
-- the store certificates
storage_adapter = "shm",
-- the storage config passed to storage adapter
Expand All @@ -50,14 +48,11 @@ local default_config = {
},
}

local account_key
local domain_pkeys = {}

local domain_key_types, domain_key_types_count
local domain_whitelist

local ev, events

--[[
certs_cache = {
rsa = {
Expand All @@ -66,25 +61,68 @@ local ev, events
}
]]
local certs_cache = {}
local CERTS_CACHE_TTL = 3600
local CERTS_CACHE_NEG_TTL = 5


local update_cert_lock_key_prefix = "update_lock:"
local domain_cache_key_prefix = "domain:"

local function update_cert_handler(data, event, source, pid)
log(ngx_DEBUG, "run update_cert_handler")
-- get cert and key cdata with caching
local function get_certkey(domain, typ)
local data, _ --[[stale]], _ --[[flags]] = certs_cache[typ]:get(domain)
if data then
return data, nil
end

if not AUTOSSL.client_initialized then
local err = AUTOSSL.client:init()
-- pull from storage
local cache, err_ret
while true do
local domain_key = domain_cache_key_prefix .. typ .. ":" .. domain
local serialized, err = AUTOSSL.storage:get(domain_key)
if err then
log(ngx_ERR, "error during acme init: ", err)
return
err_ret = "failed to read from storage err: " .. err
break
end
local kid, err = AUTOSSL.client:new_account()

if not serialized then
-- not found
break
end

local deserialized = json.decode(serialized)
if not deserialized then
err_ret = "failed to deserialize cert key from storage"
break
end

local pkey, err = ssl.parse_pem_priv_key(deserialized.pkey)
if err then
log(ngx_ERR, "error during acme login: ", err)
return
err_ret = "failed to parse PEM key from storage " .. err
break
end
AUTOSSL.client_initialized = true
local cert, err = ssl.parse_pem_cert(deserialized.cert)
if err then
err_ret = "failed to parse PEM cert from storage " .. err
break
end
cache = {
pkey = pkey,
cert = cert
}
break
end
-- fill in local cache
if cache then
certs_cache[typ]:set(domain, cache, CERTS_CACHE_TTL)
else
certs_cache[typ]:set(domain, null, CERTS_CACHE_NEG_TTL)
end
return cache, err_ret
end

local function update_cert_handler(data)
log(ngx_DEBUG, "run update_cert_handler")

local domain = data.domain
local typ = data.type
Expand All @@ -98,7 +136,7 @@ local function update_cert_handler(data, event, source, pid)
elseif not certkey or certkey == null then
log(ngx_INFO, "trying to renew ", typ, " cert for domain which does not exist, creating new one")
else
pkeys = certkey.pkey
pkey = certkey.pkey
end
else
-- if defined, use the global (single) domain key
Expand All @@ -107,18 +145,21 @@ local function update_cert_handler(data, event, source, pid)

log(ngx_INFO, "order ", typ, " cert for ", domain)

local pkey, cert, err = AUTOSSL.update_cert(pkey, domain, typ)
if not pkey then
local t = ngx.now()
if typ == 'rsa' then
pkey = util.create_pkey(4096, 'RSA')
elseif typ == 'ecc' then
pkey = util.create_pkey(nil, 'EC', 'prime256v1')
else
return nil, nil, "unknown key type: " .. typ
end
ngx.update_time()
log(ngx_INFO, ngx.now() - t, "s spent in creating new ", typ, " private key")
end
local cert, err = AUTOSSL.client:order_certificate(pkey, domain)
if err then
log(ngx_ERR, "error updating cert for ", domain, " err: ", err)
-- put it back for retry
ngx.timer.at(60, function()
data.tries = data.tries + 1
local unique = domain .. "#" .. data.tries
local _, err = ev.post(events._source, events.update_cert, data, unique)
if err then
log(ngx_ERR, "error putting back events queue ", err)
end
end)
return
end

Expand All @@ -136,68 +177,35 @@ local function update_cert_handler(data, event, source, pid)
return
end

local sucess, err = ev.post(events._source, events.cache_invalidation, {
domain = domain,
type = typ,
}, nil)
if err then
log(ngx_ERR, "failed to post cache invalidation event ", err)
return
end

end

local function cache_invalidation_handler(data, event, source, pid)
log(ngx_DEBUG, "run cache_invalidation_handler")

local typ = data.type
local domain = data.domain
if not typ or not domain then
log(ngx_WARN, "received cache_invalidation event with no type or domain defined")
return
-- locked wrapper for update_cert_handler
function AUTOSSL.update_cert(data)
if not AUTOSSL.client_initialized then
local err = AUTOSSL.client:init()
if err then
log(ngx_ERR, "error during acme init: ", err)
return
end
local kid, err = AUTOSSL.client:new_account()
if err then
log(ngx_ERR, "error during acme login: ", err)
return
end
AUTOSSL.client_initialized = true
end

certs_cache[data.type]:delete(data.domain)
end

-- get cert and key cdata with caching
local function get_certkey(domain, typ)
local data, --[[stale--]]_, flags = certs_cache[typ]:get(domain)
if data then
return data, nil
end
-- pull from storage
local domain_cache_key = domain_cache_key_prefix .. typ .. ":" .. domain
local serialized, err = AUTOSSL.storage:get(domain_cache_key)
local lock_key = update_cert_lock_key_prefix .. data.type .. ":" .. data.domain
local err = AUTOSSL.storage:add(lock_key, CERTS_CACHE_NEG_TTL)
if err then
return nil, "failed to read from storage err: " .. err
end

if not serialized then
certs_cache[typ]:set(domain, null)
return nil, nil
ngx.log(ngx.INFO, "update is already running (lock key ", lock_key, " exists)")
return nil
end

local deserialized = json.decode(serialized)
if not deserialized then
return nil, "failed to deserialize cert key from storage"
end
err = update_cert_handler(data)

local pkey, err = ssl.parse_pem_priv_key(deserialized.pkey)
if err then
return nil, "failed to parse PEM key from storage " .. err
end
local cert, err = ssl.parse_pem_cert(deserialized.cert)
if err then
return nil, "failed to parse PEM cert from storage " .. err
end
local cache = {
pkey = pkey,
cert = cert
}
-- fill in local cache
certs_cache[typ]:set(domain, cache)
return cache, nil
-- yes we don't release lock, but wait it to expire after negative cache is cleared
return err
end

function AUTOSSL.check_renew()
Expand Down Expand Up @@ -225,19 +233,15 @@ function AUTOSSL.check_renew()
local _, not_after = cert:get_lifetime()
if not_after - now < AUTOSSL.config.renew_threshold then
local domain = deserialized.domain
local success, err = ev.post(events._source, events.update_cert, {
local err = AUTOSSL.update_cert({
domain = domain,
renew = true,
tries = 0,
type = deserialized.type,
}, "renew:" .. deserialized.type .. ":" .. domain)
})

if err then
log(ngx_ERR, "failed to renew certificate for domain ", domain)
elseif success == 'done' then
log(ngx_INFO, "renewed certificate for domain ", domain)
else -- recursive
log(ngx_INFO, "renewal of cert for ", domain, " is already running: ", success)
end
end

Expand Down Expand Up @@ -316,54 +320,13 @@ function AUTOSSL.init_worker()
end
AUTOSSL.storage = storage

ev = require "resty.worker.events"
events = ev.event_list(
"source",
"update_cert",
"cache_invalidation"
)

-- setup events
local ok, err = ev.configure {
shm = AUTOSSL.config.ev_shm,
timeout = 60, -- life time of unique event data in shm
interval = 5, -- poll interval (seconds)
}
if not ok then
error("failed to initialize worker events: ", err)
end

ev.register(update_cert_handler, events._source, events.update_cert)
ev.register(cache_invalidation_handler, events._source, events.cache_invalidation)

ngx.timer.every(AUTOSSL.config.renew_check_interval, AUTOSSL.check_renew)
end

function AUTOSSL.serve_http_challenge()
AUTOSSL.client:serve_http_challenge()
end

function AUTOSSL.update_cert(pkey, domain, typ)
local pkey = pkey
if not pkey then
local t = ngx.now()
if typ == 'rsa' then
pkey = util.create_pkey(4096, 'RSA')
elseif typ == 'ecc' then
pkey = util.create_pkey(nil, 'EC', 'prime256v1')
else
return nil, nil, "unknown key type: " .. typ
end
ngx.update_time()
log(ngx_INFO, ngx.now() - t, "s spent in creating new ", typ, " private key")
end
local cert, err = AUTOSSL.client:order_certificate(pkey, domain)
if err then
return nil, nil, err
end
return pkey, cert, err
end


function AUTOSSL.ssl_certificate()
local domain, err = ssl.server_name()
Expand All @@ -380,7 +343,6 @@ function AUTOSSL.ssl_certificate()
local chains_set_count = 0
local chains_set = {}

-- TODO: worker level cache
for i, typ in ipairs(domain_key_types) do
local certkey, err = get_certkey(domain, typ)
if err then
Expand All @@ -404,18 +366,15 @@ function AUTOSSL.ssl_certificate()
ngx.timer.at(0, function()
for i, typ in ipairs(domain_key_types) do
if not chains_set[i] then
local success, err = ev.post(events._source, events.update_cert, {
local err = AUTOSSL.update_cert({
domain = domain,
renew = false,
tries = 0,
type = typ,
}, typ .. ":" .. domain)
})

if err then
log(ngx_ERR, "failed to create certificate for domain ", domain)
elseif success == 'done' then
log(ngx_INFO, "created certificate for domain ", domain)
else -- recursive
log(ngx_INFO, "creation of cert for ", domain, " is already running: ", success)
log(ngx_ERR, "failed to create ", typ, " certificate for domain ", domain, ": ", err)
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/acme/client.lua
Expand Up @@ -390,7 +390,7 @@ function _M:order_certificate(domain_key, ...)
end

if order_status.status ~= "ready" then
return nil, "failed to create order, got status " .. (order_status.status or "nil")
return nil, "failed to wait for order status, got " .. (order_status.status or "nil")
end

local domain_pkey = openssl.pkey.new(domain_key)
Expand Down
1 change: 0 additions & 1 deletion lua-resty-acme-0.3.0-1.rockspec
Expand Up @@ -32,7 +32,6 @@ build = {

dependencies = {
"lua-resty-http >= 0.15-0",
"lua-resty-worker-events >= 1.0.0-1",
"lua-resty-lrucache >= 0.09-2",
"lua-resty-openssl >= 0.2.1-1",
}

0 comments on commit b513009

Please sign in to comment.