2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
* Copyright (C) Nginx, Inc.
|
2005-09-07 00:09:32 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
2007-03-19 21:36:56 +08:00
|
|
|
#include <ngx_mail.h>
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
|
2011-07-20 23:42:40 +08:00
|
|
|
#define NGX_DEFAULT_CIPHERS "HIGH:!aNULL:!MD5"
|
|
|
|
#define NGX_DEFAULT_ECDH_CURVE "prime256v1"
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
static void *ngx_mail_ssl_create_conf(ngx_conf_t *cf);
|
|
|
|
static char *ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child);
|
2008-09-01 22:19:01 +08:00
|
|
|
|
|
|
|
static char *ngx_mail_ssl_enable(ngx_conf_t *cf, ngx_command_t *cmd,
|
|
|
|
void *conf);
|
|
|
|
static char *ngx_mail_ssl_starttls(ngx_conf_t *cf, ngx_command_t *cmd,
|
|
|
|
void *conf);
|
2007-03-19 21:36:56 +08:00
|
|
|
static char *ngx_mail_ssl_session_cache(ngx_conf_t *cf, ngx_command_t *cmd,
|
2007-01-04 00:11:53 +08:00
|
|
|
void *conf);
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
|
2013-05-22 09:43:43 +08:00
|
|
|
static ngx_conf_enum_t ngx_mail_starttls_state[] = {
|
2007-03-19 21:36:56 +08:00
|
|
|
{ ngx_string("off"), NGX_MAIL_STARTTLS_OFF },
|
|
|
|
{ ngx_string("on"), NGX_MAIL_STARTTLS_ON },
|
|
|
|
{ ngx_string("only"), NGX_MAIL_STARTTLS_ONLY },
|
2005-12-05 21:18:09 +08:00
|
|
|
{ ngx_null_string, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
static ngx_conf_bitmask_t ngx_mail_ssl_protocols[] = {
|
2005-09-30 22:41:25 +08:00
|
|
|
{ ngx_string("SSLv2"), NGX_SSL_SSLv2 },
|
|
|
|
{ ngx_string("SSLv3"), NGX_SSL_SSLv3 },
|
|
|
|
{ ngx_string("TLSv1"), NGX_SSL_TLSv1 },
|
2012-01-11 19:15:00 +08:00
|
|
|
{ ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 },
|
|
|
|
{ ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 },
|
2005-09-30 22:41:25 +08:00
|
|
|
{ ngx_null_string, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
static ngx_command_t ngx_mail_ssl_commands[] = {
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
{ ngx_string("ssl"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_FLAG,
|
2008-09-01 22:19:01 +08:00
|
|
|
ngx_mail_ssl_enable,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, enable),
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL },
|
|
|
|
|
2005-12-05 21:18:09 +08:00
|
|
|
{ ngx_string("starttls"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
2008-09-01 22:19:01 +08:00
|
|
|
ngx_mail_ssl_starttls,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, starttls),
|
2013-05-22 09:43:43 +08:00
|
|
|
ngx_mail_starttls_state },
|
2005-12-05 21:18:09 +08:00
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
{ ngx_string("ssl_certificate"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_conf_set_str_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, certificate),
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL },
|
|
|
|
|
|
|
|
{ ngx_string("ssl_certificate_key"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_conf_set_str_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, certificate_key),
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL },
|
|
|
|
|
2008-06-16 13:51:32 +08:00
|
|
|
{ ngx_string("ssl_dhparam"),
|
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_str_slot,
|
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, dhparam),
|
|
|
|
NULL },
|
|
|
|
|
2011-07-20 23:42:40 +08:00
|
|
|
{ ngx_string("ssl_ecdh_curve"),
|
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_str_slot,
|
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, ecdh_curve),
|
|
|
|
NULL },
|
|
|
|
|
2005-09-30 22:41:25 +08:00
|
|
|
{ ngx_string("ssl_protocols"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_1MORE,
|
2005-09-30 22:41:25 +08:00
|
|
|
ngx_conf_set_bitmask_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, protocols),
|
|
|
|
&ngx_mail_ssl_protocols },
|
2005-09-30 22:41:25 +08:00
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
{ ngx_string("ssl_ciphers"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_conf_set_str_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, ciphers),
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL },
|
|
|
|
|
2005-09-30 22:41:25 +08:00
|
|
|
{ ngx_string("ssl_prefer_server_ciphers"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_FLAG,
|
2005-09-30 22:41:25 +08:00
|
|
|
ngx_conf_set_flag_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, prefer_server_ciphers),
|
2005-09-30 22:41:25 +08:00
|
|
|
NULL },
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
{ ngx_string("ssl_session_cache"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE12,
|
|
|
|
ngx_mail_ssl_session_cache,
|
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
2007-01-04 00:11:53 +08:00
|
|
|
0,
|
|
|
|
NULL },
|
|
|
|
|
2014-01-10 23:12:40 +08:00
|
|
|
{ ngx_string("ssl_session_tickets"),
|
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_FLAG,
|
|
|
|
ngx_conf_set_flag_slot,
|
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, session_tickets),
|
|
|
|
NULL },
|
|
|
|
|
2013-10-12 07:05:24 +08:00
|
|
|
{ ngx_string("ssl_session_ticket_key"),
|
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
|
|
|
ngx_conf_set_str_array_slot,
|
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, session_ticket_keys),
|
|
|
|
NULL },
|
|
|
|
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
{ ngx_string("ssl_session_timeout"),
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_MAIN_CONF|NGX_MAIL_SRV_CONF|NGX_CONF_TAKE1,
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
ngx_conf_set_sec_slot,
|
2007-03-19 21:36:56 +08:00
|
|
|
NGX_MAIL_SRV_CONF_OFFSET,
|
|
|
|
offsetof(ngx_mail_ssl_conf_t, session_timeout),
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
NULL },
|
2005-09-30 22:41:25 +08:00
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_null_command
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
static ngx_mail_module_t ngx_mail_ssl_module_ctx = {
|
2007-09-16 00:51:16 +08:00
|
|
|
NULL, /* protocol */
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL, /* create main configuration */
|
|
|
|
NULL, /* init main configuration */
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_create_conf, /* create server configuration */
|
|
|
|
ngx_mail_ssl_merge_conf /* merge server configuration */
|
2005-09-07 00:09:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_module_t ngx_mail_ssl_module = {
|
2005-09-07 00:09:32 +08:00
|
|
|
NGX_MODULE_V1,
|
2007-03-19 21:36:56 +08:00
|
|
|
&ngx_mail_ssl_module_ctx, /* module context */
|
|
|
|
ngx_mail_ssl_commands, /* module directives */
|
|
|
|
NGX_MAIL_MODULE, /* module type */
|
2005-09-08 22:36:09 +08:00
|
|
|
NULL, /* init master */
|
2005-09-07 00:09:32 +08:00
|
|
|
NULL, /* init module */
|
2005-09-08 22:36:09 +08:00
|
|
|
NULL, /* init process */
|
|
|
|
NULL, /* init thread */
|
|
|
|
NULL, /* exit thread */
|
|
|
|
NULL, /* exit process */
|
|
|
|
NULL, /* exit master */
|
|
|
|
NGX_MODULE_V1_PADDING
|
2005-09-07 00:09:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
static ngx_str_t ngx_mail_ssl_sess_id_ctx = ngx_string("MAIL");
|
2005-09-23 19:02:22 +08:00
|
|
|
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
static void *
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_create_conf(ngx_conf_t *cf)
|
2005-11-15 21:30:52 +08:00
|
|
|
{
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_conf_t *scf;
|
2005-11-15 21:30:52 +08:00
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
scf = ngx_pcalloc(cf->pool, sizeof(ngx_mail_ssl_conf_t));
|
2005-09-07 00:09:32 +08:00
|
|
|
if (scf == NULL) {
|
2009-06-03 00:09:44 +08:00
|
|
|
return NULL;
|
2005-09-07 00:09:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-11-15 21:30:52 +08:00
|
|
|
* set by ngx_pcalloc():
|
2005-09-07 00:09:32 +08:00
|
|
|
*
|
2005-09-30 22:41:25 +08:00
|
|
|
* scf->protocols = 0;
|
2008-06-16 13:51:32 +08:00
|
|
|
* scf->certificate = { 0, NULL };
|
|
|
|
* scf->certificate_key = { 0, NULL };
|
|
|
|
* scf->dhparam = { 0, NULL };
|
2011-07-20 23:42:40 +08:00
|
|
|
* scf->ecdh_curve = { 0, NULL };
|
2010-05-14 17:56:37 +08:00
|
|
|
* scf->ciphers = { 0, NULL };
|
2007-01-04 00:11:53 +08:00
|
|
|
* scf->shm_zone = NULL;
|
2005-09-07 00:09:32 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
scf->enable = NGX_CONF_UNSET;
|
2009-04-27 19:33:34 +08:00
|
|
|
scf->starttls = NGX_CONF_UNSET_UINT;
|
2005-09-30 22:41:25 +08:00
|
|
|
scf->prefer_server_ciphers = NGX_CONF_UNSET;
|
2007-01-04 00:11:53 +08:00
|
|
|
scf->builtin_session_cache = NGX_CONF_UNSET;
|
|
|
|
scf->session_timeout = NGX_CONF_UNSET;
|
2014-01-10 23:12:40 +08:00
|
|
|
scf->session_tickets = NGX_CONF_UNSET;
|
2013-10-12 07:05:24 +08:00
|
|
|
scf->session_ticket_keys = NGX_CONF_UNSET_PTR;
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
return scf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char *
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child)
|
2005-09-07 00:09:32 +08:00
|
|
|
{
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_conf_t *prev = parent;
|
|
|
|
ngx_mail_ssl_conf_t *conf = child;
|
2005-09-07 00:09:32 +08:00
|
|
|
|
2008-09-01 22:19:01 +08:00
|
|
|
char *mode;
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_pool_cleanup_t *cln;
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_conf_merge_value(conf->enable, prev->enable, 0);
|
2008-09-01 22:19:01 +08:00
|
|
|
ngx_conf_merge_uint_value(conf->starttls, prev->starttls,
|
|
|
|
NGX_MAIL_STARTTLS_OFF);
|
2005-09-07 00:09:32 +08:00
|
|
|
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
ngx_conf_merge_value(conf->session_timeout,
|
|
|
|
prev->session_timeout, 300);
|
|
|
|
|
2005-09-30 22:41:25 +08:00
|
|
|
ngx_conf_merge_value(conf->prefer_server_ciphers,
|
|
|
|
prev->prefer_server_ciphers, 0);
|
|
|
|
|
|
|
|
ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
|
2012-01-11 19:15:00 +08:00
|
|
|
(NGX_CONF_BITMASK_SET|NGX_SSL_SSLv3|NGX_SSL_TLSv1
|
|
|
|
|NGX_SSL_TLSv1_1|NGX_SSL_TLSv1_2));
|
2005-09-30 22:41:25 +08:00
|
|
|
|
2008-09-01 22:19:01 +08:00
|
|
|
ngx_conf_merge_str_value(conf->certificate, prev->certificate, "");
|
|
|
|
ngx_conf_merge_str_value(conf->certificate_key, prev->certificate_key, "");
|
2005-09-07 00:09:32 +08:00
|
|
|
|
2008-06-16 13:51:32 +08:00
|
|
|
ngx_conf_merge_str_value(conf->dhparam, prev->dhparam, "");
|
|
|
|
|
2011-07-20 23:42:40 +08:00
|
|
|
ngx_conf_merge_str_value(conf->ecdh_curve, prev->ecdh_curve,
|
|
|
|
NGX_DEFAULT_ECDH_CURVE);
|
|
|
|
|
2008-07-29 22:31:03 +08:00
|
|
|
ngx_conf_merge_str_value(conf->ciphers, prev->ciphers, NGX_DEFAULT_CIPHERS);
|
2005-09-07 00:09:32 +08:00
|
|
|
|
|
|
|
|
2005-09-30 22:41:25 +08:00
|
|
|
conf->ssl.log = cf->log;
|
2005-09-07 00:09:32 +08:00
|
|
|
|
2008-09-01 22:19:01 +08:00
|
|
|
if (conf->enable) {
|
|
|
|
mode = "ssl";
|
|
|
|
|
|
|
|
} else if (conf->starttls != NGX_MAIL_STARTTLS_OFF) {
|
|
|
|
mode = "starttls";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
mode = "";
|
|
|
|
}
|
|
|
|
|
2013-10-01 02:10:13 +08:00
|
|
|
if (conf->file == NULL) {
|
|
|
|
conf->file = prev->file;
|
|
|
|
conf->line = prev->line;
|
|
|
|
}
|
|
|
|
|
2008-09-01 22:19:01 +08:00
|
|
|
if (*mode) {
|
|
|
|
|
|
|
|
if (conf->certificate.len == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
|
|
|
|
"no \"ssl_certificate\" is defined for "
|
|
|
|
"the \"%s\" directive in %s:%ui",
|
|
|
|
mode, conf->file, conf->line);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conf->certificate_key.len == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
|
|
|
|
"no \"ssl_certificate_key\" is defined for "
|
|
|
|
"the \"%s\" directive in %s:%ui",
|
|
|
|
mode, conf->file, conf->line);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (conf->certificate.len == 0) {
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conf->certificate_key.len == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
|
|
|
|
"no \"ssl_certificate_key\" is defined "
|
|
|
|
"for certificate \"%V\"",
|
|
|
|
&conf->certificate);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-03 07:37:25 +08:00
|
|
|
if (ngx_ssl_create(&conf->ssl, conf->protocols, NULL) != NGX_OK) {
|
2005-09-07 00:09:32 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
cln = ngx_pool_cleanup_add(cf->pool, 0);
|
|
|
|
if (cln == NULL) {
|
2005-09-07 00:09:32 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
cln->handler = ngx_ssl_cleanup_ctx;
|
|
|
|
cln->data = &conf->ssl;
|
|
|
|
|
|
|
|
if (ngx_ssl_certificate(cf, &conf->ssl, &conf->certificate,
|
|
|
|
&conf->certificate_key)
|
|
|
|
!= NGX_OK)
|
2005-09-30 22:41:25 +08:00
|
|
|
{
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
2005-09-07 00:09:32 +08:00
|
|
|
|
2013-09-23 13:36:11 +08:00
|
|
|
if (SSL_CTX_set_cipher_list(conf->ssl.ctx,
|
|
|
|
(const char *) conf->ciphers.data)
|
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
ngx_ssl_error(NGX_LOG_EMERG, cf->log, 0,
|
|
|
|
"SSL_CTX_set_cipher_list(\"%V\") failed",
|
|
|
|
&conf->ciphers);
|
|
|
|
return NGX_CONF_ERROR;
|
2005-09-07 00:09:32 +08:00
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (conf->prefer_server_ciphers) {
|
|
|
|
SSL_CTX_set_options(conf->ssl.ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
|
|
|
|
}
|
|
|
|
|
2011-07-20 20:59:24 +08:00
|
|
|
SSL_CTX_set_tmp_rsa_callback(conf->ssl.ctx, ngx_ssl_rsa512_key_callback);
|
2005-09-07 00:09:32 +08:00
|
|
|
|
2008-06-16 13:51:32 +08:00
|
|
|
if (ngx_ssl_dhparam(cf, &conf->ssl, &conf->dhparam) != NGX_OK) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2013-05-10 22:53:45 +08:00
|
|
|
if (ngx_ssl_ecdh_curve(cf, &conf->ssl, &conf->ecdh_curve) != NGX_OK) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
ngx_conf_merge_value(conf->builtin_session_cache,
|
2008-05-26 15:14:13 +08:00
|
|
|
prev->builtin_session_cache, NGX_SSL_NONE_SCACHE);
|
2005-09-23 19:02:22 +08:00
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
if (conf->shm_zone == NULL) {
|
|
|
|
conf->shm_zone = prev->shm_zone;
|
|
|
|
}
|
2005-09-08 22:36:09 +08:00
|
|
|
|
2007-03-19 21:36:56 +08:00
|
|
|
if (ngx_ssl_session_cache(&conf->ssl, &ngx_mail_ssl_sess_id_ctx,
|
2007-01-04 00:11:53 +08:00
|
|
|
conf->builtin_session_cache,
|
|
|
|
conf->shm_zone, conf->session_timeout)
|
|
|
|
!= NGX_OK)
|
|
|
|
{
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
|
2014-01-10 23:12:40 +08:00
|
|
|
ngx_conf_merge_value(conf->session_tickets,
|
|
|
|
prev->session_tickets, 1);
|
|
|
|
|
|
|
|
#ifdef SSL_OP_NO_TICKET
|
|
|
|
if (!conf->session_tickets) {
|
|
|
|
SSL_CTX_set_options(conf->ssl.ctx, SSL_OP_NO_TICKET);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-10-12 07:05:24 +08:00
|
|
|
ngx_conf_merge_ptr_value(conf->session_ticket_keys,
|
|
|
|
prev->session_ticket_keys, NULL);
|
|
|
|
|
|
|
|
if (ngx_ssl_session_ticket_keys(cf, &conf->ssl, conf->session_ticket_keys)
|
|
|
|
!= NGX_OK)
|
|
|
|
{
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2005-11-15 21:30:52 +08:00
|
|
|
|
2008-09-01 22:19:01 +08:00
|
|
|
static char *
|
|
|
|
ngx_mail_ssl_enable(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
|
|
|
{
|
|
|
|
ngx_mail_ssl_conf_t *scf = conf;
|
|
|
|
|
|
|
|
char *rv;
|
|
|
|
|
|
|
|
rv = ngx_conf_set_flag_slot(cf, cmd, conf);
|
|
|
|
|
|
|
|
if (rv != NGX_CONF_OK) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scf->enable && (ngx_int_t) scf->starttls > NGX_MAIL_STARTTLS_OFF) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
|
|
|
|
"\"starttls\" directive conflicts with \"ssl on\"");
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
scf->file = cf->conf_file->file.name.data;
|
|
|
|
scf->line = cf->conf_file->line;
|
|
|
|
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
ngx_mail_ssl_starttls(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
|
|
|
{
|
|
|
|
ngx_mail_ssl_conf_t *scf = conf;
|
|
|
|
|
|
|
|
char *rv;
|
|
|
|
|
|
|
|
rv = ngx_conf_set_enum_slot(cf, cmd, conf);
|
|
|
|
|
|
|
|
if (rv != NGX_CONF_OK) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scf->enable == 1 && (ngx_int_t) scf->starttls > NGX_MAIL_STARTTLS_OFF) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
|
|
|
|
"\"ssl\" directive conflicts with \"starttls\"");
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
scf->file = cf->conf_file->file.name.data;
|
|
|
|
scf->line = cf->conf_file->line;
|
|
|
|
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
static char *
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_session_cache(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
2007-01-04 00:11:53 +08:00
|
|
|
{
|
2007-03-19 21:36:56 +08:00
|
|
|
ngx_mail_ssl_conf_t *scf = conf;
|
2007-01-04 00:11:53 +08:00
|
|
|
|
|
|
|
size_t len;
|
|
|
|
ngx_str_t *value, name, size;
|
|
|
|
ngx_int_t n;
|
|
|
|
ngx_uint_t i, j;
|
|
|
|
|
|
|
|
value = cf->args->elts;
|
|
|
|
|
|
|
|
for (i = 1; i < cf->args->nelts; i++) {
|
|
|
|
|
2007-12-27 04:27:22 +08:00
|
|
|
if (ngx_strcmp(value[i].data, "off") == 0) {
|
|
|
|
scf->builtin_session_cache = NGX_SSL_NO_SCACHE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-05-26 15:14:13 +08:00
|
|
|
if (ngx_strcmp(value[i].data, "none") == 0) {
|
|
|
|
scf->builtin_session_cache = NGX_SSL_NONE_SCACHE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
if (ngx_strcmp(value[i].data, "builtin") == 0) {
|
|
|
|
scf->builtin_session_cache = NGX_SSL_DFLT_BUILTIN_SCACHE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value[i].len > sizeof("builtin:") - 1
|
|
|
|
&& ngx_strncmp(value[i].data, "builtin:", sizeof("builtin:") - 1)
|
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
n = ngx_atoi(value[i].data + sizeof("builtin:") - 1,
|
|
|
|
value[i].len - (sizeof("builtin:") - 1));
|
|
|
|
|
|
|
|
if (n == NGX_ERROR) {
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
scf->builtin_session_cache = n;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value[i].len > sizeof("shared:") - 1
|
|
|
|
&& ngx_strncmp(value[i].data, "shared:", sizeof("shared:") - 1)
|
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
len = 0;
|
|
|
|
|
|
|
|
for (j = sizeof("shared:") - 1; j < value[i].len; j++) {
|
|
|
|
if (value[i].data[j] == ':') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
name.len = len;
|
|
|
|
name.data = value[i].data + sizeof("shared:") - 1;
|
|
|
|
|
|
|
|
size.len = value[i].len - j - 1;
|
|
|
|
size.data = name.data + len + 1;
|
|
|
|
|
|
|
|
n = ngx_parse_size(&size);
|
|
|
|
|
|
|
|
if (n == NGX_ERROR) {
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < (ngx_int_t) (8 * ngx_pagesize)) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"session cache \"%V\" is too small",
|
|
|
|
&value[i]);
|
|
|
|
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
scf->shm_zone = ngx_shared_memory_add(cf, &name, n,
|
2007-03-19 21:36:56 +08:00
|
|
|
&ngx_mail_ssl_module);
|
2007-01-04 00:11:53 +08:00
|
|
|
if (scf->shm_zone == NULL) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2011-09-27 20:06:07 +08:00
|
|
|
scf->shm_zone->init = ngx_ssl_session_cache_init;
|
|
|
|
|
2007-01-04 00:11:53 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scf->shm_zone && scf->builtin_session_cache == NGX_CONF_UNSET) {
|
|
|
|
scf->builtin_session_cache = NGX_SSL_NO_BUILTIN_SCACHE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
|
|
|
|
invalid:
|
|
|
|
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"invalid session cache \"%V\"", &value[i]);
|
|
|
|
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|