blob: 056129c14728f109b27c7387e8b54a21b4c30ad8 [file] [log] [blame]
Willy Tarreaue6b98942007-10-29 01:09:36 +01001/*
Willy Tarreaub1d67742010-03-29 19:36:59 +02002 * include/proto/proto_tcp.h
3 * This file contains TCP socket protocol definitions.
4 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01005 * Copyright (C) 2000-2013 Willy Tarreau - w@1wt.eu
Willy Tarreaub1d67742010-03-29 19:36:59 +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 */
Willy Tarreaue6b98942007-10-29 01:09:36 +010021
22#ifndef _PROTO_PROTO_TCP_H
23#define _PROTO_PROTO_TCP_H
24
25#include <common/config.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020026#include <types/proto_tcp.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010027#include <types/task.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020028#include <proto/stick_table.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010029
David du Colombier6f5ccb12011-03-10 22:26:24 +010030int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote);
Willy Tarreaue6b98942007-10-29 01:09:36 +010031void tcpv4_add_listener(struct listener *listener);
32void tcpv6_add_listener(struct listener *listener);
Willy Tarreau092d8652014-07-07 20:22:12 +020033int tcp_pause_listener(struct listener *l);
Willy Tarreauf0837b22012-11-24 10:24:27 +010034int tcp_connect_server(struct connection *conn, int data, int delack);
Willy Tarreau239d7182012-07-23 18:53:03 +020035int tcp_connect_probe(struct connection *conn);
Willy Tarreau59b94792012-05-11 16:16:40 +020036int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir);
37int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir);
Willy Tarreau2b57cb82013-06-10 19:56:38 +020038int tcp_drain(int fd);
Willy Tarreau87b09662015-04-03 00:22:06 +020039int tcp_inspect_request(struct stream *s, struct channel *req, int an_bit);
40int tcp_inspect_response(struct stream *s, struct channel *rep, int an_bit);
Willy Tarreaue73ef852015-04-04 16:41:45 +020041int tcp_exec_req_rules(struct session *sess);
Willy Tarreaue6b98942007-10-29 01:09:36 +010042
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010043/* TCP keywords. */
44void tcp_req_conn_keywords_register(struct tcp_action_kw_list *kw_list);
45void tcp_req_cont_keywords_register(struct tcp_action_kw_list *kw_list);
46void tcp_res_cont_keywords_register(struct tcp_action_kw_list *kw_list);
47
Willy Tarreau64ee4912012-08-30 22:59:48 +020048/* Converts the INET/INET6 source address to a stick_table key usable for table
Thierry FOURNIER74c219d2014-04-14 14:35:40 +020049 * lookups. <type> can be STKTABLE_TYPE_IP or STKTABLE_TYPE_IPV6. The function
50 * try to convert the incoming IP to the type expected by the sticktable.
51 * Returns either NULL if the source cannot be converted (eg: not IPv4) or a
52 * pointer to the converted result in static_table_key in the appropriate format
53 * (IP).
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020054 */
Thierry FOURNIER74c219d2014-04-14 14:35:40 +020055static inline struct stktable_key *addr_to_stktable_key(struct sockaddr_storage *addr, long type)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020056{
Willy Tarreau64ee4912012-08-30 22:59:48 +020057 switch (addr->ss_family) {
David du Colombier4f92d322011-03-24 11:09:31 +010058 case AF_INET:
Thierry FOURNIER74c219d2014-04-14 14:35:40 +020059 /* Convert IPv4 to IPv4 key. */
60 if (type == STKTABLE_TYPE_IP) {
61 static_table_key->key = (void *)&((struct sockaddr_in *)addr)->sin_addr;
62 break;
63 }
64 /* Convert IPv4 to IPv6 key. */
65 if (type == STKTABLE_TYPE_IPV6) {
66 v4tov6(&static_table_key->data.ipv6, &((struct sockaddr_in *)addr)->sin_addr);
67 static_table_key->key = &static_table_key->data.ipv6;
68 break;
69 }
70 return NULL;
71
David du Colombier4f92d322011-03-24 11:09:31 +010072 case AF_INET6:
Thierry FOURNIER74c219d2014-04-14 14:35:40 +020073 /* Convert IPv6 to IPv4 key. This conversion can be failed. */
74 if (type == STKTABLE_TYPE_IP) {
75 if (!v6tov4(&static_table_key->data.ip, &((struct sockaddr_in6 *)addr)->sin6_addr))
76 return NULL;
77 static_table_key->key = &static_table_key->data.ip;
78 break;
79 }
80 /* Convert IPv6 to IPv6 key. */
81 if (type == STKTABLE_TYPE_IPV6) {
82 static_table_key->key = (void *)&((struct sockaddr_in6 *)addr)->sin6_addr;
83 break;
84 }
85 return NULL;
Willy Tarreauc3a08a12012-08-30 22:52:28 +020086 default:
87 return NULL;
David du Colombier4f92d322011-03-24 11:09:31 +010088 }
Willy Tarreau07115412012-10-29 21:56:59 +010089 return static_table_key;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020090}
91
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +020092/* for a tcp-request action TCP_ACT_TRK_*, return a tracking index starting at
Willy Tarreau34c2fb62013-12-02 23:29:05 +010093 * zero for SC0. Unknown actions also return zero.
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +020094 */
95static inline int tcp_trk_idx(int trk_action)
96{
Willy Tarreaube4a3ef2013-06-17 15:04:07 +020097 return trk_action - TCP_ACT_TRK_SC0;
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +020098}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020099
Willy Tarreaue6b98942007-10-29 01:09:36 +0100100#endif /* _PROTO_PROTO_TCP_H */
101
102/*
103 * Local variables:
104 * c-indent-level: 8
105 * c-basic-offset: 8
106 * End:
107 */