blob: d5177d7051077308811feb0989b7c6c327cce0be [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/types/buffers.h
3 Buffer management definitions, macros and inline functions.
4
Willy Tarreau0c303ee2008-07-07 00:09:58 +02005 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02006
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_BUFFERS_H
23#define _TYPES_BUFFERS_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreau54469402006-07-29 16:59:06 +020028/* The BF_* macros designate Buffer Flags, which may be ORed in the bit field
Willy Tarreaue393fe22008-08-16 22:18:07 +020029 * member 'flags' in struct buffer. Some of them are persistent (BF_SHUT*),
30 * some of them (BF_EMPTY,BF_FULL) may only be set by the low-level read/write
31 * functions as well as those who change the buffer's read limit.
Willy Tarreau54469402006-07-29 16:59:06 +020032 */
Willy Tarreaue393fe22008-08-16 22:18:07 +020033#define BF_EMPTY 1 /* buffer is empty */
34#define BF_FULL 2 /* buffer cannot accept any more data (l >= rlim-data) */
35
Willy Tarreauba392ce2008-08-16 21:13:23 +020036#define BF_SHUTR 4 /* producer has already shut down */
37#define BF_SHUTW 8 /* consumer has already shut down */
Willy Tarreau0f9f5052006-07-29 17:39:25 +020038
Willy Tarreau54469402006-07-29 16:59:06 +020039#define BF_PARTIAL_READ 16
40#define BF_COMPLETE_READ 32
41#define BF_READ_ERROR 64
Willy Tarreau0f9f5052006-07-29 17:39:25 +020042#define BF_READ_NULL 128
43#define BF_READ_STATUS (BF_PARTIAL_READ|BF_COMPLETE_READ|BF_READ_ERROR|BF_READ_NULL)
44#define BF_CLEAR_READ (~BF_READ_STATUS)
Willy Tarreau54469402006-07-29 16:59:06 +020045
Willy Tarreau0f9f5052006-07-29 17:39:25 +020046#define BF_PARTIAL_WRITE 256
47#define BF_COMPLETE_WRITE 512
Willy Tarreaudc0a6a02008-08-03 20:38:13 +020048#define BF_WRITE_ERROR 1024
49#define BF_WRITE_NULL 2048
50#define BF_WRITE_STATUS (BF_PARTIAL_WRITE|BF_COMPLETE_WRITE|BF_WRITE_ERROR|BF_WRITE_NULL)
51#define BF_CLEAR_WRITE (~BF_WRITE_STATUS)
Willy Tarreau54469402006-07-29 16:59:06 +020052
Willy Tarreaudc0a6a02008-08-03 20:38:13 +020053#define BF_STREAMER 4096
54#define BF_STREAMER_FAST 8192
Willy Tarreau54469402006-07-29 16:59:06 +020055
Willy Tarreaud9f48362008-08-16 16:39:26 +020056#define BF_MAY_FORWARD 16384 /* consumer side is allowed to forward the data */
57#define BF_READ_TIMEOUT 32768 /* timeout while waiting for producer */
58#define BF_WRITE_TIMEOUT 65536 /* timeout while waiting for consumer */
Willy Tarreau0f9f5052006-07-29 17:39:25 +020059
Willy Tarreau2df28e82008-08-17 15:20:19 +020060
61/* Analysers (buffer->analysers).
62 * Those bits indicate that there are some processing to do on the buffer
63 * contents. It will probably evolved into a linked list later. Those
64 * analysers could be compared to higher level processors.
65 * The field is blanked by buffer_init() and only by analysers themselves
66 * afterwards.
67 */
68#define AN_REQ_INSPECT 0x00000001 /* inspect request contents */
69#define AN_REQ_HTTP_HDR 0x00000002 /* inspect HTTP request headers */
70#define AN_REQ_HTTP_BODY 0x00000004 /* inspect HTTP request body */
71#define AN_RTR_HTTP_HDR 0x00000008 /* inspect HTTP response headers */
72
Willy Tarreaubaaee002006-06-26 02:48:02 +020073/* describes a chunk of string */
74struct chunk {
75 char *str; /* beginning of the string itself. Might not be 0-terminated */
76 int len; /* size of the string from first to last char. <0 = uninit. */
77};
78
79struct buffer {
Willy Tarreauaad2e492006-10-15 23:32:18 +020080 unsigned int flags; /* BF_* */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020081 int rex; /* expiration date for a read, in ticks */
Willy Tarreau26ed74d2008-08-17 12:11:14 +020082 int wex; /* expiration date for a write or connect, in ticks */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020083 int rto; /* read timeout, in ticks */
84 int wto; /* write timeout, in ticks */
85 int cto; /* connect timeout, in ticks */
Willy Tarreaubaaee002006-06-26 02:48:02 +020086 unsigned int l; /* data length */
Willy Tarreaue09e0ce2007-03-18 16:31:29 +010087 char *r, *w, *lr; /* read ptr, write ptr, last read */
Willy Tarreaubaaee002006-06-26 02:48:02 +020088 char *rlim; /* read limit, used for header rewriting */
Willy Tarreau2df28e82008-08-17 15:20:19 +020089 unsigned int analysers; /* bit field indicating what to do on the buffer */
Willy Tarreau8a7af602008-05-03 23:07:14 +020090 unsigned char xfer_large; /* number of consecutive large xfers */
91 unsigned char xfer_small; /* number of consecutive small xfers */
Willy Tarreaubaaee002006-06-26 02:48:02 +020092 unsigned long long total; /* total data read */
93 char data[BUFSIZE];
94};
95
Willy Tarreaubaaee002006-06-26 02:48:02 +020096
97#endif /* _TYPES_BUFFERS_H */
98
99/*
100 * Local variables:
101 * c-indent-level: 8
102 * c-basic-offset: 8
103 * End:
104 */