blob: ad5ae6871b7bf243dfa674f79a86615d594254a4 [file] [log] [blame]
Willy Tarreaucff64112008-11-03 06:26:53 +01001/*
Willy Tarreau8e89b842009-10-18 23:56:35 +02002 * include/proto/stream_interface.h
3 * This file contains stream_interface function prototypes
4 *
Willy Tarreauf873d752012-05-11 17:47:17 +02005 * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
Willy Tarreau8e89b842009-10-18 23:56:35 +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 Tarreaucff64112008-11-03 06:26:53 +010021
22#ifndef _PROTO_STREAM_INTERFACE_H
23#define _PROTO_STREAM_INTERFACE_H
24
25#include <stdlib.h>
26
27#include <common/config.h>
28#include <types/stream_interface.h>
29
30
31/* main event functions used to move data between sockets and buffers */
Willy Tarreau269358d2009-09-20 20:14:49 +020032int stream_int_check_timeouts(struct stream_interface *si);
Willy Tarreaucff64112008-11-03 06:26:53 +010033void stream_int_report_error(struct stream_interface *si);
Willy Tarreaudded32d2008-11-30 19:48:07 +010034void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg);
Willy Tarreaucff64112008-11-03 06:26:53 +010035
Willy Tarreau5c979a92012-05-07 17:15:39 +020036extern struct sock_ops stream_int_embedded;
37extern struct sock_ops stream_int_task;
38
Willy Tarreaufb90d942009-09-05 20:57:35 +020039struct task *stream_int_register_handler(struct stream_interface *si,
Willy Tarreaub24281b2011-02-13 13:16:36 +010040 struct si_applet *app);
Willy Tarreaufb90d942009-09-05 20:57:35 +020041struct task *stream_int_register_handler_task(struct stream_interface *si,
42 struct task *(*fct)(struct task *));
43void stream_int_unregister_handler(struct stream_interface *si);
44
Willy Tarreau9e000c62011-03-10 14:03:36 +010045static inline void clear_target(struct target *dest)
46{
47 dest->type = TARG_TYPE_NONE;
48 dest->ptr.v = NULL;
49}
50
Willy Tarreau1539a012012-05-11 14:47:34 +020051static inline void set_target_client(struct target *dest)
52{
53 dest->type = TARG_TYPE_CLIENT;
54 dest->ptr.v = NULL;
55}
56
Willy Tarreau9e000c62011-03-10 14:03:36 +010057static inline void set_target_server(struct target *dest, struct server *s)
58{
59 dest->type = TARG_TYPE_SERVER;
60 dest->ptr.s = s;
61}
62
63static inline void set_target_proxy(struct target *dest, struct proxy *p)
64{
65 dest->type = TARG_TYPE_PROXY;
66 dest->ptr.p = p;
67}
68
69static inline void set_target_applet(struct target *dest, struct si_applet *a)
70{
71 dest->type = TARG_TYPE_APPLET;
72 dest->ptr.a = a;
73}
74
75static inline void set_target_task(struct target *dest, struct task *t)
76{
77 dest->type = TARG_TYPE_TASK;
78 dest->ptr.t = t;
79}
80
81static inline struct target *copy_target(struct target *dest, struct target *src)
82{
83 *dest = *src;
84 return dest;
85}
86
87static inline int target_match(struct target *a, struct target *b)
88{
89 return a->type == b->type && a->ptr.v == b->ptr.v;
90}
91
Willy Tarreau827aee92011-03-10 16:55:02 +010092static inline struct server *target_srv(struct target *t)
93{
94 if (!t || t->type != TARG_TYPE_SERVER)
95 return NULL;
96 return t->ptr.s;
97}
98
Willy Tarreau5c979a92012-05-07 17:15:39 +020099static inline void stream_interface_prepare(struct stream_interface *si, const struct sock_ops *ops)
100{
101 memcpy(&si->sock, ops, sizeof(si->sock));
102}
103
Willy Tarreau59b94792012-05-11 16:16:40 +0200104
105/* Retrieves the source address for the stream interface. */
106static inline void si_get_from_addr(struct stream_interface *si)
107{
108 if (si->flags & SI_FL_FROM_SET)
109 return;
110
111 if (!si->proto || !si->proto->get_src)
112 return;
113
114 if (si->proto->get_src(si->fd, (struct sockaddr *)&si->addr.from,
115 sizeof(si->addr.from),
116 si->target.type != TARG_TYPE_CLIENT) == -1)
117 return;
118 si->flags |= SI_FL_FROM_SET;
119}
120
121/* Retrieves the original destination address for the stream interface. */
122static inline void si_get_to_addr(struct stream_interface *si)
123{
124 if (si->flags & SI_FL_TO_SET)
125 return;
126
127 if (!si->proto || !si->proto->get_dst)
128 return;
129
130 if (si->proto->get_dst(si->fd, (struct sockaddr *)&si->addr.to,
131 sizeof(si->addr.to),
132 si->target.type != TARG_TYPE_CLIENT) == -1)
133 return;
134 si->flags |= SI_FL_TO_SET;
135}
136
137
Willy Tarreaucff64112008-11-03 06:26:53 +0100138#endif /* _PROTO_STREAM_INTERFACE_H */
139
140/*
141 * Local variables:
142 * c-indent-level: 8
143 * c-basic-offset: 8
144 * End:
145 */