aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-01-31 17:22:59 +0000
committerMatthew Wild <mwild1@gmail.com>2010-01-31 17:22:59 +0000
commitfb51d84fd2e3568d2acdcd86584f75fc8ad35a36 (patch)
treed519685f75d8215ce52ec246d3885ad31b2a53f4 /core/certmanager.lua
parente39718024f7989cb0287453dc555ccef29e7f99e (diff)
downloadprosody-fb51d84fd2e3568d2acdcd86584f75fc8ad35a36.tar.gz
prosody-fb51d84fd2e3568d2acdcd86584f75fc8ad35a36.zip
certmanager: Hello world, I'm come to manage your SSL contexts
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
new file mode 100644
index 00000000..55059b3f
--- /dev/null
+++ b/core/certmanager.lua
@@ -0,0 +1,35 @@
+local configmanager = require "core.configmanager";
+local ssl = ssl;
+local ssl_newcontext = ssl.newcontext;
+
+local setmetatable = setmetatable;
+
+local prosody = prosody;
+
+module "certmanager"
+
+-- These are the defaults if not overridden in the config
+local default_ssl_ctx = { mode = "client", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none", options = "no_sslv2"; };
+local default_ssl_ctx_in = { mode = "server", protocol = "sslv23", capath = "/etc/ssl/certs", verify = "none", options = "no_sslv2"; };
+
+local default_ssl_ctx_mt = { __index = default_ssl_ctx };
+local default_ssl_ctx_in_mt = { __index = default_ssl_ctx_in };
+
+-- Global SSL options if not overridden per-host
+local default_ssl_config = configmanager.get("*", "core", "ssl");
+
+function get_context(host, mode, config)
+ local ssl_config = config and config.core.ssl or default_ssl_config;
+ if ssl and ssl_config then
+ return ssl_newcontext(setmetatable(ssl_config, mode == "client" and default_ssl_ctx_mt or default_ssl_ctx_in_mt));
+ end
+ return nil;
+end
+
+function reload_ssl_config()
+ default_ssl_config = config.get("*", "core", "ssl");
+end
+
+prosody.events.add_handler("config-reloaded", reload_ssl_config);
+
+return _M;