src/mail/ngx_mail.h - nginx source code

Data types defined

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #ifndef _NGX_MAIL_H_INCLUDED_
  6. #define _NGX_MAIL_H_INCLUDED_


  7. #include <ngx_config.h>
  8. #include <ngx_core.h>
  9. #include <ngx_event.h>
  10. #include <ngx_event_connect.h>

  11. #if (NGX_MAIL_SSL)
  12. #include <ngx_mail_ssl_module.h>
  13. #endif



  14. typedef struct {
  15.     void                  **main_conf;
  16.     void                  **srv_conf;
  17. } ngx_mail_conf_ctx_t;


  18. typedef struct {
  19.     struct sockaddr        *sockaddr;
  20.     socklen_t               socklen;
  21.     ngx_str_t               addr_text;

  22.     /* server ctx */
  23.     ngx_mail_conf_ctx_t    *ctx;

  24.     unsigned                bind:1;
  25.     unsigned                wildcard:1;
  26.     unsigned                ssl:1;
  27. #if (NGX_HAVE_INET6)
  28.     unsigned                ipv6only:1;
  29. #endif
  30.     unsigned                so_keepalive:2;
  31.     unsigned                proxy_protocol:1;
  32. #if (NGX_HAVE_KEEPALIVE_TUNABLE)
  33.     int                     tcp_keepidle;
  34.     int                     tcp_keepintvl;
  35.     int                     tcp_keepcnt;
  36. #endif
  37.     int                     backlog;
  38.     int                     rcvbuf;
  39.     int                     sndbuf;
  40. } ngx_mail_listen_t;


  41. typedef struct {
  42.     ngx_mail_conf_ctx_t    *ctx;
  43.     ngx_str_t               addr_text;
  44.     unsigned                ssl:1;
  45.     unsigned                proxy_protocol:1;
  46. } ngx_mail_addr_conf_t;

  47. typedef struct {
  48.     in_addr_t               addr;
  49.     ngx_mail_addr_conf_t    conf;
  50. } ngx_mail_in_addr_t;


  51. #if (NGX_HAVE_INET6)

  52. typedef struct {
  53.     struct in6_addr         addr6;
  54.     ngx_mail_addr_conf_t    conf;
  55. } ngx_mail_in6_addr_t;

  56. #endif


  57. typedef struct {
  58.     /* ngx_mail_in_addr_t or ngx_mail_in6_addr_t */
  59.     void                   *addrs;
  60.     ngx_uint_t              naddrs;
  61. } ngx_mail_port_t;


  62. typedef struct {
  63.     int                     family;
  64.     in_port_t               port;
  65.     ngx_array_t             addrs;       /* array of ngx_mail_conf_addr_t */
  66. } ngx_mail_conf_port_t;


  67. typedef struct {
  68.     ngx_mail_listen_t       opt;
  69. } ngx_mail_conf_addr_t;


  70. typedef struct {
  71.     ngx_array_t             servers;     /* ngx_mail_core_srv_conf_t */
  72.     ngx_array_t             listen;      /* ngx_mail_listen_t */
  73. } ngx_mail_core_main_conf_t;


  74. #define NGX_MAIL_POP3_PROTOCOL  0
  75. #define NGX_MAIL_IMAP_PROTOCOL  1
  76. #define NGX_MAIL_SMTP_PROTOCOL  2


  77. typedef struct ngx_mail_protocol_s  ngx_mail_protocol_t;


  78. typedef struct {
  79.     ngx_mail_protocol_t    *protocol;

  80.     ngx_msec_t              timeout;
  81.     ngx_msec_t              resolver_timeout;

  82.     ngx_uint_t              max_errors;

  83.     ngx_str_t               server_name;

  84.     u_char                 *file_name;
  85.     ngx_uint_t              line;

  86.     ngx_resolver_t         *resolver;
  87.     ngx_log_t              *error_log;

  88.     /* server ctx */
  89.     ngx_mail_conf_ctx_t    *ctx;

  90.     ngx_uint_t              listen;  /* unsigned  listen:1; */
  91. } ngx_mail_core_srv_conf_t;


  92. typedef enum {
  93.     ngx_pop3_start = 0,
  94.     ngx_pop3_user,
  95.     ngx_pop3_passwd,
  96.     ngx_pop3_auth_login_username,
  97.     ngx_pop3_auth_login_password,
  98.     ngx_pop3_auth_plain,
  99.     ngx_pop3_auth_cram_md5,
  100.     ngx_pop3_auth_external
  101. } ngx_pop3_state_e;


  102. typedef enum {
  103.     ngx_imap_start = 0,
  104.     ngx_imap_auth_login_username,
  105.     ngx_imap_auth_login_password,
  106.     ngx_imap_auth_plain,
  107.     ngx_imap_auth_cram_md5,
  108.     ngx_imap_auth_external,
  109.     ngx_imap_login,
  110.     ngx_imap_user,
  111.     ngx_imap_passwd
  112. } ngx_imap_state_e;


  113. typedef enum {
  114.     ngx_smtp_start = 0,
  115.     ngx_smtp_auth_login_username,
  116.     ngx_smtp_auth_login_password,
  117.     ngx_smtp_auth_plain,
  118.     ngx_smtp_auth_cram_md5,
  119.     ngx_smtp_auth_external,
  120.     ngx_smtp_helo,
  121.     ngx_smtp_helo_xclient,
  122.     ngx_smtp_helo_auth,
  123.     ngx_smtp_helo_from,
  124.     ngx_smtp_xclient,
  125.     ngx_smtp_xclient_from,
  126.     ngx_smtp_xclient_helo,
  127.     ngx_smtp_xclient_auth,
  128.     ngx_smtp_from,
  129.     ngx_smtp_to
  130. } ngx_smtp_state_e;


  131. typedef struct {
  132.     ngx_peer_connection_t   upstream;
  133.     ngx_buf_t              *buffer;
  134.     ngx_uint_t              proxy_protocol;  /* unsigned  proxy_protocol:1; */
  135. } ngx_mail_proxy_ctx_t;


  136. typedef struct {
  137.     uint32_t                signature;         /* "MAIL" */

  138.     ngx_connection_t       *connection;

  139.     ngx_str_t               out;
  140.     ngx_buf_t              *buffer;

  141.     void                  **ctx;
  142.     void                  **main_conf;
  143.     void                  **srv_conf;

  144.     ngx_resolver_ctx_t     *resolver_ctx;

  145.     ngx_mail_proxy_ctx_t   *proxy;

  146.     ngx_uint_t              mail_state;

  147.     unsigned                ssl:1;
  148.     unsigned                protocol:3;
  149.     unsigned                blocked:1;
  150.     unsigned                quit:1;
  151.     unsigned                quoted:1;
  152.     unsigned                backslash:1;
  153.     unsigned                no_sync_literal:1;
  154.     unsigned                starttls:1;
  155.     unsigned                esmtp:1;
  156.     unsigned                auth_method:3;
  157.     unsigned                auth_wait:1;

  158.     ngx_str_t               login;
  159.     ngx_str_t               passwd;

  160.     ngx_str_t               salt;
  161.     ngx_str_t               tag;
  162.     ngx_str_t               tagged_line;
  163.     ngx_str_t               text;

  164.     ngx_str_t              *addr_text;
  165.     ngx_str_t               host;
  166.     ngx_str_t               smtp_helo;
  167.     ngx_str_t               smtp_from;
  168.     ngx_str_t               smtp_to;

  169.     ngx_str_t               cmd;

  170.     ngx_uint_t              command;
  171.     ngx_array_t             args;

  172.     ngx_uint_t              errors;
  173.     ngx_uint_t              login_attempt;

  174.     /* used to parse POP3/IMAP/SMTP command */

  175.     ngx_uint_t              state;
  176.     u_char                 *tag_start;
  177.     u_char                 *cmd_start;
  178.     u_char                 *arg_start;
  179.     ngx_uint_t              literal_len;
  180. } ngx_mail_session_t;


  181. typedef struct {
  182.     ngx_str_t              *client;
  183.     ngx_mail_session_t     *session;
  184. } ngx_mail_log_ctx_t;


  185. #define NGX_POP3_USER          1
  186. #define NGX_POP3_PASS          2
  187. #define NGX_POP3_CAPA          3
  188. #define NGX_POP3_QUIT          4
  189. #define NGX_POP3_NOOP          5
  190. #define NGX_POP3_STLS          6
  191. #define NGX_POP3_APOP          7
  192. #define NGX_POP3_AUTH          8
  193. #define NGX_POP3_STAT          9
  194. #define NGX_POP3_LIST          10
  195. #define NGX_POP3_RETR          11
  196. #define NGX_POP3_DELE          12
  197. #define NGX_POP3_RSET          13
  198. #define NGX_POP3_TOP           14
  199. #define NGX_POP3_UIDL          15


  200. #define NGX_IMAP_LOGIN         1
  201. #define NGX_IMAP_LOGOUT        2
  202. #define NGX_IMAP_CAPABILITY    3
  203. #define NGX_IMAP_NOOP          4
  204. #define NGX_IMAP_STARTTLS      5

  205. #define NGX_IMAP_NEXT          6

  206. #define NGX_IMAP_AUTHENTICATE  7


  207. #define NGX_SMTP_HELO          1
  208. #define NGX_SMTP_EHLO          2
  209. #define NGX_SMTP_AUTH          3
  210. #define NGX_SMTP_QUIT          4
  211. #define NGX_SMTP_NOOP          5
  212. #define NGX_SMTP_MAIL          6
  213. #define NGX_SMTP_RSET          7
  214. #define NGX_SMTP_RCPT          8
  215. #define NGX_SMTP_DATA          9
  216. #define NGX_SMTP_VRFY          10
  217. #define NGX_SMTP_EXPN          11
  218. #define NGX_SMTP_HELP          12
  219. #define NGX_SMTP_STARTTLS      13


  220. #define NGX_MAIL_AUTH_PLAIN             0
  221. #define NGX_MAIL_AUTH_LOGIN             1
  222. #define NGX_MAIL_AUTH_LOGIN_USERNAME    2
  223. #define NGX_MAIL_AUTH_APOP              3
  224. #define NGX_MAIL_AUTH_CRAM_MD5          4
  225. #define NGX_MAIL_AUTH_EXTERNAL          5
  226. #define NGX_MAIL_AUTH_NONE              6


  227. #define NGX_MAIL_AUTH_PLAIN_ENABLED     0x0002
  228. #define NGX_MAIL_AUTH_LOGIN_ENABLED     0x0004
  229. #define NGX_MAIL_AUTH_APOP_ENABLED      0x0008
  230. #define NGX_MAIL_AUTH_CRAM_MD5_ENABLED  0x0010
  231. #define NGX_MAIL_AUTH_EXTERNAL_ENABLED  0x0020
  232. #define NGX_MAIL_AUTH_NONE_ENABLED      0x0040


  233. #define NGX_MAIL_PARSE_INVALID_COMMAND  20


  234. typedef void (*ngx_mail_init_session_pt)(ngx_mail_session_t *s,
  235.     ngx_connection_t *c);
  236. typedef void (*ngx_mail_init_protocol_pt)(ngx_event_t *rev);
  237. typedef void (*ngx_mail_auth_state_pt)(ngx_event_t *rev);
  238. typedef ngx_int_t (*ngx_mail_parse_command_pt)(ngx_mail_session_t *s);


  239. struct ngx_mail_protocol_s {
  240.     ngx_str_t                   name;
  241.     ngx_str_t                   alpn;
  242.     in_port_t                   port[4];
  243.     ngx_uint_t                  type;

  244.     ngx_mail_init_session_pt    init_session;
  245.     ngx_mail_init_protocol_pt   init_protocol;
  246.     ngx_mail_parse_command_pt   parse_command;
  247.     ngx_mail_auth_state_pt      auth_state;

  248.     ngx_str_t                   internal_server_error;
  249.     ngx_str_t                   cert_error;
  250.     ngx_str_t                   no_cert;
  251. };


  252. typedef struct {
  253.     ngx_mail_protocol_t        *protocol;

  254.     void                       *(*create_main_conf)(ngx_conf_t *cf);
  255.     char                       *(*init_main_conf)(ngx_conf_t *cf, void *conf);

  256.     void                       *(*create_srv_conf)(ngx_conf_t *cf);
  257.     char                       *(*merge_srv_conf)(ngx_conf_t *cf, void *prev,
  258.                                                   void *conf);
  259. } ngx_mail_module_t;


  260. #define NGX_MAIL_MODULE         0x4C49414D     /* "MAIL" */

  261. #define NGX_MAIL_MAIN_CONF      0x02000000
  262. #define NGX_MAIL_SRV_CONF       0x04000000


  263. #define NGX_MAIL_MAIN_CONF_OFFSET  offsetof(ngx_mail_conf_ctx_t, main_conf)
  264. #define NGX_MAIL_SRV_CONF_OFFSET   offsetof(ngx_mail_conf_ctx_t, srv_conf)


  265. #define ngx_mail_get_module_ctx(s, module)     (s)->ctx[module.ctx_index]
  266. #define ngx_mail_set_ctx(s, c, module)         s->ctx[module.ctx_index] = c;
  267. #define ngx_mail_delete_ctx(s, module)         s->ctx[module.ctx_index] = NULL;


  268. #define ngx_mail_get_module_main_conf(s, module)                             \
  269.     (s)->main_conf[module.ctx_index]
  270. #define ngx_mail_get_module_srv_conf(s, module)  (s)->srv_conf[module.ctx_index]

  271. #define ngx_mail_conf_get_module_main_conf(cf, module)                       \
  272.     ((ngx_mail_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index]
  273. #define ngx_mail_conf_get_module_srv_conf(cf, module)                        \
  274.     ((ngx_mail_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index]


  275. #if (NGX_MAIL_SSL)
  276. void ngx_mail_starttls_handler(ngx_event_t *rev);
  277. ngx_int_t ngx_mail_starttls_only(ngx_mail_session_t *s, ngx_connection_t *c);
  278. #endif


  279. void ngx_mail_init_connection(ngx_connection_t *c);

  280. ngx_int_t ngx_mail_salt(ngx_mail_session_t *s, ngx_connection_t *c,
  281.     ngx_mail_core_srv_conf_t *cscf);
  282. ngx_int_t ngx_mail_auth_plain(ngx_mail_session_t *s, ngx_connection_t *c,
  283.     ngx_uint_t n);
  284. ngx_int_t ngx_mail_auth_login_username(ngx_mail_session_t *s,
  285.     ngx_connection_t *c, ngx_uint_t n);
  286. ngx_int_t ngx_mail_auth_login_password(ngx_mail_session_t *s,
  287.     ngx_connection_t *c);
  288. ngx_int_t ngx_mail_auth_cram_md5_salt(ngx_mail_session_t *s,
  289.     ngx_connection_t *c, char *prefix, size_t len);
  290. ngx_int_t ngx_mail_auth_cram_md5(ngx_mail_session_t *s, ngx_connection_t *c);
  291. ngx_int_t ngx_mail_auth_external(ngx_mail_session_t *s, ngx_connection_t *c,
  292.     ngx_uint_t n);
  293. ngx_int_t ngx_mail_auth_parse(ngx_mail_session_t *s, ngx_connection_t *c);

  294. void ngx_mail_send(ngx_event_t *wev);
  295. ngx_int_t ngx_mail_read_command(ngx_mail_session_t *s, ngx_connection_t *c);
  296. void ngx_mail_auth(ngx_mail_session_t *s, ngx_connection_t *c);
  297. void ngx_mail_close_connection(ngx_connection_t *c);
  298. void ngx_mail_session_internal_server_error(ngx_mail_session_t *s);
  299. u_char *ngx_mail_log_error(ngx_log_t *log, u_char *buf, size_t len);


  300. char *ngx_mail_capabilities(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);


  301. /* STUB */
  302. void ngx_mail_proxy_init(ngx_mail_session_t *s, ngx_addr_t *peer);
  303. void ngx_mail_auth_http_init(ngx_mail_session_t *s);
  304. ngx_int_t ngx_mail_realip_handler(ngx_mail_session_t *s);
  305. /**/


  306. extern ngx_uint_t    ngx_mail_max_module;
  307. extern ngx_module_t  ngx_mail_core_module;


  308. #endif /* _NGX_MAIL_H_INCLUDED_ */