blob: c93e483a30226b1b782040caa1d47af39059039d [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreaueb472682010-05-28 18:46:57 +02002 * include/proto/stream_sock.h
3 * This file contains client-side 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 Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _PROTO_STREAM_SOCK_H
23#define _PROTO_STREAM_SOCK_H
24
25#include <stdlib.h>
26#include <sys/socket.h>
27#include <sys/types.h>
28
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/config.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020030#include <types/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
32
Willy Tarreauf8306d52006-07-29 19:01:31 +020033/* main event functions used to move data between sockets and buffers */
Willy Tarreaud7971282006-07-29 18:36:34 +020034int stream_sock_read(int fd);
Willy Tarreauf8306d52006-07-29 19:01:31 +020035int stream_sock_write(int fd);
Willy Tarreaub0253252008-11-30 21:37:12 +010036void stream_sock_data_finish(struct stream_interface *si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +010037void stream_sock_shutr(struct stream_interface *si);
38void stream_sock_shutw(struct stream_interface *si);
Willy Tarreau3ffeba12008-12-14 14:42:35 +010039void stream_sock_chk_rcv(struct stream_interface *si);
40void stream_sock_chk_snd(struct stream_interface *si);
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreau5c979a92012-05-07 17:15:39 +020042extern struct sock_ops stream_sock;
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
44/* This either returns the sockname or the original destination address. Code
45 * inspired from Patrick Schaaf's example of nf_getsockname() implementation.
46 */
47static inline int get_original_dst(int fd, struct sockaddr_in *sa, socklen_t *salen) {
48#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
49 return getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, (void *)sa, salen);
50#else
51#if defined(TPROXY) && defined(USE_GETSOCKNAME)
52 return getsockname(fd, (struct sockaddr *)sa, salen);
53#else
54 return -1;
55#endif
56#endif
57}
58
59
Willy Tarreau9b061e32012-04-07 18:03:52 +020060/*
61 * Retrieves the original destination address for the stream interface. On the
62 * client side, if the original destination address was translated, the original
63 * address is retrieved.
64 */
65static inline void stream_sock_get_to_addr(struct stream_interface *si)
66{
67 socklen_t namelen;
68
69 if (si->flags & SI_FL_TO_SET)
70 return;
71
72 namelen = sizeof(si->addr.to);
73
74#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
75 if (getsockopt(si->fd, SOL_IP, SO_ORIGINAL_DST, (struct sockaddr *)&si->addr.to, &namelen) != -1) {
76 si->flags |= SI_FL_TO_SET;
77 return;
78 }
79#endif
Willy Tarreau26d8c592012-05-07 18:12:14 +020080 if (si->proto->get_dst &&
81 si->proto->get_dst(si->fd, (struct sockaddr *)&si->addr.to, &namelen) != -1)
Willy Tarreau9b061e32012-04-07 18:03:52 +020082 si->flags |= SI_FL_TO_SET;
83 return;
84}
85
86/*
87 * Retrieves the source address for the stream interface.
88 */
89static inline void stream_sock_get_from_addr(struct stream_interface *si)
90{
91 socklen_t namelen;
92
93 if (si->flags & SI_FL_FROM_SET)
94 return;
95
96 namelen = sizeof(si->addr.to);
Willy Tarreau26d8c592012-05-07 18:12:14 +020097 if (si->proto->get_src &&
98 si->proto->get_src(si->fd, (struct sockaddr *)&si->addr.from, &namelen) != -1)
Willy Tarreau9b061e32012-04-07 18:03:52 +020099 si->flags |= SI_FL_FROM_SET;
100 return;
101}
102
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104#endif /* _PROTO_STREAM_SOCK_H */
105
106/*
107 * Local variables:
108 * c-indent-level: 8
109 * c-basic-offset: 8
110 * End:
111 */