blob: 76ed72eea4636ac605aaf631fc63e998e29cf062 [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
Willy Tarreau3fdb3662012-11-12 00:42:33 +010025#include <types/obj_type.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020026#include <common/config.h>
27
Jamie Gloudon801a0a32012-08-25 00:18:33 -040028/* A stream interface must have its own errors independently of the buffer's,
Willy Tarreaufa7e1022008-10-19 07:30:41 +020029 * so that applications can rely on what the buffer reports while the stream
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010030 * interface is performing some retries (eg: connection error). Some states are
31 * transient and do not last beyond process_session().
Willy Tarreaufa7e1022008-10-19 07:30:41 +020032 */
Willy Tarreau721854f2013-12-06 23:31:58 +010033enum si_state {
Willy Tarreauefb453c2008-10-26 20:49:47 +010034 SI_ST_INI = 0, /* interface not sollicitated yet */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010035 SI_ST_REQ, /* [transient] connection initiation desired and not started yet */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020036 SI_ST_QUE, /* interface waiting in queue */
37 SI_ST_TAR, /* interface in turn-around state after failed connect attempt */
38 SI_ST_ASS, /* server just assigned to this interface */
39 SI_ST_CON, /* initiated connection request (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010040 SI_ST_CER, /* [transient] previous connection attempt failed (resource released) */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020041 SI_ST_EST, /* connection established (resource exists) */
Willy Tarreau74ab2ac2008-11-23 17:23:07 +010042 SI_ST_DIS, /* [transient] disconnected from other side, but cleanup not done yet */
Willy Tarreaucff64112008-11-03 06:26:53 +010043 SI_ST_CLO, /* stream intf closed, might not existing anymore. Buffers shut. */
Willy Tarreau721854f2013-12-06 23:31:58 +010044} __attribute__((packed));
Willy Tarreaufa7e1022008-10-19 07:30:41 +020045
46/* error types reported on the streams interface for more accurate reporting */
47enum {
Willy Tarreaue5ed4062008-08-30 03:17:31 +020048 SI_ET_NONE = 0x0000, /* no error yet, leave it to zero */
49 SI_ET_QUEUE_TO = 0x0001, /* queue timeout */
50 SI_ET_QUEUE_ERR = 0x0002, /* queue error (eg: full) */
51 SI_ET_QUEUE_ABRT = 0x0004, /* aborted in queue by external cause */
52 SI_ET_CONN_TO = 0x0008, /* connection timeout */
53 SI_ET_CONN_ERR = 0x0010, /* connection error (eg: no server available) */
54 SI_ET_CONN_ABRT = 0x0020, /* connection aborted by external cause (eg: abort) */
Willy Tarreau2d400bb2012-05-14 12:11:47 +020055 SI_ET_CONN_RES = 0x0040, /* connection aborted due to lack of resources */
56 SI_ET_CONN_OTHER = 0x0080, /* connection aborted for other reason (eg: 500) */
57 SI_ET_DATA_TO = 0x0100, /* timeout during data phase */
58 SI_ET_DATA_ERR = 0x0200, /* error during data phase */
59 SI_ET_DATA_ABRT = 0x0400, /* data phase aborted by external cause */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020060};
61
Willy Tarreau721854f2013-12-06 23:31:58 +010062/* flags set after I/O (16 bit) */
Willy Tarreaud7704b52008-09-04 11:51:16 +020063enum {
64 SI_FL_NONE = 0x0000, /* nothing */
65 SI_FL_EXP = 0x0001, /* timeout has expired */
Willy Tarreaucff64112008-11-03 06:26:53 +010066 SI_FL_ERR = 0x0002, /* a non-recoverable error has occurred */
Willy Tarreaub0ef7352008-12-14 13:26:20 +010067 SI_FL_WAIT_ROOM = 0x0004, /* waiting for space to store incoming data */
68 SI_FL_WAIT_DATA = 0x0008, /* waiting for more data to send */
Willy Tarreaua5f5d8d2014-11-28 11:26:07 +010069 SI_FL_ISBACK = 0x0010, /* 0 for front-side SI, 1 for back-side */
Willy Tarreau89f7ef22009-09-05 20:57:35 +020070 SI_FL_DONT_WAKE = 0x0020, /* resync in progress, don't wake up */
Jamie Gloudon801a0a32012-08-25 00:18:33 -040071 SI_FL_INDEP_STR = 0x0040, /* independent streams = don't update rex on write */
Willy Tarreau4c283dc2009-12-29 14:36:34 +010072 SI_FL_NOLINGER = 0x0080, /* may close without lingering. One-shot. */
Willy Tarreau7bb68ab2012-05-13 14:48:59 +020073 SI_FL_NOHALF = 0x0100, /* no half close, close both sides at once */
William Lallemandb7ff6a32012-03-02 14:35:21 +010074 SI_FL_SRC_ADDR = 0x1000, /* get the source ip/port with getsockname */
Willy Tarreaueb406dc2015-04-21 18:44:02 +020075 SI_FL_WANT_PUT = 0x2000, /* an applet would like to put some data into the buffer */
76 SI_FL_WANT_GET = 0x4000, /* an applet would like to get some data from the buffer */
Willy Tarreau984fca92017-12-20 16:31:43 +010077 SI_FL_CLEAN_ABRT = 0x8000, /* SI_FL_ERR is used to report aborts, and not SHUTR */
Willy Tarreaud7704b52008-09-04 11:51:16 +020078};
79
Willy Tarreaud414f8e2015-04-06 11:43:45 +020080/* A stream interface has 3 parts :
81 * - the buffer side, which interfaces to the buffers.
82 * - the remote side, which describes the state and address of the other side.
83 * - the functions, which are used by the buffer side to communicate with the
84 * remote side from the buffer side.
85 */
86
87/* Note that if an applet is registered, the update function will not be called
88 * by the session handler, so it may be used to resync flags at the end of the
89 * applet handler. See stream_int_update_embedded() for reference.
90 */
91struct stream_interface {
92 /* struct members used by the "buffer" side */
93 enum si_state state; /* SI_ST* */
94 enum si_state prev_state;/* SI_ST*, copy of previous state */
95 unsigned short flags; /* SI_FL_* */
96 unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
97 enum obj_type *end; /* points to the end point (connection or appctx) */
98 struct si_ops *ops; /* general operations at the stream interface layer */
99
100 /* struct members below are the "remote" part, as seen from the buffer side */
101 unsigned int err_type; /* first error detected, one of SI_ET_* */
102 int conn_retries; /* number of connect retries left */
Hongbo Longe39683c2017-03-10 18:41:51 +0100103 unsigned int hcto; /* half-closed timeout (0 = unset) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200104 struct wait_event wait_event; /* We're in a wait list */
Willy Tarreaud414f8e2015-04-06 11:43:45 +0200105};
106
Willy Tarreauc5788912012-08-24 18:12:41 +0200107/* operations available on a stream-interface */
108struct si_ops {
Willy Tarreau060781f2012-05-07 16:50:03 +0200109 void (*update)(struct stream_interface *); /* I/O update function */
Willy Tarreau060781f2012-05-07 16:50:03 +0200110 void (*chk_rcv)(struct stream_interface *); /* chk_rcv function */
111 void (*chk_snd)(struct stream_interface *); /* chk_snd function */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200112 void (*shutr)(struct stream_interface *); /* shut read function */
113 void (*shutw)(struct stream_interface *); /* shut write function */
Willy Tarreau060781f2012-05-07 16:50:03 +0200114};
115
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200116#endif /* _TYPES_STREAM_INTERFACE_H */
117
118/*
119 * Local variables:
120 * c-indent-level: 8
121 * c-basic-offset: 8
122 * End:
123 */