blob: fe49371117fbf2424ef42bc904ca7fc65b4d96be [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 Tarreaub24281b2011-02-13 13:16:36 +01005 * Copyright (C) 2000-2011 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
Willy Tarreauc7e42382012-08-24 19:22:53 +020028#include <types/channel.h>
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020029#include <types/connection.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010030#include <types/obj_type.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020031#include <common/config.h>
32
Jamie Gloudon801a0a32012-08-25 00:18:33 -040033/* A stream interface must have its own errors independently of the buffer's,
Willy Tarreaufa7e1022008-10-19 07:30:41 +020034 * so that applications can rely on what the buffer reports while the stream
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010035 * interface is performing some retries (eg: connection error). Some states are
36 * transient and do not last beyond process_session().
Willy Tarreaufa7e1022008-10-19 07:30:41 +020037 */
38enum {
Willy Tarreauefb453c2008-10-26 20:49:47 +010039 SI_ST_INI = 0, /* interface not sollicitated yet */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010040 SI_ST_REQ, /* [transient] connection initiation desired and not started yet */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020041 SI_ST_QUE, /* interface waiting in queue */
42 SI_ST_TAR, /* interface in turn-around state after failed connect attempt */
43 SI_ST_ASS, /* server just assigned to this interface */
44 SI_ST_CON, /* initiated connection request (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010045 SI_ST_CER, /* [transient] previous connection attempt failed (resource released) */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020046 SI_ST_EST, /* connection established (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010047 SI_ST_DIS, /* [transient] disconnected from other side, but cleanup not done yet */
Willy Tarreaucff64112008-11-03 06:26:53 +010048 SI_ST_CLO, /* stream intf closed, might not existing anymore. Buffers shut. */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020049};
50
51/* error types reported on the streams interface for more accurate reporting */
52enum {
Willy Tarreaue5ed4062008-08-30 03:17:31 +020053 SI_ET_NONE = 0x0000, /* no error yet, leave it to zero */
54 SI_ET_QUEUE_TO = 0x0001, /* queue timeout */
55 SI_ET_QUEUE_ERR = 0x0002, /* queue error (eg: full) */
56 SI_ET_QUEUE_ABRT = 0x0004, /* aborted in queue by external cause */
57 SI_ET_CONN_TO = 0x0008, /* connection timeout */
58 SI_ET_CONN_ERR = 0x0010, /* connection error (eg: no server available) */
59 SI_ET_CONN_ABRT = 0x0020, /* connection aborted by external cause (eg: abort) */
60 SI_ET_CONN_OTHER = 0x0040, /* connection aborted for other reason (eg: 500) */
61 SI_ET_DATA_TO = 0x0080, /* timeout during data phase */
62 SI_ET_DATA_ERR = 0x0100, /* error during data phase */
63 SI_ET_DATA_ABRT = 0x0200, /* data phase aborted by external cause */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020064};
65
Willy Tarreaud7704b52008-09-04 11:51:16 +020066/* flags set after I/O */
67enum {
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 Tarreau93b0f4f2012-08-30 21:23:53 +020073 /* unused 0x0010 */
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 Tarreau060781f2012-05-07 16:50:03 +020081struct stream_interface;
Willy Tarreau9650f372009-08-16 14:02:45 +020082
Willy Tarreauc5788912012-08-24 18:12:41 +020083/* operations available on a stream-interface */
84struct si_ops {
Willy Tarreau060781f2012-05-07 16:50:03 +020085 void (*update)(struct stream_interface *); /* I/O update function */
Willy Tarreau060781f2012-05-07 16:50:03 +020086 void (*chk_rcv)(struct stream_interface *); /* chk_rcv function */
87 void (*chk_snd)(struct stream_interface *); /* chk_snd function */
Willy Tarreau060781f2012-05-07 16:50:03 +020088};
89
Willy Tarreaube5ea192011-03-03 17:08:11 +010090/* A stream interface has 3 parts :
91 * - the buffer side, which interfaces to the buffers.
92 * - the remote side, which describes the state and address of the other side.
93 * - the functions, which are used by the buffer side to communicate with the
94 * remote side from the buffer side.
95 */
96
Willy Tarreaub24281b2011-02-13 13:16:36 +010097/* Note that if an applet is registered, the update function will not be called
98 * by the session handler, so it may be used to resync flags at the end of the
99 * applet handler. See stream_int_update_embedded() for reference.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200100 */
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200101struct stream_interface {
Willy Tarreaube5ea192011-03-03 17:08:11 +0100102 /* struct members used by the "buffer" side */
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200103 unsigned int state; /* SI_ST* */
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200104 unsigned int prev_state;/* SI_ST*, copy of previous state */
Willy Tarreaube5ea192011-03-03 17:08:11 +0100105 unsigned int flags; /* SI_FL_* */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200106 struct channel *ib, *ob; /* input and output buffers */
Willy Tarreau35374672008-09-03 18:11:02 +0200107 unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
Willy Tarreaube5ea192011-03-03 17:08:11 +0100108 void *owner; /* generally a (struct task*) */
109 unsigned int err_type; /* first error detected, one of SI_ET_* */
Willy Tarreaube5ea192011-03-03 17:08:11 +0100110
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200111 struct connection *conn; /* descriptor for a connection */
Willy Tarreauc5788912012-08-24 18:12:41 +0200112 struct si_ops *ops; /* general operations at the stream interface layer */
Willy Tarreaube5ea192011-03-03 17:08:11 +0100113
Willy Tarreau060781f2012-05-07 16:50:03 +0200114 void (*release)(struct stream_interface *); /* handler to call after the last close() */
115
Willy Tarreaube5ea192011-03-03 17:08:11 +0100116 /* struct members below are the "remote" part, as seen from the buffer side */
Willy Tarreauee28de02010-06-01 09:51:00 +0200117 int conn_retries; /* number of connect retries left */
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100118 int send_proxy_ofs; /* <0 = offset to (re)send from the end, >0 = send all */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100119 struct {
Willy Tarreaubc4af052011-02-13 13:25:14 +0100120 unsigned int st0, st1; /* may be used by any function above */
Willy Tarreau295a8372011-03-10 11:25:07 +0100121 union {
122 struct {
123 struct proxy *px;
124 struct server *sv;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200125 void *l;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +0200126 int scope_str; /* limit scope to a frontend/backend substring */
127 int scope_len; /* length of the string above in the buffer */
Willy Tarreau295a8372011-03-10 11:25:07 +0100128 int px_st; /* STAT_PX_ST* */
129 unsigned int flags; /* STAT_* */
130 int iid, type, sid; /* proxy id, type and service id if bounding of stats is enabled */
Cyril Bonté19979e12012-04-04 12:57:21 +0200131 int st_code; /* the status code returned by an action */
Willy Tarreau295a8372011-03-10 11:25:07 +0100132 } stats;
133 struct {
134 struct bref bref; /* back-reference from the session being dumped */
135 void *target; /* session we want to dump, or NULL for all */
136 unsigned int uid; /* if non-null, the uniq_id of the session being dumped */
137 int section; /* section of the session being dumped */
138 int pos; /* last position of the current session's buffer */
139 } sess;
140 struct {
141 int iid; /* if >= 0, ID of the proxy to filter on */
142 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
143 unsigned int buf; /* buffer being dumped, 0 = req, 1 = rep */
144 unsigned int sid; /* session ID of error being dumped */
145 int ptr; /* <0: headers, >=0 : text pointer to restart from */
146 int bol; /* pointer to beginning of current line */
147 } errors;
148 struct {
149 void *target; /* table we want to dump, or NULL for all */
150 struct proxy *proxy; /* table being currently dumped (first if NULL) */
151 struct stksess *entry; /* last entry we were trying to dump (or first if NULL) */
152 long long value; /* value to compare against */
153 signed char data_type; /* type of data to compare, or -1 if none */
154 signed char data_op; /* operator (STD_OP_*) when data_type set */
155 } table;
156 struct {
157 const char *msg; /* pointer to a persistent message to be returned in PRINT state */
158 } cli;
159 } ctx; /* used by stats I/O handlers to dump the stats */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100160 } applet;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200161};
162
Willy Tarreaub24281b2011-02-13 13:16:36 +0100163/* An applet designed to run in a stream interface */
164struct si_applet {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100165 enum obj_type obj_type; /* object type = OBJ_TYPE_APPLET */
166 char *name; /* applet's name to report in logs */
167 void (*fct)(struct stream_interface *); /* internal I/O handler, may never be NULL */
Aman Gupta9a13e842012-04-02 18:57:53 -0700168 void (*release)(struct stream_interface *); /* callback to release resources, may be NULL */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100169};
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200170
171#endif /* _TYPES_STREAM_INTERFACE_H */
172
173/*
174 * Local variables:
175 * c-indent-level: 8
176 * c-basic-offset: 8
177 * End:
178 */