blob: ce21daefcbc1d13f74608fb59f8ac9d44bf5b3d1 [file] [log] [blame]
Willy Tarreaub6866442008-07-14 23:54:42 +02001/*
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002 * include/types/proto_tcp.h
3 * This file contains TCP protocol definitions.
4 *
5 * Copyright (C) 2000-2010 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 */
Willy Tarreaub6866442008-07-14 23:54:42 +020021
22#ifndef _TYPES_PROTO_TCP_H
23#define _TYPES_PROTO_TCP_H
24
25#include <common/config.h>
26#include <common/mini-clist.h>
27
28#include <types/acl.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020029#include <types/stream.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020030
31/* Layer4 accept/reject rules */
32enum {
33 TCP_ACT_ACCEPT = 1,
34 TCP_ACT_REJECT = 2,
Willy Tarreau4f0d9192013-06-11 20:40:55 +020035 TCP_ACT_EXPECT_PX = 3,
Willy Tarreaub4c84932013-07-23 19:15:30 +020036 TCP_ACT_TRK_SC0 = 4, /* TCP request tracking : must be contiguous and cover up to MAX_SESS_STKCTR values */
Willy Tarreaube4a3ef2013-06-17 15:04:07 +020037 TCP_ACT_TRK_SC1 = 5,
38 TCP_ACT_TRK_SC2 = 6,
Willy Tarreaub4c84932013-07-23 19:15:30 +020039 TCP_ACT_TRK_SCMAX = TCP_ACT_TRK_SC0 + MAX_SESS_STKCTR - 1,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020040 TCP_ACT_CLOSE, /* close at the sender's */
Willy Tarreau3a4ac422014-06-13 16:17:14 +020041 TCP_ACT_CAPTURE, /* capture a fetched sample */
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010042 TCP_ACT_CUSTOM, /* Use for custom registered keywords. */
Willy Tarreaub6866442008-07-14 23:54:42 +020043};
44
Willy Tarreau3a4ac422014-06-13 16:17:14 +020045struct capture_prm {
46 struct sample_expr *expr; /* expression used as the key */
47 struct cap_hdr *hdr; /* the capture storage */
48};
49
Willy Tarreaub6866442008-07-14 23:54:42 +020050struct tcp_rule {
51 struct list list;
52 struct acl_cond *cond;
53 int action;
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010054 int (*action_ptr)(struct tcp_rule *rule, struct proxy *px,
Willy Tarreau87b09662015-04-03 00:22:06 +020055 struct stream *s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020056 union {
57 struct track_ctr_prm trk_ctr;
Willy Tarreau3a4ac422014-06-13 16:17:14 +020058 struct capture_prm cap;
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010059 void *data;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020060 } act_prm;
Willy Tarreaub6866442008-07-14 23:54:42 +020061};
62
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010063struct tcp_action_kw {
64 const char *kw;
65 int (*parse)(const char **args, int *cur_arg, struct proxy *px,
66 struct tcp_rule *rule, char **err);
67};
68
69struct tcp_action_kw_list {
70 const char *scope;
71 struct list list;
72 struct tcp_action_kw kw[VAR_ARRAY];
73};
74
Willy Tarreaub6866442008-07-14 23:54:42 +020075#endif /* _TYPES_PROTO_TCP_H */
76
77/*
78 * Local variables:
79 * c-indent-level: 8
80 * c-basic-offset: 8
81 * End:
82 */