Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright (C) Igor Sysoev |
| 4 | */ |
| 5 | |
| 6 | |
| 7 | #include <ngx_config.h> |
| 8 | #include <ngx_core.h> |
| 9 | #include <ngx_event.h> |
| 10 | #include <ngx_imap.h> |
| 11 | |
| 12 | |
| 13 | static void *ngx_imap_core_create_main_conf(ngx_conf_t *cf); |
| 14 | static void *ngx_imap_core_create_srv_conf(ngx_conf_t *cf); |
| 15 | static char *ngx_imap_core_merge_srv_conf(ngx_conf_t *cf, void *parent, |
| 16 | void *child); |
| 17 | static char *ngx_imap_core_server(ngx_conf_t *cf, ngx_command_t *cmd, |
| 18 | void *conf); |
| 19 | static char *ngx_imap_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, |
| 20 | void *conf); |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 21 | static char *ngx_imap_core_capability(ngx_conf_t *cf, ngx_command_t *cmd, |
| 22 | void *conf); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 23 | |
| 24 | |
| 25 | static ngx_conf_enum_t ngx_imap_core_procotol[] = { |
| 26 | { ngx_string("pop3"), NGX_IMAP_POP3_PROTOCOL }, |
| 27 | { ngx_string("imap"), NGX_IMAP_IMAP_PROTOCOL }, |
| 28 | { ngx_null_string, 0 } |
| 29 | }; |
| 30 | |
| 31 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 32 | static ngx_str_t ngx_pop3_default_capabilities[] = { |
| 33 | ngx_string("TOP"), |
| 34 | ngx_string("USER"), |
| 35 | ngx_string("UIDL"), |
| 36 | ngx_null_string |
| 37 | }; |
| 38 | |
| 39 | |
| 40 | static ngx_str_t ngx_imap_default_capabilities[] = { |
| 41 | ngx_string("IMAP4"), |
| 42 | ngx_string("IMAP4rev1"), |
| 43 | ngx_string("UIDPLUS"), |
| 44 | ngx_null_string |
| 45 | }; |
| 46 | |
| 47 | |
Igor Sysoev | abeb122 | 2006-10-23 13:10:10 +0000 | [diff] [blame] | 48 | static ngx_conf_bitmask_t ngx_imap_auth_methods[] = { |
| 49 | { ngx_string("plain"), NGX_IMAP_AUTH_PLAIN_ENABLED }, |
| 50 | { ngx_string("apop"), NGX_IMAP_AUTH_APOP_ENABLED }, |
Igor Sysoev | 50cca1c | 2006-10-24 18:38:31 +0000 | [diff] [blame] | 51 | { ngx_string("cram-md5"), NGX_IMAP_AUTH_CRAM_MD5_ENABLED }, |
Igor Sysoev | abeb122 | 2006-10-23 13:10:10 +0000 | [diff] [blame] | 52 | { ngx_null_string, 0 } |
| 53 | }; |
| 54 | |
| 55 | |
Igor Sysoev | 50cca1c | 2006-10-24 18:38:31 +0000 | [diff] [blame] | 56 | static ngx_str_t ngx_pop3_auth_plain_capability = |
| 57 | ngx_string("+OK methods supported:" CRLF |
| 58 | "LOGIN" CRLF |
| 59 | "PLAIN" CRLF |
| 60 | "." CRLF); |
| 61 | |
| 62 | |
| 63 | static ngx_str_t ngx_pop3_auth_cram_md5_capability = |
| 64 | ngx_string("+OK methods supported:" CRLF |
| 65 | "LOGIN" CRLF |
| 66 | "PLAIN" CRLF |
| 67 | "CRAM-MD5" CRLF |
| 68 | "." CRLF); |
| 69 | |
| 70 | |
| 71 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 72 | static ngx_command_t ngx_imap_core_commands[] = { |
| 73 | |
| 74 | { ngx_string("server"), |
| 75 | NGX_IMAP_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS, |
| 76 | ngx_imap_core_server, |
| 77 | 0, |
| 78 | 0, |
| 79 | NULL }, |
| 80 | |
| 81 | { ngx_string("listen"), |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 82 | NGX_IMAP_SRV_CONF|NGX_CONF_TAKE12, |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 83 | ngx_imap_core_listen, |
| 84 | 0, |
| 85 | 0, |
| 86 | NULL }, |
| 87 | |
| 88 | { ngx_string("protocol"), |
| 89 | NGX_IMAP_SRV_CONF|NGX_CONF_TAKE1, |
| 90 | ngx_conf_set_enum_slot, |
| 91 | NGX_IMAP_SRV_CONF_OFFSET, |
| 92 | offsetof(ngx_imap_core_srv_conf_t, protocol), |
| 93 | &ngx_imap_core_procotol }, |
| 94 | |
| 95 | { ngx_string("imap_client_buffer"), |
| 96 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_TAKE1, |
| 97 | ngx_conf_set_size_slot, |
| 98 | NGX_IMAP_SRV_CONF_OFFSET, |
| 99 | offsetof(ngx_imap_core_srv_conf_t, imap_client_buffer_size), |
| 100 | NULL }, |
| 101 | |
Igor Sysoev | cdc4630 | 2005-12-07 14:51:31 +0000 | [diff] [blame] | 102 | { ngx_string("so_keepalive"), |
| 103 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_FLAG, |
| 104 | ngx_conf_set_flag_slot, |
| 105 | NGX_IMAP_SRV_CONF_OFFSET, |
| 106 | offsetof(ngx_imap_core_srv_conf_t, so_keepalive), |
| 107 | NULL }, |
| 108 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 109 | { ngx_string("timeout"), |
| 110 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_TAKE1, |
| 111 | ngx_conf_set_msec_slot, |
| 112 | NGX_IMAP_SRV_CONF_OFFSET, |
| 113 | offsetof(ngx_imap_core_srv_conf_t, timeout), |
| 114 | NULL }, |
| 115 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 116 | { ngx_string("pop3_capabilities"), |
| 117 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_1MORE, |
| 118 | ngx_imap_core_capability, |
| 119 | NGX_IMAP_SRV_CONF_OFFSET, |
| 120 | offsetof(ngx_imap_core_srv_conf_t, pop3_capabilities), |
| 121 | NULL }, |
| 122 | |
| 123 | { ngx_string("imap_capabilities"), |
| 124 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_1MORE, |
| 125 | ngx_imap_core_capability, |
| 126 | NGX_IMAP_SRV_CONF_OFFSET, |
| 127 | offsetof(ngx_imap_core_srv_conf_t, imap_capabilities), |
| 128 | NULL }, |
| 129 | |
Igor Sysoev | abeb122 | 2006-10-23 13:10:10 +0000 | [diff] [blame] | 130 | { ngx_string("server_name"), |
| 131 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_TAKE1, |
| 132 | ngx_conf_set_str_slot, |
| 133 | NGX_IMAP_SRV_CONF_OFFSET, |
| 134 | offsetof(ngx_imap_core_srv_conf_t, server_name), |
| 135 | NULL }, |
| 136 | |
| 137 | { ngx_string("auth"), |
| 138 | NGX_IMAP_MAIN_CONF|NGX_IMAP_SRV_CONF|NGX_CONF_1MORE, |
| 139 | ngx_conf_set_bitmask_slot, |
| 140 | NGX_IMAP_SRV_CONF_OFFSET, |
| 141 | offsetof(ngx_imap_core_srv_conf_t, auth_methods), |
| 142 | &ngx_imap_auth_methods }, |
| 143 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 144 | ngx_null_command |
| 145 | }; |
| 146 | |
| 147 | |
| 148 | static ngx_imap_module_t ngx_imap_core_module_ctx = { |
| 149 | ngx_imap_core_create_main_conf, /* create main configuration */ |
| 150 | NULL, /* init main configuration */ |
| 151 | |
| 152 | ngx_imap_core_create_srv_conf, /* create server configuration */ |
| 153 | ngx_imap_core_merge_srv_conf /* merge server configuration */ |
| 154 | }; |
| 155 | |
| 156 | |
| 157 | ngx_module_t ngx_imap_core_module = { |
| 158 | NGX_MODULE_V1, |
| 159 | &ngx_imap_core_module_ctx, /* module context */ |
| 160 | ngx_imap_core_commands, /* module directives */ |
| 161 | NGX_IMAP_MODULE, /* module type */ |
Igor Sysoev | e573380 | 2005-09-08 14:36:09 +0000 | [diff] [blame] | 162 | NULL, /* init master */ |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 163 | NULL, /* init module */ |
Igor Sysoev | e573380 | 2005-09-08 14:36:09 +0000 | [diff] [blame] | 164 | NULL, /* init process */ |
| 165 | NULL, /* init thread */ |
| 166 | NULL, /* exit thread */ |
| 167 | NULL, /* exit process */ |
| 168 | NULL, /* exit master */ |
| 169 | NGX_MODULE_V1_PADDING |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | |
| 173 | static void * |
| 174 | ngx_imap_core_create_main_conf(ngx_conf_t *cf) |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 175 | { |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 176 | ngx_imap_core_main_conf_t *cmcf; |
| 177 | |
| 178 | cmcf = ngx_pcalloc(cf->pool, sizeof(ngx_imap_core_main_conf_t)); |
| 179 | if (cmcf == NULL) { |
| 180 | return NGX_CONF_ERROR; |
| 181 | } |
| 182 | |
| 183 | if (ngx_array_init(&cmcf->servers, cf->pool, 4, |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 184 | sizeof(ngx_imap_core_srv_conf_t *)) |
| 185 | != NGX_OK) |
| 186 | { |
| 187 | return NGX_CONF_ERROR; |
| 188 | } |
| 189 | |
| 190 | if (ngx_array_init(&cmcf->listen, cf->pool, 4, sizeof(ngx_imap_listen_t)) |
| 191 | != NGX_OK) |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 192 | { |
| 193 | return NGX_CONF_ERROR; |
| 194 | } |
| 195 | |
| 196 | return cmcf; |
| 197 | } |
| 198 | |
| 199 | |
| 200 | static void * |
| 201 | ngx_imap_core_create_srv_conf(ngx_conf_t *cf) |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 202 | { |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 203 | ngx_imap_core_srv_conf_t *cscf; |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 204 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 205 | cscf = ngx_pcalloc(cf->pool, sizeof(ngx_imap_core_srv_conf_t)); |
| 206 | if (cscf == NULL) { |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 207 | return NULL; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | cscf->imap_client_buffer_size = NGX_CONF_UNSET_SIZE; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 211 | cscf->protocol = NGX_CONF_UNSET_UINT; |
Igor Sysoev | cdc4630 | 2005-12-07 14:51:31 +0000 | [diff] [blame] | 212 | cscf->timeout = NGX_CONF_UNSET_MSEC; |
| 213 | cscf->so_keepalive = NGX_CONF_UNSET; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 214 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 215 | if (ngx_array_init(&cscf->pop3_capabilities, cf->pool, 4, sizeof(ngx_str_t)) |
| 216 | != NGX_OK) |
| 217 | { |
| 218 | return NULL; |
| 219 | } |
| 220 | |
| 221 | if (ngx_array_init(&cscf->imap_capabilities, cf->pool, 4, sizeof(ngx_str_t)) |
| 222 | != NGX_OK) |
| 223 | { |
| 224 | return NULL; |
| 225 | } |
| 226 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 227 | return cscf; |
| 228 | } |
| 229 | |
| 230 | |
| 231 | static char * |
| 232 | ngx_imap_core_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child) |
| 233 | { |
| 234 | ngx_imap_core_srv_conf_t *prev = parent; |
| 235 | ngx_imap_core_srv_conf_t *conf = child; |
| 236 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 237 | u_char *p; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 238 | size_t size; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 239 | ngx_str_t *c, *d; |
| 240 | ngx_uint_t i; |
| 241 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 242 | ngx_conf_merge_size_value(conf->imap_client_buffer_size, |
| 243 | prev->imap_client_buffer_size, |
| 244 | (size_t) ngx_pagesize); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 245 | ngx_conf_merge_msec_value(conf->timeout, prev->timeout, 60000); |
Igor Sysoev | 1765f47 | 2006-07-07 16:33:19 +0000 | [diff] [blame] | 246 | ngx_conf_merge_uint_value(conf->protocol, prev->protocol, |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 247 | NGX_IMAP_IMAP_PROTOCOL); |
Igor Sysoev | cdc4630 | 2005-12-07 14:51:31 +0000 | [diff] [blame] | 248 | ngx_conf_merge_value(conf->so_keepalive, prev->so_keepalive, 0); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 249 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 250 | |
Igor Sysoev | abeb122 | 2006-10-23 13:10:10 +0000 | [diff] [blame] | 251 | ngx_conf_merge_bitmask_value(conf->auth_methods, prev->auth_methods, |
| 252 | (NGX_CONF_BITMASK_SET|NGX_IMAP_AUTH_PLAIN_ENABLED)); |
| 253 | |
| 254 | |
| 255 | ngx_conf_merge_str_value(conf->server_name, prev->server_name, ""); |
| 256 | |
| 257 | if (conf->server_name.len == 0) { |
| 258 | conf->server_name.data = ngx_palloc(cf->pool, NGX_MAXHOSTNAMELEN); |
| 259 | if (conf->server_name.data == NULL) { |
| 260 | return NGX_CONF_ERROR; |
| 261 | } |
| 262 | |
| 263 | if (gethostname((char *) conf->server_name.data, NGX_MAXHOSTNAMELEN) |
| 264 | == -1) |
| 265 | { |
| 266 | ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno, |
| 267 | "gethostname() failed"); |
| 268 | return NGX_CONF_ERROR; |
| 269 | } |
| 270 | |
| 271 | conf->server_name.len = ngx_strlen(conf->server_name.data); |
| 272 | } |
| 273 | |
| 274 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 275 | if (conf->pop3_capabilities.nelts == 0) { |
| 276 | conf->pop3_capabilities = prev->pop3_capabilities; |
| 277 | } |
| 278 | |
| 279 | if (conf->pop3_capabilities.nelts == 0) { |
| 280 | |
| 281 | for (d = ngx_pop3_default_capabilities; d->len; d++) { |
| 282 | c = ngx_array_push(&conf->pop3_capabilities); |
| 283 | if (c == NULL) { |
| 284 | return NGX_CONF_ERROR; |
| 285 | } |
| 286 | |
| 287 | *c = *d; |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | size = sizeof("+OK Capability list follows" CRLF) - 1 |
| 292 | + sizeof("." CRLF) - 1; |
| 293 | |
| 294 | c = conf->pop3_capabilities.elts; |
| 295 | for (i = 0; i < conf->pop3_capabilities.nelts; i++) { |
| 296 | size += c[i].len + sizeof(CRLF) - 1; |
| 297 | } |
| 298 | |
Igor Sysoev | 50cca1c | 2006-10-24 18:38:31 +0000 | [diff] [blame] | 299 | if (conf->auth_methods & NGX_IMAP_AUTH_CRAM_MD5_ENABLED) { |
| 300 | size += sizeof("SASL LOGIN PLAIN CRAM-MD5" CRLF) - 1; |
| 301 | |
| 302 | } else { |
| 303 | size += sizeof("SASL LOGIN PLAIN" CRLF) - 1; |
| 304 | } |
| 305 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 306 | p = ngx_palloc(cf->pool, size); |
| 307 | if (p == NULL) { |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 308 | return NGX_CONF_ERROR; |
| 309 | } |
| 310 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 311 | conf->pop3_capability.len = size; |
| 312 | conf->pop3_capability.data = p; |
| 313 | |
| 314 | p = ngx_cpymem(p, "+OK Capability list follows" CRLF, |
| 315 | sizeof("+OK Capability list follows" CRLF) - 1); |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 316 | |
| 317 | for (i = 0; i < conf->pop3_capabilities.nelts; i++) { |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 318 | p = ngx_cpymem(p, c[i].data, c[i].len); |
| 319 | *p++ = CR; *p++ = LF; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Igor Sysoev | 50cca1c | 2006-10-24 18:38:31 +0000 | [diff] [blame] | 322 | if (conf->auth_methods & NGX_IMAP_AUTH_CRAM_MD5_ENABLED) { |
| 323 | p = ngx_cpymem(p, "SASL LOGIN PLAIN CRAM-MD5" CRLF, |
| 324 | sizeof("SASL LOGIN PLAIN CRAM-MD5" CRLF) - 1); |
| 325 | |
| 326 | } else { |
| 327 | p = ngx_cpymem(p, "SASL LOGIN PLAIN" CRLF, |
| 328 | sizeof("SASL LOGIN PLAIN" CRLF) - 1); |
| 329 | } |
| 330 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 331 | *p++ = '.'; *p++ = CR; *p = LF; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 332 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 333 | |
| 334 | size += sizeof("STLS" CRLF) - 1; |
| 335 | |
| 336 | p = ngx_palloc(cf->pool, size); |
| 337 | if (p == NULL) { |
| 338 | return NGX_CONF_ERROR; |
| 339 | } |
| 340 | |
| 341 | conf->pop3_starttls_capability.len = size; |
| 342 | conf->pop3_starttls_capability.data = p; |
| 343 | |
| 344 | p = ngx_cpymem(p, conf->pop3_capability.data, |
| 345 | conf->pop3_capability.len - (sizeof("." CRLF) - 1)); |
| 346 | |
| 347 | p = ngx_cpymem(p, "STLS" CRLF, sizeof("STLS" CRLF) - 1); |
| 348 | *p++ = '.'; *p++ = CR; *p = LF; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 349 | |
| 350 | |
Igor Sysoev | 50cca1c | 2006-10-24 18:38:31 +0000 | [diff] [blame] | 351 | if (conf->auth_methods & NGX_IMAP_AUTH_CRAM_MD5_ENABLED) { |
| 352 | conf->pop3_auth_capability = ngx_pop3_auth_cram_md5_capability; |
| 353 | |
| 354 | } else { |
| 355 | conf->pop3_auth_capability = ngx_pop3_auth_plain_capability; |
| 356 | } |
| 357 | |
| 358 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 359 | if (conf->imap_capabilities.nelts == 0) { |
| 360 | conf->imap_capabilities = prev->imap_capabilities; |
| 361 | } |
| 362 | |
| 363 | if (conf->imap_capabilities.nelts == 0) { |
| 364 | |
| 365 | for (d = ngx_imap_default_capabilities; d->len; d++) { |
| 366 | c = ngx_array_push(&conf->imap_capabilities); |
| 367 | if (c == NULL) { |
| 368 | return NGX_CONF_ERROR; |
| 369 | } |
| 370 | |
| 371 | *c = *d; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | size = sizeof("* CAPABILITY") - 1 + sizeof(CRLF) - 1; |
| 376 | |
| 377 | c = conf->imap_capabilities.elts; |
| 378 | for (i = 0; i < conf->imap_capabilities.nelts; i++) { |
| 379 | size += 1 + c[i].len; |
| 380 | } |
| 381 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 382 | p = ngx_palloc(cf->pool, size); |
| 383 | if (p == NULL) { |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 384 | return NGX_CONF_ERROR; |
| 385 | } |
| 386 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 387 | conf->imap_capability.len = size; |
| 388 | conf->imap_capability.data = p; |
| 389 | |
| 390 | p = ngx_cpymem(p, "* CAPABILITY", sizeof("* CAPABILITY") - 1); |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 391 | |
| 392 | for (i = 0; i < conf->imap_capabilities.nelts; i++) { |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 393 | *p++ = ' '; |
| 394 | p = ngx_cpymem(p, c[i].data, c[i].len); |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 395 | } |
| 396 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 397 | *p++ = CR; *p = LF; |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 398 | |
Igor Sysoev | d3283ff | 2005-12-05 13:18:09 +0000 | [diff] [blame] | 399 | |
| 400 | size += sizeof(" STARTTLS") - 1; |
| 401 | |
| 402 | p = ngx_palloc(cf->pool, size); |
| 403 | if (p == NULL) { |
| 404 | return NGX_CONF_ERROR; |
| 405 | } |
| 406 | |
| 407 | conf->imap_starttls_capability.len = size; |
| 408 | conf->imap_starttls_capability.data = p; |
| 409 | |
| 410 | p = ngx_cpymem(p, conf->imap_capability.data, |
| 411 | conf->imap_capability.len - (sizeof(CRLF) - 1)); |
| 412 | p = ngx_cpymem(p, " STARTTLS", sizeof(" STARTTLS") - 1); |
| 413 | *p++ = CR; *p = LF; |
| 414 | |
| 415 | |
| 416 | size += sizeof(" LOGINDISABLED") - 1; |
| 417 | |
| 418 | p = ngx_palloc(cf->pool, size); |
| 419 | if (p == NULL) { |
| 420 | return NGX_CONF_ERROR; |
| 421 | } |
| 422 | |
| 423 | conf->imap_starttls_only_capability.len = size; |
| 424 | conf->imap_starttls_only_capability.data = p; |
| 425 | |
| 426 | p = ngx_cpymem(p, conf->imap_starttls_capability.data, |
| 427 | conf->imap_starttls_capability.len - (sizeof(CRLF) - 1)); |
| 428 | p = ngx_cpymem(p, " LOGINDISABLED", sizeof(" LOGINDISABLED") - 1); |
| 429 | *p++ = CR; *p = LF; |
| 430 | |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 431 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 432 | return NGX_CONF_OK; |
| 433 | } |
| 434 | |
| 435 | |
| 436 | static char * |
| 437 | ngx_imap_core_server(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 438 | { |
| 439 | char *rv; |
| 440 | void *mconf; |
| 441 | ngx_uint_t m; |
| 442 | ngx_conf_t pcf; |
| 443 | ngx_imap_module_t *module; |
| 444 | ngx_imap_conf_ctx_t *ctx, *imap_ctx; |
| 445 | ngx_imap_core_srv_conf_t *cscf, **cscfp; |
| 446 | ngx_imap_core_main_conf_t *cmcf; |
| 447 | |
| 448 | |
| 449 | ctx = ngx_pcalloc(cf->pool, sizeof(ngx_imap_conf_ctx_t)); |
| 450 | if (ctx == NULL) { |
| 451 | return NGX_CONF_ERROR; |
| 452 | } |
| 453 | |
| 454 | imap_ctx = cf->ctx; |
| 455 | ctx->main_conf = imap_ctx->main_conf; |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 456 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 457 | /* the server{}'s srv_conf */ |
| 458 | |
| 459 | ctx->srv_conf = ngx_pcalloc(cf->pool, sizeof(void *) * ngx_imap_max_module); |
| 460 | if (ctx->srv_conf == NULL) { |
| 461 | return NGX_CONF_ERROR; |
| 462 | } |
| 463 | |
| 464 | for (m = 0; ngx_modules[m]; m++) { |
| 465 | if (ngx_modules[m]->type != NGX_IMAP_MODULE) { |
| 466 | continue; |
| 467 | } |
| 468 | |
| 469 | module = ngx_modules[m]->ctx; |
| 470 | |
| 471 | if (module->create_srv_conf) { |
| 472 | mconf = module->create_srv_conf(cf); |
| 473 | if (mconf == NULL) { |
| 474 | return NGX_CONF_ERROR; |
| 475 | } |
| 476 | |
| 477 | ctx->srv_conf[ngx_modules[m]->ctx_index] = mconf; |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | /* the server configuration context */ |
| 482 | |
| 483 | cscf = ctx->srv_conf[ngx_imap_core_module.ctx_index]; |
| 484 | cscf->ctx = ctx; |
| 485 | |
| 486 | cmcf = ctx->main_conf[ngx_imap_core_module.ctx_index]; |
| 487 | |
| 488 | cscfp = ngx_array_push(&cmcf->servers); |
| 489 | if (cscfp == NULL) { |
| 490 | return NGX_CONF_ERROR; |
| 491 | } |
| 492 | |
| 493 | *cscfp = cscf; |
| 494 | |
| 495 | |
| 496 | /* parse inside server{} */ |
| 497 | |
| 498 | pcf = *cf; |
| 499 | cf->ctx = ctx; |
| 500 | cf->cmd_type = NGX_IMAP_SRV_CONF; |
| 501 | |
| 502 | rv = ngx_conf_parse(cf, NULL); |
| 503 | |
| 504 | *cf = pcf; |
| 505 | |
| 506 | return rv; |
| 507 | } |
| 508 | |
| 509 | |
| 510 | /* AF_INET only */ |
| 511 | |
| 512 | static char * |
| 513 | ngx_imap_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 514 | { |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 515 | ngx_str_t *value; |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 516 | ngx_url_t u; |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 517 | ngx_uint_t i; |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 518 | ngx_imap_listen_t *imls; |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 519 | ngx_imap_core_main_conf_t *cmcf; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 520 | |
| 521 | value = cf->args->elts; |
| 522 | |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 523 | ngx_memzero(&u, sizeof(ngx_url_t)); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 524 | |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 525 | u.url = value[1]; |
| 526 | u.listen = 1; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 527 | |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 528 | if (ngx_parse_url(cf, &u) != NGX_OK) { |
| 529 | if (u.err) { |
| 530 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 531 | "%s in \"%V\" of the \"listen\" directive", |
| 532 | u.err, &u.url); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 533 | } |
| 534 | |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 535 | return NGX_CONF_ERROR; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 538 | cmcf = ngx_imap_conf_get_module_main_conf(cf, ngx_imap_core_module); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 539 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 540 | imls = cmcf->listen.elts; |
| 541 | |
| 542 | for (i = 0; i < cmcf->listen.nelts; i++) { |
| 543 | |
Igor Sysoev | bf3aaac | 2006-12-12 16:46:16 +0000 | [diff] [blame] | 544 | if (imls[i].addr != u.addr.in_addr || imls[i].port != u.port) { |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 545 | continue; |
| 546 | } |
| 547 | |
| 548 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 549 | "duplicate \"%V\" address and port pair", &u.url); |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 550 | return NGX_CONF_ERROR; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 553 | imls = ngx_array_push(&cmcf->listen); |
| 554 | if (imls == NULL) { |
| 555 | return NGX_CONF_ERROR; |
| 556 | } |
Igor Sysoev | c2068d0 | 2005-10-19 12:33:58 +0000 | [diff] [blame] | 557 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 558 | ngx_memzero(imls, sizeof(ngx_imap_listen_t)); |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 559 | |
Igor Sysoev | 20bf47b | 2006-10-24 13:06:55 +0000 | [diff] [blame] | 560 | imls->addr = u.addr.in_addr; |
Igor Sysoev | bf3aaac | 2006-12-12 16:46:16 +0000 | [diff] [blame] | 561 | imls->port = u.port; |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 562 | imls->family = AF_INET; |
| 563 | imls->ctx = cf->ctx; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 564 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 565 | if (cf->args->nelts == 2) { |
| 566 | return NGX_CONF_OK; |
| 567 | } |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 568 | |
Igor Sysoev | 7f7846d | 2006-04-26 09:52:47 +0000 | [diff] [blame] | 569 | if (ngx_strcmp(value[2].data, "bind") == 0) { |
| 570 | imls->bind = 1; |
| 571 | return NGX_CONF_OK; |
| 572 | } |
| 573 | |
| 574 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 575 | "the invalid \"%V\" parameter", &value[2]); |
| 576 | return NGX_CONF_ERROR; |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 577 | } |
Igor Sysoev | 5192b36 | 2005-07-08 14:34:20 +0000 | [diff] [blame] | 578 | |
| 579 | |
| 580 | static char * |
| 581 | ngx_imap_core_capability(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 582 | { |
| 583 | char *p = conf; |
| 584 | |
| 585 | ngx_str_t *c, *value; |
| 586 | ngx_uint_t i; |
| 587 | ngx_array_t *a; |
| 588 | |
| 589 | a = (ngx_array_t *) (p + cmd->offset); |
| 590 | |
| 591 | value = cf->args->elts; |
| 592 | |
| 593 | for (i = 1; i < cf->args->nelts; i++) { |
| 594 | c = ngx_array_push(a); |
| 595 | if (c == NULL) { |
| 596 | return NGX_CONF_ERROR; |
| 597 | } |
| 598 | |
| 599 | *c = value[i]; |
| 600 | } |
| 601 | |
| 602 | return NGX_CONF_OK; |
| 603 | } |