blob: 1efff5b515ccf8724baf75efada7ad533e1971bf [file] [log] [blame]
Igor Sysoev02c8d182007-03-19 13:36:56 +00001
2/*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7#ifndef _NGX_MAIL_H_INCLUDED_
8#define _NGX_MAIL_H_INCLUDED_
9
10
11#include <ngx_config.h>
12#include <ngx_core.h>
13#include <ngx_event.h>
14#include <ngx_event_connect.h>
15
16#if (NGX_MAIL_SSL)
17#include <ngx_mail_ssl_module.h>
18#endif
19
20
21
22typedef struct {
23 void **main_conf;
24 void **srv_conf;
25} ngx_mail_conf_ctx_t;
26
27
28typedef struct {
29 in_addr_t addr;
30 in_port_t port;
31 int family;
32
33 /* server ctx */
34 ngx_mail_conf_ctx_t *ctx;
35
36 unsigned bind:1;
37} ngx_mail_listen_t;
38
39
40typedef struct {
41 in_addr_t addr;
42 ngx_mail_conf_ctx_t *ctx;
43 ngx_str_t addr_text;
44} ngx_mail_in_addr_t;
45
46
47typedef struct {
48 ngx_mail_in_addr_t *addrs; /* array of ngx_mail_in_addr_t */
49 ngx_uint_t naddrs;
50} ngx_mail_in_port_t;
51
52
53typedef struct {
54 in_port_t port;
55 ngx_array_t addrs; /* array of ngx_mail_conf_in_addr_t */
56} ngx_mail_conf_in_port_t;
57
58
59typedef struct {
60 in_addr_t addr;
61 ngx_mail_conf_ctx_t *ctx;
62 unsigned bind:1;
63} ngx_mail_conf_in_addr_t;
64
65
66typedef struct {
67 ngx_array_t servers; /* ngx_mail_core_srv_conf_t */
68 ngx_array_t listen; /* ngx_mail_listen_t */
69} ngx_mail_core_main_conf_t;
70
71
72#define NGX_MAIL_POP3_PROTOCOL 0
73#define NGX_MAIL_IMAP_PROTOCOL 1
74#define NGX_MAIL_SMTP_PROTOCOL 2
75
Igor Sysoev48714082007-09-15 16:51:16 +000076
77typedef struct ngx_mail_protocol_s ngx_mail_protocol_t;
78
79
Igor Sysoev02c8d182007-03-19 13:36:56 +000080typedef struct {
Igor Sysoev48714082007-09-15 16:51:16 +000081 ngx_mail_protocol_t *protocol;
82
Igor Sysoev02c8d182007-03-19 13:36:56 +000083 ngx_msec_t timeout;
Igor Sysoev45450462008-02-13 13:50:04 +000084 ngx_msec_t resolver_timeout;
Igor Sysoev02c8d182007-03-19 13:36:56 +000085
86 ngx_flag_t so_keepalive;
87
Igor Sysoev02c8d182007-03-19 13:36:56 +000088 ngx_str_t server_name;
Igor Sysoev02c8d182007-03-19 13:36:56 +000089
Igor Sysoev48714082007-09-15 16:51:16 +000090 u_char *file_name;
91 ngx_int_t line;
Igor Sysoev02c8d182007-03-19 13:36:56 +000092
Igor Sysoev45450462008-02-13 13:50:04 +000093 ngx_resolver_t *resolver;
94
Igor Sysoev02c8d182007-03-19 13:36:56 +000095 /* server ctx */
96 ngx_mail_conf_ctx_t *ctx;
97} ngx_mail_core_srv_conf_t;
98
99
Igor Sysoev02c8d182007-03-19 13:36:56 +0000100typedef enum {
101 ngx_pop3_start = 0,
102 ngx_pop3_user,
103 ngx_pop3_passwd,
104 ngx_pop3_auth_login_username,
105 ngx_pop3_auth_login_password,
106 ngx_pop3_auth_plain,
107 ngx_pop3_auth_cram_md5
Igor Sysoev7e924422007-11-30 22:07:05 +0000108} ngx_pop3_state_e;
Igor Sysoev02c8d182007-03-19 13:36:56 +0000109
110
111typedef enum {
112 ngx_imap_start = 0,
Igor Sysoevf4283a92007-07-20 19:38:08 +0000113 ngx_imap_auth_login_username,
114 ngx_imap_auth_login_password,
115 ngx_imap_auth_plain,
116 ngx_imap_auth_cram_md5,
Igor Sysoev02c8d182007-03-19 13:36:56 +0000117 ngx_imap_login,
118 ngx_imap_user,
119 ngx_imap_passwd
120} ngx_imap_state_e;
121
122
123typedef enum {
124 ngx_smtp_start = 0,
125 ngx_smtp_auth_login_username,
126 ngx_smtp_auth_login_password,
127 ngx_smtp_auth_plain,
128 ngx_smtp_auth_cram_md5,
129 ngx_smtp_helo,
130 ngx_smtp_noxclient,
131 ngx_smtp_xclient
132} ngx_smtp_state_e;
133
134
135typedef struct {
136 ngx_peer_connection_t upstream;
137 ngx_buf_t *buffer;
138} ngx_mail_proxy_ctx_t;
139
140
141typedef struct {
142 uint32_t signature; /* "MAIL" */
143
144 ngx_connection_t *connection;
145
146 ngx_str_t out;
147 ngx_buf_t *buffer;
148
149 void **ctx;
150 void **main_conf;
151 void **srv_conf;
152
Igor Sysoev45450462008-02-13 13:50:04 +0000153 ngx_resolver_ctx_t *resolver_ctx;
154
Igor Sysoev02c8d182007-03-19 13:36:56 +0000155 ngx_mail_proxy_ctx_t *proxy;
156
157 ngx_uint_t mail_state;
158
Igor Sysoev48714082007-09-15 16:51:16 +0000159 unsigned protocol:3;
Igor Sysoev02c8d182007-03-19 13:36:56 +0000160 unsigned blocked:1;
161 unsigned quit:1;
Igor Sysoev02c8d182007-03-19 13:36:56 +0000162 unsigned quoted:1;
163 unsigned backslash:1;
164 unsigned no_sync_literal:1;
165 unsigned starttls:1;
166 unsigned esmtp:1;
167 unsigned auth_method:2;
168 unsigned auth_wait:1;
169
170 ngx_str_t login;
171 ngx_str_t passwd;
172
173 ngx_str_t salt;
174 ngx_str_t tag;
175 ngx_str_t tagged_line;
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000176 ngx_str_t text;
Igor Sysoev02c8d182007-03-19 13:36:56 +0000177
178 ngx_str_t *addr_text;
Igor Sysoev45450462008-02-13 13:50:04 +0000179 ngx_str_t host;
Igor Sysoev02c8d182007-03-19 13:36:56 +0000180 ngx_str_t smtp_helo;
181
182 ngx_uint_t command;
183 ngx_array_t args;
184
185 ngx_uint_t login_attempt;
186
Igor Sysoev48714082007-09-15 16:51:16 +0000187 /* used to parse POP3/IMAP/SMTP command */
Igor Sysoev02c8d182007-03-19 13:36:56 +0000188
189 ngx_uint_t state;
190 u_char *cmd_start;
191 u_char *arg_start;
192 u_char *arg_end;
193 ngx_uint_t literal_len;
194} ngx_mail_session_t;
195
196
197typedef struct {
198 ngx_str_t *client;
199 ngx_mail_session_t *session;
200} ngx_mail_log_ctx_t;
201
202
Igor Sysoevf4283a92007-07-20 19:38:08 +0000203#define NGX_POP3_USER 1
204#define NGX_POP3_PASS 2
205#define NGX_POP3_CAPA 3
206#define NGX_POP3_QUIT 4
207#define NGX_POP3_NOOP 5
208#define NGX_POP3_STLS 6
209#define NGX_POP3_APOP 7
210#define NGX_POP3_AUTH 8
211#define NGX_POP3_STAT 9
212#define NGX_POP3_LIST 10
213#define NGX_POP3_RETR 11
214#define NGX_POP3_DELE 12
215#define NGX_POP3_RSET 13
216#define NGX_POP3_TOP 14
217#define NGX_POP3_UIDL 15
Igor Sysoev02c8d182007-03-19 13:36:56 +0000218
219
Igor Sysoevf4283a92007-07-20 19:38:08 +0000220#define NGX_IMAP_LOGIN 1
221#define NGX_IMAP_LOGOUT 2
222#define NGX_IMAP_CAPABILITY 3
223#define NGX_IMAP_NOOP 4
224#define NGX_IMAP_STARTTLS 5
Igor Sysoev02c8d182007-03-19 13:36:56 +0000225
Igor Sysoevf4283a92007-07-20 19:38:08 +0000226#define NGX_IMAP_NEXT 6
227
228#define NGX_IMAP_AUTHENTICATE 7
Igor Sysoev02c8d182007-03-19 13:36:56 +0000229
230
Igor Sysoevf4283a92007-07-20 19:38:08 +0000231#define NGX_SMTP_HELO 1
232#define NGX_SMTP_EHLO 2
233#define NGX_SMTP_AUTH 3
234#define NGX_SMTP_QUIT 4
235#define NGX_SMTP_NOOP 5
236#define NGX_SMTP_MAIL 6
237#define NGX_SMTP_RSET 7
238#define NGX_SMTP_RCPT 8
239#define NGX_SMTP_DATA 9
240#define NGX_SMTP_VRFY 10
241#define NGX_SMTP_EXPN 11
242#define NGX_SMTP_HELP 12
243#define NGX_SMTP_STARTTLS 13
Igor Sysoev02c8d182007-03-19 13:36:56 +0000244
245
246#define NGX_MAIL_AUTH_PLAIN 0
247#define NGX_MAIL_AUTH_LOGIN 1
248#define NGX_MAIL_AUTH_APOP 2
249#define NGX_MAIL_AUTH_CRAM_MD5 3
250
251
252#define NGX_MAIL_AUTH_PLAIN_ENABLED 0x0002
253#define NGX_MAIL_AUTH_LOGIN_ENABLED 0x0004
254#define NGX_MAIL_AUTH_APOP_ENABLED 0x0008
255#define NGX_MAIL_AUTH_CRAM_MD5_ENABLED 0x0010
256
257
258#define NGX_MAIL_PARSE_INVALID_COMMAND 20
259
260
Igor Sysoev48714082007-09-15 16:51:16 +0000261typedef void (*ngx_mail_init_session_pt)(ngx_mail_session_t *s,
262 ngx_connection_t *c);
263typedef void (*ngx_mail_init_protocol_pt)(ngx_event_t *rev);
264typedef void (*ngx_mail_auth_state_pt)(ngx_event_t *rev);
265typedef ngx_int_t (*ngx_mail_parse_command_pt)(ngx_mail_session_t *s);
Igor Sysoev02c8d182007-03-19 13:36:56 +0000266
Igor Sysoev48714082007-09-15 16:51:16 +0000267
268struct ngx_mail_protocol_s {
269 ngx_str_t name;
270 in_port_t port[4];
271 ngx_uint_t type;
272
273 ngx_mail_init_session_pt init_session;
274 ngx_mail_init_protocol_pt init_protocol;
275 ngx_mail_parse_command_pt parse_command;
276 ngx_mail_auth_state_pt auth_state;
277
278 ngx_str_t internal_server_error;
279};
280
281
282typedef struct {
283 ngx_mail_protocol_t *protocol;
284
285 void *(*create_main_conf)(ngx_conf_t *cf);
286 char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
287
288 void *(*create_srv_conf)(ngx_conf_t *cf);
289 char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
290 void *conf);
291} ngx_mail_module_t;
292
293
294#define NGX_MAIL_MODULE 0x4C49414D /* "MAIL" */
295
296#define NGX_MAIL_MAIN_CONF 0x02000000
297#define NGX_MAIL_SRV_CONF 0x04000000
Igor Sysoev02c8d182007-03-19 13:36:56 +0000298
299
300#define NGX_MAIL_MAIN_CONF_OFFSET offsetof(ngx_mail_conf_ctx_t, main_conf)
301#define NGX_MAIL_SRV_CONF_OFFSET offsetof(ngx_mail_conf_ctx_t, srv_conf)
302
303
304#define ngx_mail_get_module_ctx(s, module) (s)->ctx[module.ctx_index]
305#define ngx_mail_set_ctx(s, c, module) s->ctx[module.ctx_index] = c;
306#define ngx_mail_delete_ctx(s, module) s->ctx[module.ctx_index] = NULL;
307
308
309#define ngx_mail_get_module_main_conf(s, module) \
310 (s)->main_conf[module.ctx_index]
311#define ngx_mail_get_module_srv_conf(s, module) (s)->srv_conf[module.ctx_index]
312
313#define ngx_mail_conf_get_module_main_conf(cf, module) \
314 ((ngx_mail_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index]
Igor Sysoev810dc162007-07-20 18:36:04 +0000315#define ngx_mail_conf_get_module_srv_conf(cf, module) \
316 ((ngx_mail_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index]
Igor Sysoev02c8d182007-03-19 13:36:56 +0000317
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000318
319#if (NGX_MAIL_SSL)
320void ngx_mail_starttls_handler(ngx_event_t *rev);
Igor Sysoev5fbe1212007-09-13 21:24:27 +0000321ngx_int_t ngx_mail_starttls_only(ngx_mail_session_t *s, ngx_connection_t *c);
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000322#endif
323
Igor Sysoev02c8d182007-03-19 13:36:56 +0000324
325void ngx_mail_init_connection(ngx_connection_t *c);
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000326
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000327ngx_int_t ngx_mail_salt(ngx_mail_session_t *s, ngx_connection_t *c,
328 ngx_mail_core_srv_conf_t *cscf);
329ngx_int_t ngx_mail_auth_plain(ngx_mail_session_t *s, ngx_connection_t *c,
330 ngx_uint_t n);
331ngx_int_t ngx_mail_auth_login_username(ngx_mail_session_t *s,
332 ngx_connection_t *c);
333ngx_int_t ngx_mail_auth_login_password(ngx_mail_session_t *s,
334 ngx_connection_t *c);
Igor Sysoev5fbe1212007-09-13 21:24:27 +0000335ngx_int_t ngx_mail_auth_cram_md5_salt(ngx_mail_session_t *s,
336 ngx_connection_t *c, char *prefix, size_t len);
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000337ngx_int_t ngx_mail_auth_cram_md5(ngx_mail_session_t *s, ngx_connection_t *c);
Igor Sysoev48714082007-09-15 16:51:16 +0000338ngx_int_t ngx_mail_auth_parse(ngx_mail_session_t *s, ngx_connection_t *c);
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000339
340void ngx_mail_send(ngx_event_t *wev);
Igor Sysoev24229502007-09-14 14:04:24 +0000341ngx_int_t ngx_mail_read_command(ngx_mail_session_t *s, ngx_connection_t *c);
342void ngx_mail_auth(ngx_mail_session_t *s, ngx_connection_t *c);
Igor Sysoev02c8d182007-03-19 13:36:56 +0000343void ngx_mail_close_connection(ngx_connection_t *c);
344void ngx_mail_session_internal_server_error(ngx_mail_session_t *s);
Igor Sysoev6cc54cc2007-09-13 20:13:18 +0000345u_char *ngx_mail_log_error(ngx_log_t *log, u_char *buf, size_t len);
346
347
Igor Sysoev48714082007-09-15 16:51:16 +0000348char *ngx_mail_capabilities(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
Igor Sysoev02c8d182007-03-19 13:36:56 +0000349
350
351/* STUB */
352void ngx_mail_proxy_init(ngx_mail_session_t *s, ngx_peer_addr_t *peer);
353void ngx_mail_auth_http_init(ngx_mail_session_t *s);
354/**/
355
356
357extern ngx_uint_t ngx_mail_max_module;
358extern ngx_module_t ngx_mail_core_module;
359
360
361#endif /* _NGX_MAIL_H_INCLUDED_ */