blob: 5f6580933dd1d75bf69bd91dba99e8a64641e0cf [file] [log] [blame]
Willy Tarreau87b09662015-04-03 00:22:06 +02001/*
2 * include/types/stream.h
3 * This file defines everything related to streams.
4 *
5 * Copyright (C) 2000-2015 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_STREAM_H
23#define _TYPES_STREAM_H
24
25
26#include <sys/time.h>
27#include <unistd.h>
28#include <netinet/in.h>
29#include <arpa/inet.h>
30
31#include <common/config.h>
32#include <common/mini-clist.h>
33
34#include <types/channel.h>
35#include <types/compression.h>
36#include <types/hlua.h>
37#include <types/obj_type.h>
38#include <types/proto_http.h>
39#include <types/proxy.h>
40#include <types/queue.h>
41#include <types/server.h>
42#include <types/stream_interface.h>
43#include <types/task.h>
44#include <types/stick_table.h>
45
46
47/* various stream flags, bits values 0x01 to 0x100 (shift 0) */
48#define SN_DIRECT 0x00000001 /* connection made on the server matching the client cookie */
49#define SN_ASSIGNED 0x00000002 /* no need to assign a server to this stream */
50#define SN_ADDR_SET 0x00000004 /* this stream's server address has been set */
51#define SN_BE_ASSIGNED 0x00000008 /* a backend was assigned. Conns are accounted. */
52
53#define SN_FORCE_PRST 0x00000010 /* force persistence here, even if server is down */
54#define SN_MONITOR 0x00000020 /* this stream comes from a monitoring system */
55#define SN_CURR_SESS 0x00000040 /* a connection is currently being counted on the server */
56#define SN_INITIALIZED 0x00000080 /* the stream was fully initialized */
57#define SN_REDISP 0x00000100 /* set if this stream was redispatched from one server to another */
58#define SN_CONN_TAR 0x00000200 /* set if this stream is turning around before reconnecting */
59#define SN_REDIRECTABLE 0x00000400 /* set if this stream is redirectable (GET or HEAD) */
60#define SN_TUNNEL 0x00000800 /* tunnel-mode stream, nothing to catch after data */
61
62/* stream termination conditions, bits values 0x1000 to 0x7000 (0-9 shift 12) */
63#define SN_ERR_NONE 0x00000000 /* normal end of request */
64#define SN_ERR_LOCAL 0x00001000 /* the proxy locally processed this request => not an error */
65#define SN_ERR_CLITO 0x00002000 /* client time-out */
66#define SN_ERR_CLICL 0x00003000 /* client closed (read/write error) */
67#define SN_ERR_SRVTO 0x00004000 /* server time-out, connect time-out */
68#define SN_ERR_SRVCL 0x00005000 /* server closed (connect/read/write error) */
69#define SN_ERR_PRXCOND 0x00006000 /* the proxy decided to close (deny...) */
70#define SN_ERR_RESOURCE 0x00007000 /* the proxy encountered a lack of a local resources (fd, mem, ...) */
71#define SN_ERR_INTERNAL 0x00008000 /* the proxy encountered an internal error */
72#define SN_ERR_DOWN 0x00009000 /* the proxy killed a stream because the backend became unavailable */
73#define SN_ERR_KILLED 0x0000a000 /* the proxy killed a stream because it was asked to do so */
74#define SN_ERR_UP 0x0000b000 /* the proxy killed a stream because a preferred backend became available */
75#define SN_ERR_MASK 0x0000f000 /* mask to get only stream error flags */
76#define SN_ERR_SHIFT 12 /* bit shift */
77
78/* stream state at termination, bits values 0x10000 to 0x70000 (0-7 shift 16) */
79#define SN_FINST_R 0x00010000 /* stream ended during client request */
80#define SN_FINST_C 0x00020000 /* stream ended during server connect */
81#define SN_FINST_H 0x00030000 /* stream ended during server headers */
82#define SN_FINST_D 0x00040000 /* stream ended during data phase */
83#define SN_FINST_L 0x00050000 /* stream ended while pushing last data to client */
84#define SN_FINST_Q 0x00060000 /* stream ended while waiting in queue for a server slot */
85#define SN_FINST_T 0x00070000 /* stream ended tarpitted */
86#define SN_FINST_MASK 0x00070000 /* mask to get only final stream state flags */
87#define SN_FINST_SHIFT 16 /* bit shift */
88
89#define SN_IGNORE_PRST 0x00080000 /* ignore persistence */
90
91#define SN_COMP_READY 0x00100000 /* the compression is initialized */
92#define SN_SRV_REUSED 0x00200000 /* the server-side connection was reused */
93
94/* some external definitions */
95struct strm_logs {
96 int logwait; /* log fields waiting to be collected : LW_* */
97 int level; /* log level to force + 1 if > 0, -1 = no log */
98 struct timeval accept_date; /* date of the stream's accept() in user date */
99 struct timeval tv_accept; /* date of the stream's accept() in internal date (monotonic) */
100 struct timeval tv_request; /* date the request arrives, {0,0} if never occurs */
101 long t_queue; /* delay before the stream gets out of the connect queue, -1 if never occurs */
102 long t_connect; /* delay before the connect() to the server succeeds, -1 if never occurs */
103 long t_data; /* delay before the first data byte from the server ... */
104 unsigned long t_close; /* total stream duration */
105 unsigned long srv_queue_size; /* number of streams waiting for a connect slot on this server at accept() time (in direct assignment) */
106 unsigned long prx_queue_size; /* overall number of streams waiting for a connect slot on this instance at accept() time */
107 long long bytes_in; /* number of bytes transferred from the client to the server */
108 long long bytes_out; /* number of bytes transferred from the server to the client */
109};
110
111struct stream {
112 int flags; /* some flags describing the stream */
113 unsigned int uniq_id; /* unique ID used for the traces */
114 enum obj_type *target; /* target to use for this stream ; for mini-sess: incoming connection */
115
116 struct channel req; /* request channel */
117 struct channel res; /* response channel */
118
119 struct proxy *fe; /* the proxy this stream depends on for the client side */
120 struct proxy *be; /* the proxy this stream depends on for the server side */
121
122 struct listener *listener; /* the listener by which the request arrived */
123 struct server *srv_conn; /* stream already has a slot on a server and is not in queue */
124 struct pendconn *pend_pos; /* if not NULL, points to the position in the pending queue */
125
126 struct http_txn txn; /* current HTTP transaction being processed. Should become a list. */
127
128 struct task *task; /* the task associated with this stream */
129 struct list list; /* position in global streams list */
130 struct list by_srv; /* position in server stream list */
131 struct list back_refs; /* list of users tracking this stream */
132 struct list buffer_wait; /* position in the list of streams waiting for a buffer */
133
134 struct {
135 struct stksess *ts;
136 struct stktable *table;
137 } store[8]; /* tracked stickiness values to store */
138 int store_count;
139 /* 4 unused bytes here */
140
141 struct stkctr stkctr[MAX_SESS_STKCTR]; /* stick counters */
142
143 struct stream_interface si[2]; /* client and server stream interfaces */
144 struct strm_logs logs; /* logs for this stream */
145
146 void (*do_log)(struct stream *s); /* the function to call in order to log (or NULL) */
147 void (*srv_error)(struct stream *s, /* the function to call upon unrecoverable server errors (or NULL) */
148 struct stream_interface *si);
149 struct comp_ctx *comp_ctx; /* HTTP compression context */
150 struct comp_algo *comp_algo; /* HTTP compression algorithm if not NULL */
151 char *unique_id; /* custom unique ID */
152
153 /* These two pointers are used to resume the execution of the rule lists. */
154 struct list *current_rule_list; /* this is used to store the current executed rule list. */
155 struct list *current_rule; /* this is used to store the current rule to be resumed. */
156 struct hlua hlua; /* lua runtime context */
157};
158
159#endif /* _TYPES_STREAM_H */
160
161/*
162 * Local variables:
163 * c-indent-level: 8
164 * c-basic-offset: 8
165 * End:
166 */