Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 1 | /* |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 2 | * include/proto/proto_tcp.h |
| 3 | * This file contains TCP socket protocol definitions. |
| 4 | * |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2013 Willy Tarreau - w@1wt.eu |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 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 Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_PROTO_TCP_H |
| 23 | #define _PROTO_PROTO_TCP_H |
| 24 | |
| 25 | #include <common/config.h> |
Thierry FOURNIER | ec3c37d | 2015-09-10 18:28:10 +0200 | [diff] [blame] | 26 | #include <types/action.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 27 | #include <types/task.h> |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 28 | #include <proto/stick_table.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 29 | |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 30 | int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 31 | void tcpv4_add_listener(struct listener *listener); |
| 32 | void tcpv6_add_listener(struct listener *listener); |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 33 | int tcp_pause_listener(struct listener *l); |
Willy Tarreau | f0837b2 | 2012-11-24 10:24:27 +0100 | [diff] [blame] | 34 | int tcp_connect_server(struct connection *conn, int data, int delack); |
Willy Tarreau | 239d718 | 2012-07-23 18:53:03 +0200 | [diff] [blame] | 35 | int tcp_connect_probe(struct connection *conn); |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 36 | int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir); |
| 37 | int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir); |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 38 | int tcp_drain(int fd); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 39 | int tcp_inspect_request(struct stream *s, struct channel *req, int an_bit); |
| 40 | int tcp_inspect_response(struct stream *s, struct channel *rep, int an_bit); |
Willy Tarreau | 7d9736f | 2016-10-21 16:34:21 +0200 | [diff] [blame] | 41 | int tcp_exec_l4_rules(struct session *sess); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 42 | int tcp_exec_l5_rules(struct session *sess); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 43 | |
Thierry FOURNIER | cc87a11 | 2014-12-12 19:41:33 +0100 | [diff] [blame] | 44 | /* TCP keywords. */ |
Thierry FOURNIER | 36481b8 | 2015-08-19 09:01:53 +0200 | [diff] [blame] | 45 | void tcp_req_conn_keywords_register(struct action_kw_list *kw_list); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 46 | void tcp_req_sess_keywords_register(struct action_kw_list *kw_list); |
Thierry FOURNIER | 36481b8 | 2015-08-19 09:01:53 +0200 | [diff] [blame] | 47 | void tcp_req_cont_keywords_register(struct action_kw_list *kw_list); |
| 48 | void tcp_res_cont_keywords_register(struct action_kw_list *kw_list); |
Thierry FOURNIER | cc87a11 | 2014-12-12 19:41:33 +0100 | [diff] [blame] | 49 | |
Thierry FOURNIER | a123ad8 | 2015-07-24 09:12:15 +0200 | [diff] [blame] | 50 | /* Export some samples. */ |
| 51 | int smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private); |
| 52 | |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 53 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 54 | /* for a tcp-request action ACT_TCP_TRK_*, return a tracking index starting at |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 55 | * zero for SC0. Unknown actions also return zero. |
Willy Tarreau | d5ca9ab | 2013-05-28 17:40:25 +0200 | [diff] [blame] | 56 | */ |
| 57 | static inline int tcp_trk_idx(int trk_action) |
| 58 | { |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 59 | return trk_action - ACT_ACTION_TRK_SC0; |
Willy Tarreau | d5ca9ab | 2013-05-28 17:40:25 +0200 | [diff] [blame] | 60 | } |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 61 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 62 | #endif /* _PROTO_PROTO_TCP_H */ |
| 63 | |
| 64 | /* |
| 65 | * Local variables: |
| 66 | * c-indent-level: 8 |
| 67 | * c-basic-offset: 8 |
| 68 | * End: |
| 69 | */ |