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> |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 26 | #include <types/proto_tcp.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 | f0837b2 | 2012-11-24 10:24:27 +0100 | [diff] [blame] | 33 | int tcp_connect_server(struct connection *conn, int data, int delack); |
Willy Tarreau | 239d718 | 2012-07-23 18:53:03 +0200 | [diff] [blame] | 34 | int tcp_connect_probe(struct connection *conn); |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 35 | int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir); |
| 36 | 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] | 37 | int tcp_drain(int fd); |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 38 | int tcp_inspect_request(struct session *s, struct channel *req, int an_bit); |
| 39 | int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit); |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 40 | int tcp_exec_req_rules(struct session *s); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 41 | |
Willy Tarreau | 64ee491 | 2012-08-30 22:59:48 +0200 | [diff] [blame] | 42 | /* Converts the INET/INET6 source address to a stick_table key usable for table |
Thierry FOURNIER | 74c219d | 2014-04-14 14:35:40 +0200 | [diff] [blame] | 43 | * lookups. <type> can be STKTABLE_TYPE_IP or STKTABLE_TYPE_IPV6. The function |
| 44 | * try to convert the incoming IP to the type expected by the sticktable. |
| 45 | * Returns either NULL if the source cannot be converted (eg: not IPv4) or a |
| 46 | * pointer to the converted result in static_table_key in the appropriate format |
| 47 | * (IP). |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 48 | */ |
Thierry FOURNIER | 74c219d | 2014-04-14 14:35:40 +0200 | [diff] [blame] | 49 | static inline struct stktable_key *addr_to_stktable_key(struct sockaddr_storage *addr, long type) |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 50 | { |
Willy Tarreau | 64ee491 | 2012-08-30 22:59:48 +0200 | [diff] [blame] | 51 | switch (addr->ss_family) { |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 52 | case AF_INET: |
Thierry FOURNIER | 74c219d | 2014-04-14 14:35:40 +0200 | [diff] [blame] | 53 | /* Convert IPv4 to IPv4 key. */ |
| 54 | if (type == STKTABLE_TYPE_IP) { |
| 55 | static_table_key->key = (void *)&((struct sockaddr_in *)addr)->sin_addr; |
| 56 | break; |
| 57 | } |
| 58 | /* Convert IPv4 to IPv6 key. */ |
| 59 | if (type == STKTABLE_TYPE_IPV6) { |
| 60 | v4tov6(&static_table_key->data.ipv6, &((struct sockaddr_in *)addr)->sin_addr); |
| 61 | static_table_key->key = &static_table_key->data.ipv6; |
| 62 | break; |
| 63 | } |
| 64 | return NULL; |
| 65 | |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 66 | case AF_INET6: |
Thierry FOURNIER | 74c219d | 2014-04-14 14:35:40 +0200 | [diff] [blame] | 67 | /* Convert IPv6 to IPv4 key. This conversion can be failed. */ |
| 68 | if (type == STKTABLE_TYPE_IP) { |
| 69 | if (!v6tov4(&static_table_key->data.ip, &((struct sockaddr_in6 *)addr)->sin6_addr)) |
| 70 | return NULL; |
| 71 | static_table_key->key = &static_table_key->data.ip; |
| 72 | break; |
| 73 | } |
| 74 | /* Convert IPv6 to IPv6 key. */ |
| 75 | if (type == STKTABLE_TYPE_IPV6) { |
| 76 | static_table_key->key = (void *)&((struct sockaddr_in6 *)addr)->sin6_addr; |
| 77 | break; |
| 78 | } |
| 79 | return NULL; |
Willy Tarreau | c3a08a1 | 2012-08-30 22:52:28 +0200 | [diff] [blame] | 80 | default: |
| 81 | return NULL; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 82 | } |
Willy Tarreau | 0711541 | 2012-10-29 21:56:59 +0100 | [diff] [blame] | 83 | return static_table_key; |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 84 | } |
| 85 | |
Willy Tarreau | d5ca9ab | 2013-05-28 17:40:25 +0200 | [diff] [blame] | 86 | /* for a tcp-request action TCP_ACT_TRK_*, return a tracking index starting at |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 87 | * zero for SC0. Unknown actions also return zero. |
Willy Tarreau | d5ca9ab | 2013-05-28 17:40:25 +0200 | [diff] [blame] | 88 | */ |
| 89 | static inline int tcp_trk_idx(int trk_action) |
| 90 | { |
Willy Tarreau | be4a3ef | 2013-06-17 15:04:07 +0200 | [diff] [blame] | 91 | return trk_action - TCP_ACT_TRK_SC0; |
Willy Tarreau | d5ca9ab | 2013-05-28 17:40:25 +0200 | [diff] [blame] | 92 | } |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 93 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 94 | #endif /* _PROTO_PROTO_TCP_H */ |
| 95 | |
| 96 | /* |
| 97 | * Local variables: |
| 98 | * c-indent-level: 8 |
| 99 | * c-basic-offset: 8 |
| 100 | * End: |
| 101 | */ |