src/core/ngx_connection.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_CONNECTION_H_INCLUDED_
  6. #define _NGX_CONNECTION_H_INCLUDED_


  7. #include <ngx_config.h>
  8. #include <ngx_core.h>


  9. typedef struct ngx_listening_s  ngx_listening_t;

  10. struct ngx_listening_s {
  11.     ngx_socket_t        fd;

  12.     struct sockaddr    *sockaddr;
  13.     socklen_t           socklen;    /* size of sockaddr */
  14.     size_t              addr_text_max_len;
  15.     ngx_str_t           addr_text;

  16.     int                 type;

  17.     int                 backlog;
  18.     int                 rcvbuf;
  19.     int                 sndbuf;
  20. #if (NGX_HAVE_KEEPALIVE_TUNABLE)
  21.     int                 keepidle;
  22.     int                 keepintvl;
  23.     int                 keepcnt;
  24. #endif

  25.     /* handler of accepted connection */
  26.     ngx_connection_handler_pt   handler;

  27.     void               *servers;  /* array of ngx_http_in_addr_t, for example */

  28.     ngx_log_t           log;
  29.     ngx_log_t          *logp;

  30.     size_t              pool_size;
  31.     /* should be here because of the AcceptEx() preread */
  32.     size_t              post_accept_buffer_size;

  33.     ngx_listening_t    *previous;
  34.     ngx_connection_t   *connection;

  35.     ngx_rbtree_t        rbtree;
  36.     ngx_rbtree_node_t   sentinel;

  37.     ngx_uint_t          worker;

  38.     unsigned            open:1;
  39.     unsigned            remain:1;
  40.     unsigned            ignore:1;

  41.     unsigned            bound:1;       /* already bound */
  42.     unsigned            inherited:1;   /* inherited from previous process */
  43.     unsigned            nonblocking_accept:1;
  44.     unsigned            listen:1;
  45.     unsigned            nonblocking:1;
  46.     unsigned            shared:1;    /* shared between threads or processes */
  47.     unsigned            addr_ntop:1;
  48.     unsigned            wildcard:1;

  49. #if (NGX_HAVE_INET6)
  50.     unsigned            ipv6only:1;
  51. #endif
  52.     unsigned            reuseport:1;
  53.     unsigned            add_reuseport:1;
  54.     unsigned            keepalive:2;
  55.     unsigned            quic:1;

  56.     unsigned            deferred_accept:1;
  57.     unsigned            delete_deferred:1;
  58.     unsigned            add_deferred:1;
  59. #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
  60.     char               *accept_filter;
  61. #endif
  62. #if (NGX_HAVE_SETFIB)
  63.     int                 setfib;
  64. #endif

  65. #if (NGX_HAVE_TCP_FASTOPEN)
  66.     int                 fastopen;
  67. #endif

  68. };


  69. typedef enum {
  70.     NGX_ERROR_ALERT = 0,
  71.     NGX_ERROR_ERR,
  72.     NGX_ERROR_INFO,
  73.     NGX_ERROR_IGNORE_ECONNRESET,
  74.     NGX_ERROR_IGNORE_EINVAL,
  75.     NGX_ERROR_IGNORE_EMSGSIZE
  76. } ngx_connection_log_error_e;


  77. typedef enum {
  78.     NGX_TCP_NODELAY_UNSET = 0,
  79.     NGX_TCP_NODELAY_SET,
  80.     NGX_TCP_NODELAY_DISABLED
  81. } ngx_connection_tcp_nodelay_e;


  82. typedef enum {
  83.     NGX_TCP_NOPUSH_UNSET = 0,
  84.     NGX_TCP_NOPUSH_SET,
  85.     NGX_TCP_NOPUSH_DISABLED
  86. } ngx_connection_tcp_nopush_e;


  87. #define NGX_LOWLEVEL_BUFFERED  0x0f
  88. #define NGX_SSL_BUFFERED       0x01
  89. #define NGX_HTTP_V2_BUFFERED   0x02


  90. struct ngx_connection_s {
  91.     void               *data;
  92.     ngx_event_t        *read;
  93.     ngx_event_t        *write;

  94.     ngx_socket_t        fd;

  95.     ngx_recv_pt         recv;
  96.     ngx_send_pt         send;
  97.     ngx_recv_chain_pt   recv_chain;
  98.     ngx_send_chain_pt   send_chain;

  99.     ngx_listening_t    *listening;

  100.     off_t               sent;

  101.     ngx_log_t          *log;

  102.     ngx_pool_t         *pool;

  103.     int                 type;

  104.     struct sockaddr    *sockaddr;
  105.     socklen_t           socklen;
  106.     ngx_str_t           addr_text;

  107.     ngx_proxy_protocol_t  *proxy_protocol;

  108. #if (NGX_QUIC || NGX_COMPAT)
  109.     ngx_quic_stream_t     *quic;
  110. #endif

  111. #if (NGX_SSL || NGX_COMPAT)
  112.     ngx_ssl_connection_t  *ssl;
  113. #endif

  114.     ngx_udp_connection_t  *udp;

  115.     struct sockaddr    *local_sockaddr;
  116.     socklen_t           local_socklen;

  117.     ngx_buf_t          *buffer;

  118.     ngx_queue_t         queue;

  119.     ngx_atomic_uint_t   number;

  120.     ngx_msec_t          start_time;
  121.     ngx_uint_t          requests;

  122.     unsigned            buffered:8;

  123.     unsigned            log_error:3;     /* ngx_connection_log_error_e */

  124.     unsigned            timedout:1;
  125.     unsigned            error:1;
  126.     unsigned            destroyed:1;
  127.     unsigned            pipeline:1;

  128.     unsigned            idle:1;
  129.     unsigned            reusable:1;
  130.     unsigned            close:1;
  131.     unsigned            shared:1;

  132.     unsigned            sendfile:1;
  133.     unsigned            sndlowat:1;
  134.     unsigned            tcp_nodelay:2;   /* ngx_connection_tcp_nodelay_e */
  135.     unsigned            tcp_nopush:2;    /* ngx_connection_tcp_nopush_e */

  136.     unsigned            need_last_buf:1;
  137.     unsigned            need_flush_buf:1;

  138. #if (NGX_HAVE_SENDFILE_NODISKIO || NGX_COMPAT)
  139.     unsigned            busy_count:2;
  140. #endif

  141. #if (NGX_THREADS || NGX_COMPAT)
  142.     ngx_thread_task_t  *sendfile_task;
  143. #endif
  144. };


  145. #define ngx_set_connection_log(c, l)                                         \
  146.                                                                              \
  147.     c->log->file = l->file;                                                  \
  148.     c->log->next = l->next;                                                  \
  149.     c->log->writer = l->writer;                                              \
  150.     c->log->wdata = l->wdata;                                                \
  151.     if (!(c->log->log_level & NGX_LOG_DEBUG_CONNECTION)) {                   \
  152.         c->log->log_level = l->log_level;                                    \
  153.     }


  154. ngx_listening_t *ngx_create_listening(ngx_conf_t *cf, struct sockaddr *sockaddr,
  155.     socklen_t socklen);
  156. ngx_int_t ngx_clone_listening(ngx_cycle_t *cycle, ngx_listening_t *ls);
  157. ngx_int_t ngx_set_inherited_sockets(ngx_cycle_t *cycle);
  158. ngx_int_t ngx_open_listening_sockets(ngx_cycle_t *cycle);
  159. void ngx_configure_listening_sockets(ngx_cycle_t *cycle);
  160. void ngx_close_listening_sockets(ngx_cycle_t *cycle);
  161. void ngx_close_connection(ngx_connection_t *c);
  162. void ngx_close_idle_connections(ngx_cycle_t *cycle);
  163. ngx_int_t ngx_connection_local_sockaddr(ngx_connection_t *c, ngx_str_t *s,
  164.     ngx_uint_t port);
  165. ngx_int_t ngx_tcp_nodelay(ngx_connection_t *c);
  166. ngx_int_t ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text);

  167. ngx_connection_t *ngx_get_connection(ngx_socket_t s, ngx_log_t *log);
  168. void ngx_free_connection(ngx_connection_t *c);

  169. void ngx_reusable_connection(ngx_connection_t *c, ngx_uint_t reusable);

  170. #endif /* _NGX_CONNECTION_H_INCLUDED_ */