blob: 7436efd754ab3ed137fd0e6c75d04435d53e876a [file] [log] [blame]
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001/*
Willy Tarreau4c283dc2009-12-29 14:36:34 +01002 * include/types/stream_interface.h
3 * This file describes the stream_interface struct and associated constants.
4 *
Willy Tarreaua2df3fa2014-11-28 11:53:35 +01005 * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu
Willy Tarreau4c283dc2009-12-29 14:36:34 +01006 *
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 */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020021
22#ifndef _TYPES_STREAM_INTERFACE_H
23#define _TYPES_STREAM_INTERFACE_H
24
25#include <stdlib.h>
Emeric Brun129c5902010-01-04 14:47:58 +010026#include <sys/socket.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020027
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +010028#include <types/hlua.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010029#include <types/obj_type.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020030#include <common/config.h>
31
Jamie Gloudon801a0a32012-08-25 00:18:33 -040032/* A stream interface must have its own errors independently of the buffer's,
Willy Tarreaufa7e1022008-10-19 07:30:41 +020033 * so that applications can rely on what the buffer reports while the stream
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010034 * interface is performing some retries (eg: connection error). Some states are
35 * transient and do not last beyond process_session().
Willy Tarreaufa7e1022008-10-19 07:30:41 +020036 */
Willy Tarreau721854f2013-12-06 23:31:58 +010037enum si_state {
Willy Tarreauefb453c2008-10-26 20:49:47 +010038 SI_ST_INI = 0, /* interface not sollicitated yet */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010039 SI_ST_REQ, /* [transient] connection initiation desired and not started yet */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020040 SI_ST_QUE, /* interface waiting in queue */
41 SI_ST_TAR, /* interface in turn-around state after failed connect attempt */
42 SI_ST_ASS, /* server just assigned to this interface */
43 SI_ST_CON, /* initiated connection request (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010044 SI_ST_CER, /* [transient] previous connection attempt failed (resource released) */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020045 SI_ST_EST, /* connection established (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010046 SI_ST_DIS, /* [transient] disconnected from other side, but cleanup not done yet */
Willy Tarreaucff64112008-11-03 06:26:53 +010047 SI_ST_CLO, /* stream intf closed, might not existing anymore. Buffers shut. */
Willy Tarreau721854f2013-12-06 23:31:58 +010048} __attribute__((packed));
Willy Tarreaufa7e1022008-10-19 07:30:41 +020049
50/* error types reported on the streams interface for more accurate reporting */
51enum {
Willy Tarreaue5ed4062008-08-30 03:17:31 +020052 SI_ET_NONE = 0x0000, /* no error yet, leave it to zero */
53 SI_ET_QUEUE_TO = 0x0001, /* queue timeout */
54 SI_ET_QUEUE_ERR = 0x0002, /* queue error (eg: full) */
55 SI_ET_QUEUE_ABRT = 0x0004, /* aborted in queue by external cause */
56 SI_ET_CONN_TO = 0x0008, /* connection timeout */
57 SI_ET_CONN_ERR = 0x0010, /* connection error (eg: no server available) */
58 SI_ET_CONN_ABRT = 0x0020, /* connection aborted by external cause (eg: abort) */
Willy Tarreau2d400bb2012-05-14 12:11:47 +020059 SI_ET_CONN_RES = 0x0040, /* connection aborted due to lack of resources */
60 SI_ET_CONN_OTHER = 0x0080, /* connection aborted for other reason (eg: 500) */
61 SI_ET_DATA_TO = 0x0100, /* timeout during data phase */
62 SI_ET_DATA_ERR = 0x0200, /* error during data phase */
63 SI_ET_DATA_ABRT = 0x0400, /* data phase aborted by external cause */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020064};
65
Willy Tarreau721854f2013-12-06 23:31:58 +010066/* flags set after I/O (16 bit) */
Willy Tarreaud7704b52008-09-04 11:51:16 +020067enum {
68 SI_FL_NONE = 0x0000, /* nothing */
69 SI_FL_EXP = 0x0001, /* timeout has expired */
Willy Tarreaucff64112008-11-03 06:26:53 +010070 SI_FL_ERR = 0x0002, /* a non-recoverable error has occurred */
Willy Tarreaub0ef7352008-12-14 13:26:20 +010071 SI_FL_WAIT_ROOM = 0x0004, /* waiting for space to store incoming data */
72 SI_FL_WAIT_DATA = 0x0008, /* waiting for more data to send */
Willy Tarreaua5f5d8d2014-11-28 11:26:07 +010073 SI_FL_ISBACK = 0x0010, /* 0 for front-side SI, 1 for back-side */
Willy Tarreau89f7ef22009-09-05 20:57:35 +020074 SI_FL_DONT_WAKE = 0x0020, /* resync in progress, don't wake up */
Jamie Gloudon801a0a32012-08-25 00:18:33 -040075 SI_FL_INDEP_STR = 0x0040, /* independent streams = don't update rex on write */
Willy Tarreau4c283dc2009-12-29 14:36:34 +010076 SI_FL_NOLINGER = 0x0080, /* may close without lingering. One-shot. */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +020077 SI_FL_NOHALF = 0x0100, /* no half close, close both sides at once */
William Lallemandb7ff6a32012-03-02 14:35:21 +010078 SI_FL_SRC_ADDR = 0x1000, /* get the source ip/port with getsockname */
Willy Tarreaud7704b52008-09-04 11:51:16 +020079};
80
Willy Tarreaud414f8e2015-04-06 11:43:45 +020081/* A stream interface has 3 parts :
82 * - the buffer side, which interfaces to the buffers.
83 * - the remote side, which describes the state and address of the other side.
84 * - the functions, which are used by the buffer side to communicate with the
85 * remote side from the buffer side.
86 */
87
88/* Note that if an applet is registered, the update function will not be called
89 * by the session handler, so it may be used to resync flags at the end of the
90 * applet handler. See stream_int_update_embedded() for reference.
91 */
92struct stream_interface {
93 /* struct members used by the "buffer" side */
94 enum si_state state; /* SI_ST* */
95 enum si_state prev_state;/* SI_ST*, copy of previous state */
96 unsigned short flags; /* SI_FL_* */
97 unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
98 enum obj_type *end; /* points to the end point (connection or appctx) */
99 struct si_ops *ops; /* general operations at the stream interface layer */
100
101 /* struct members below are the "remote" part, as seen from the buffer side */
102 unsigned int err_type; /* first error detected, one of SI_ET_* */
103 int conn_retries; /* number of connect retries left */
104};
105
106/* An applet designed to run in a stream interface */
107struct si_applet {
108 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
109 /* 3 unused bytes here */
110 char *name; /* applet's name to report in logs */
111 void (*fct)(struct stream_interface *); /* internal I/O handler, may never be NULL */
112 void (*release)(struct stream_interface *); /* callback to release resources, may be NULL */
113};
Willy Tarreau9650f372009-08-16 14:02:45 +0200114
Willy Tarreauc5788912012-08-24 18:12:41 +0200115/* operations available on a stream-interface */
116struct si_ops {
Willy Tarreau060781f2012-05-07 16:50:03 +0200117 void (*update)(struct stream_interface *); /* I/O update function */
Willy Tarreau060781f2012-05-07 16:50:03 +0200118 void (*chk_rcv)(struct stream_interface *); /* chk_rcv function */
119 void (*chk_snd)(struct stream_interface *); /* chk_snd function */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200120 void (*shutr)(struct stream_interface *); /* shut read function */
121 void (*shutw)(struct stream_interface *); /* shut write function */
Willy Tarreau060781f2012-05-07 16:50:03 +0200122};
123
Willy Tarreau452d3bb2013-11-24 02:28:49 +0100124/* Context of a running applet. */
125struct appctx {
Willy Tarreau0788f472013-10-24 22:45:25 +0200126 enum obj_type obj_type; /* OBJ_TYPE_APPCTX */
Willy Tarreau721854f2013-12-06 23:31:58 +0100127 /* 3 unused bytes here */
Willy Tarreau452d3bb2013-11-24 02:28:49 +0100128 unsigned int st0; /* CLI state for stats, session state for peers */
129 unsigned int st1; /* prompt for stats, session error for peers */
130 unsigned int st2; /* output state for stats, unused by peers */
Willy Tarreau48099c72013-10-24 20:03:27 +0200131 struct si_applet *applet; /* applet this context refers to */
Willy Tarreau452d3bb2013-11-24 02:28:49 +0100132
133 union {
134 struct {
135 struct proxy *px;
136 struct server *sv;
137 void *l;
138 int scope_str; /* limit scope to a frontend/backend substring */
139 int scope_len; /* length of the string above in the buffer */
140 int px_st; /* STAT_PX_ST* */
141 unsigned int flags; /* STAT_* */
142 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
143 int st_code; /* the status code returned by an action */
144 } stats;
145 struct {
146 struct bref bref; /* back-reference from the session being dumped */
147 void *target; /* session we want to dump, or NULL for all */
148 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
149 int section; /* section of the session being dumped */
150 int pos; /* last position of the current session's buffer */
151 } sess;
152 struct {
153 int iid; /* if >= 0, ID of the proxy to filter on */
154 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
155 unsigned int buf; /* buffer being dumped, 0 = req, 1 = rep */
156 unsigned int sid; /* session ID of error being dumped */
157 int ptr; /* <0: headers, >=0 : text pointer to restart from */
158 int bol; /* pointer to beginning of current line */
159 } errors;
160 struct {
161 void *target; /* table we want to dump, or NULL for all */
162 struct proxy *proxy; /* table being currently dumped (first if NULL) */
163 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
164 long long value; /* value to compare against */
165 signed char data_type; /* type of data to compare, or -1 if none */
166 signed char data_op; /* operator (STD_OP_*) when data_type set */
167 } table;
168 struct {
169 const char *msg; /* pointer to a persistent message to be returned in PRINT state */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +0100170 char *err; /* pointer to a 'must free' message to be returned in PRINT_FREE state */
Willy Tarreau452d3bb2013-11-24 02:28:49 +0100171 } cli;
172 struct {
173 void *ptr; /* multi-purpose pointer for peers */
174 } peers;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100175 struct {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100176 unsigned int display_flags;
177 struct pat_ref *ref;
178 struct pat_ref_elt *elt;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100179 struct map_descriptor *desc;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100180 struct pattern_expr *expr;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100181 struct chunk chunk;
182 } map;
Thierry FOURNIER7e7ac322015-02-16 19:27:16 +0100183 struct {
184 int connected;
185 struct hlua_socket *socket;
186 struct list wake_on_read;
187 struct list wake_on_write;
188 } hlua;
Willy Tarreau452d3bb2013-11-24 02:28:49 +0100189 } ctx; /* used by stats I/O handlers to dump the stats */
190};
191
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200192#endif /* _TYPES_STREAM_INTERFACE_H */
193
194/*
195 * Local variables:
196 * c-indent-level: 8
197 * c-basic-offset: 8
198 * End:
199 */