2012-07-06 12:13:49 +00:00
|
|
|
/*
|
|
|
|
* include/proto/connection.h
|
|
|
|
* This file contains connection function prototypes
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
|
|
* exclusively.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PROTO_CONNECTION_H
|
|
|
|
#define _PROTO_CONNECTION_H
|
|
|
|
|
|
|
|
#include <common/config.h>
|
2017-09-21 17:40:52 +00:00
|
|
|
#include <common/ist.h>
|
2012-10-26 18:10:28 +00:00
|
|
|
#include <common/memory.h>
|
2012-07-06 12:13:49 +00:00
|
|
|
#include <types/connection.h>
|
2012-09-12 20:58:11 +00:00
|
|
|
#include <types/listener.h>
|
2012-11-23 16:32:21 +00:00
|
|
|
#include <proto/fd.h>
|
2012-11-11 23:42:33 +00:00
|
|
|
#include <proto/obj_type.h>
|
2018-07-17 16:46:31 +00:00
|
|
|
#include <proto/task.h>
|
2012-07-06 12:13:49 +00:00
|
|
|
|
2017-11-24 16:34:44 +00:00
|
|
|
extern struct pool_head *pool_head_connection;
|
|
|
|
extern struct pool_head *pool_head_connstream;
|
2016-12-22 19:25:26 +00:00
|
|
|
extern struct xprt_ops *registered_xprt[XPRT_ENTRIES];
|
2017-09-21 17:40:52 +00:00
|
|
|
extern struct alpn_mux_list alpn_mux_list;
|
2012-10-26 18:10:28 +00:00
|
|
|
|
|
|
|
/* perform minimal intializations, report 0 in case of error, 1 if OK. */
|
|
|
|
int init_connection();
|
|
|
|
|
2012-07-06 12:13:49 +00:00
|
|
|
/* I/O callback for fd-based connections. It calls the read/write handlers
|
2016-04-14 09:13:20 +00:00
|
|
|
* provided by the connection's sock_ops.
|
2012-07-06 12:13:49 +00:00
|
|
|
*/
|
2016-04-14 09:13:20 +00:00
|
|
|
void conn_fd_handler(int fd);
|
2012-07-06 12:13:49 +00:00
|
|
|
|
2018-03-02 12:55:01 +00:00
|
|
|
/* conn_stream functions */
|
|
|
|
size_t __cs_recv(struct conn_stream *cs, struct buffer *buf, size_t count, int flags);
|
|
|
|
|
2012-08-31 15:43:29 +00:00
|
|
|
/* receive a PROXY protocol header over a connection */
|
|
|
|
int conn_recv_proxy(struct connection *conn, int flag);
|
2014-05-09 03:42:08 +00:00
|
|
|
int make_proxy_line(char *buf, int buf_len, struct server *srv, struct connection *remote);
|
|
|
|
int make_proxy_line_v1(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst);
|
|
|
|
int make_proxy_line_v2(char *buf, int buf_len, struct server *srv, struct connection *remote);
|
2012-08-31 15:43:29 +00:00
|
|
|
|
2018-07-17 16:46:31 +00:00
|
|
|
int conn_subscribe(struct connection *conn, int event_type, void *param);
|
2016-06-04 14:11:10 +00:00
|
|
|
/* receive a NetScaler Client IP insertion header over a connection */
|
|
|
|
int conn_recv_netscaler_cip(struct connection *conn, int flag);
|
|
|
|
|
2015-03-12 22:56:52 +00:00
|
|
|
/* raw send() directly on the socket */
|
|
|
|
int conn_sock_send(struct connection *conn, const void *buf, int len, int flags);
|
|
|
|
|
2015-03-12 23:40:28 +00:00
|
|
|
/* drains any pending bytes from the socket */
|
|
|
|
int conn_sock_drain(struct connection *conn);
|
|
|
|
|
2013-12-15 09:23:20 +00:00
|
|
|
/* returns true is the transport layer is ready */
|
2014-01-23 13:21:42 +00:00
|
|
|
static inline int conn_xprt_ready(const struct connection *conn)
|
2013-12-15 09:23:20 +00:00
|
|
|
{
|
2014-01-23 13:21:42 +00:00
|
|
|
return (conn->flags & CO_FL_XPRT_READY);
|
2013-12-15 09:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* returns true is the control layer is ready */
|
2014-01-23 12:50:42 +00:00
|
|
|
static inline int conn_ctrl_ready(const struct connection *conn)
|
2013-12-15 09:23:20 +00:00
|
|
|
{
|
|
|
|
return (conn->flags & CO_FL_CTRL_READY);
|
|
|
|
}
|
|
|
|
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
/* Calls the init() function of the transport layer if any and if not done yet,
|
|
|
|
* and sets the CO_FL_XPRT_READY flag to indicate it was properly initialized.
|
REORG: connection: rename the data layer the "transport layer"
While working on the changes required to make the health checks use the
new connections, it started to become obvious that some naming was not
logical at all in the connections. Specifically, it is not logical to
call the "data layer" the layer which is in charge for all the handshake
and which does not yet provide a data layer once established until a
session has allocated all the required buffers.
In fact, it's more a transport layer, which makes much more sense. The
transport layer offers a medium on which data can transit, and it offers
the functions to move these data when the upper layer requests this. And
it is the upper layer which iterates over the transport layer's functions
to move data which should be called the data layer.
The use case where it's obvious is with embryonic sessions : an incoming
SSL connection is accepted. Only the connection is allocated, not the
buffers nor stream interface, etc... The connection handles the SSL
handshake by itself. Once this handshake is complete, we can't use the
data functions because the buffers and stream interface are not there
yet. Hence we have to first call a specific function to complete the
session initialization, after which we'll be able to use the data
functions. This clearly proves that SSL here is only a transport layer
and that the stream interface constitutes the data layer.
A similar change will be performed to rename app_cb => data, but the
two could not be in the same commit for obvious reasons.
2012-10-02 22:19:48 +00:00
|
|
|
* Returns <0 in case of error.
|
2012-08-31 11:54:11 +00:00
|
|
|
*/
|
REORG: connection: rename the data layer the "transport layer"
While working on the changes required to make the health checks use the
new connections, it started to become obvious that some naming was not
logical at all in the connections. Specifically, it is not logical to
call the "data layer" the layer which is in charge for all the handshake
and which does not yet provide a data layer once established until a
session has allocated all the required buffers.
In fact, it's more a transport layer, which makes much more sense. The
transport layer offers a medium on which data can transit, and it offers
the functions to move these data when the upper layer requests this. And
it is the upper layer which iterates over the transport layer's functions
to move data which should be called the data layer.
The use case where it's obvious is with embryonic sessions : an incoming
SSL connection is accepted. Only the connection is allocated, not the
buffers nor stream interface, etc... The connection handles the SSL
handshake by itself. Once this handshake is complete, we can't use the
data functions because the buffers and stream interface are not there
yet. Hence we have to first call a specific function to complete the
session initialization, after which we'll be able to use the data
functions. This clearly proves that SSL here is only a transport layer
and that the stream interface constitutes the data layer.
A similar change will be performed to rename app_cb => data, but the
two could not be in the same commit for obvious reasons.
2012-10-02 22:19:48 +00:00
|
|
|
static inline int conn_xprt_init(struct connection *conn)
|
2012-08-31 11:54:11 +00:00
|
|
|
{
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
2014-01-23 13:21:42 +00:00
|
|
|
if (!conn_xprt_ready(conn) && conn->xprt && conn->xprt->init)
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
ret = conn->xprt->init(conn);
|
|
|
|
|
|
|
|
if (ret >= 0)
|
|
|
|
conn->flags |= CO_FL_XPRT_READY;
|
|
|
|
|
|
|
|
return ret;
|
2012-08-31 11:54:11 +00:00
|
|
|
}
|
|
|
|
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
/* Calls the close() function of the transport layer if any and if not done
|
|
|
|
* yet, and clears the CO_FL_XPRT_READY flag. However this is not done if the
|
|
|
|
* CO_FL_XPRT_TRACKED flag is set, which allows logs to take data from the
|
|
|
|
* transport layer very late if needed.
|
2012-10-12 15:00:05 +00:00
|
|
|
*/
|
REORG: connection: rename the data layer the "transport layer"
While working on the changes required to make the health checks use the
new connections, it started to become obvious that some naming was not
logical at all in the connections. Specifically, it is not logical to
call the "data layer" the layer which is in charge for all the handshake
and which does not yet provide a data layer once established until a
session has allocated all the required buffers.
In fact, it's more a transport layer, which makes much more sense. The
transport layer offers a medium on which data can transit, and it offers
the functions to move these data when the upper layer requests this. And
it is the upper layer which iterates over the transport layer's functions
to move data which should be called the data layer.
The use case where it's obvious is with embryonic sessions : an incoming
SSL connection is accepted. Only the connection is allocated, not the
buffers nor stream interface, etc... The connection handles the SSL
handshake by itself. Once this handshake is complete, we can't use the
data functions because the buffers and stream interface are not there
yet. Hence we have to first call a specific function to complete the
session initialization, after which we'll be able to use the data
functions. This clearly proves that SSL here is only a transport layer
and that the stream interface constitutes the data layer.
A similar change will be performed to rename app_cb => data, but the
two could not be in the same commit for obvious reasons.
2012-10-02 22:19:48 +00:00
|
|
|
static inline void conn_xprt_close(struct connection *conn)
|
2012-08-06 13:06:49 +00:00
|
|
|
{
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
if ((conn->flags & (CO_FL_XPRT_READY|CO_FL_XPRT_TRACKED)) == CO_FL_XPRT_READY) {
|
2014-01-23 13:21:42 +00:00
|
|
|
if (conn->xprt->close)
|
2012-10-12 15:00:05 +00:00
|
|
|
conn->xprt->close(conn);
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
conn->flags &= ~CO_FL_XPRT_READY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initializes the connection's control layer which essentially consists in
|
|
|
|
* registering the file descriptor for polling and setting the CO_FL_CTRL_READY
|
2014-01-23 12:50:42 +00:00
|
|
|
* flag. The caller is responsible for ensuring that the control layer is
|
|
|
|
* already assigned to the connection prior to the call.
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_ctrl_init(struct connection *conn)
|
|
|
|
{
|
2014-01-23 12:50:42 +00:00
|
|
|
if (!conn_ctrl_ready(conn)) {
|
2017-08-24 12:31:19 +00:00
|
|
|
int fd = conn->handle.fd;
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
|
2018-01-25 06:22:13 +00:00
|
|
|
fd_insert(fd, conn, conn_fd_handler, tid_bit);
|
MAJOR: polling: rework the whole polling system
This commit heavily changes the polling system in order to definitely
fix the frequent breakage of SSL which needs to remember the last
EAGAIN before deciding whether to poll or not. Now we have a state per
direction for each FD, as opposed to a previous and current state
previously. An FD can have up to 8 different states for each direction,
each of which being the result of a 3-bit combination. These 3 bits
indicate a wish to access the FD, the readiness of the FD and the
subscription of the FD to the polling system.
This means that it will now be possible to remember the state of a
file descriptor across disable/enable sequences that generally happen
during forwarding, where enabling reading on a previously disabled FD
would result in forgetting the EAGAIN flag it met last time.
Several new state manipulation functions have been introduced or
adapted :
- fd_want_{recv,send} : enable receiving/sending on the FD regardless
of its state (sets the ACTIVE flag) ;
- fd_stop_{recv,send} : stop receiving/sending on the FD regardless
of its state (clears the ACTIVE flag) ;
- fd_cant_{recv,send} : report a failure to receive/send on the FD
corresponding to EAGAIN (clears the READY flag) ;
- fd_may_{recv,send} : report the ability to receive/send on the FD
as reported by poll() (sets the READY flag) ;
Some functions are used to report the current FD status :
- fd_{recv,send}_active
- fd_{recv,send}_ready
- fd_{recv,send}_polled
Some functions were removed :
- fd_ev_clr(), fd_ev_set(), fd_ev_rem(), fd_ev_wai()
The POLLHUP/POLLERR flags are now reported as ready so that the I/O layers
knows it can try to access the file descriptor to get this information.
In order to simplify the conditions to add/remove cache entries, a new
function fd_alloc_or_release_cache_entry() was created to be used from
pollers while scanning for updates.
The following pollers have been updated :
ev_select() : done, built, tested on Linux 3.10
ev_poll() : done, built, tested on Linux 3.10
ev_epoll() : done, built, tested on Linux 3.10 & 3.13
ev_kqueue() : done, built, tested on OpenBSD 5.2
2014-01-10 15:58:45 +00:00
|
|
|
/* mark the fd as ready so as not to needlessly poll at the beginning */
|
|
|
|
fd_may_recv(fd);
|
|
|
|
fd_may_send(fd);
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
conn->flags |= CO_FL_CTRL_READY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deletes the FD if the transport layer is already gone. Once done,
|
|
|
|
* it then removes the CO_FL_CTRL_READY flag.
|
|
|
|
*/
|
|
|
|
static inline void conn_ctrl_close(struct connection *conn)
|
|
|
|
{
|
|
|
|
if ((conn->flags & (CO_FL_XPRT_READY|CO_FL_CTRL_READY)) == CO_FL_CTRL_READY) {
|
2017-08-24 12:31:19 +00:00
|
|
|
fd_delete(conn->handle.fd);
|
2017-10-05 15:43:39 +00:00
|
|
|
conn->handle.fd = DEAD_FD_MAGIC;
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
conn->flags &= ~CO_FL_CTRL_READY;
|
2012-10-12 15:00:05 +00:00
|
|
|
}
|
2012-08-06 13:06:49 +00:00
|
|
|
}
|
|
|
|
|
2012-11-23 16:32:21 +00:00
|
|
|
/* If the connection still has a transport layer, then call its close() function
|
|
|
|
* if any, and delete the file descriptor if a control layer is set. This is
|
|
|
|
* used to close everything at once and atomically. However this is not done if
|
|
|
|
* the CO_FL_XPRT_TRACKED flag is set, which allows logs to take data from the
|
|
|
|
* transport layer very late if needed.
|
|
|
|
*/
|
|
|
|
static inline void conn_full_close(struct connection *conn)
|
|
|
|
{
|
MAJOR: connection: add two new flags to indicate readiness of control/transport
Currently the control and transport layers of a connection are supposed
to be initialized when their respective pointers are not NULL. This will
not work anymore when we plan to reuse connections, because there is an
asymmetry between the accept() side and the connect() side :
- on accept() side, the fd is set first, then the ctrl layer then the
transport layer ; upon error, they must be undone in the reverse order,
then the FD must be closed. The FD must not be deleted if the control
layer was not yet initialized ;
- on the connect() side, the fd is set last and there is no reliable way
to know if it has been initialized or not. In practice it's initialized
to -1 first but this is hackish and supposes that local FDs only will
be used forever. Also, there are even less solutions for keeping trace
of the transport layer's state.
Also it is possible to support delayed close() when something (eg: logs)
tracks some information requiring the transport and/or control layers,
making it even more difficult to clean them.
So the proposed solution is to add two flags to the connection :
- CO_FL_CTRL_READY is set when the control layer is initialized (fd_insert)
and cleared after it's released (fd_delete).
- CO_FL_XPRT_READY is set when the control layer is initialized (xprt->init)
and cleared after it's released (xprt->close).
The functions have been adapted to rely on this and not on the pointers
anymore. conn_xprt_close() was unused and dangerous : it did not close
the control layer (eg: the socket itself) but still marks the transport
layer as closed, preventing any future call to conn_full_close() from
finishing the job.
The problem comes from conn_full_close() in fact. It needs to close the
xprt and ctrl layers independantly. After that we're still having an issue :
we don't know based on ->ctrl alone whether the fd was registered or not.
For this we use the two new flags CO_FL_XPRT_READY and CO_FL_CTRL_READY. We
now rely on this and not on conn->xprt nor conn->ctrl anymore to decide what
remains to be done on the connection.
In order not to miss some flag assignments, we introduce conn_ctrl_init()
to initialize the control layer, register the fd using fd_insert() and set
the flag, and conn_ctrl_close() which unregisters the fd and removes the
flag, but only if the transport layer was closed.
Similarly, at the transport layer, conn_xprt_init() calls ->init and sets
the flag, while conn_xprt_close() checks the flag, calls ->close and clears
the flag, regardless xprt_ctx or xprt_st. This also ensures that the ->init
and the ->close functions are called only once each and in the correct order.
Note that conn_xprt_close() does nothing if the transport layer is still
tracked.
conn_full_close() now simply calls conn_xprt_close() then conn_full_close()
in turn, which do nothing if CO_FL_XPRT_TRACKED is set.
In order to handle the error path, we also provide conn_force_close() which
ignores CO_FL_XPRT_TRACKED and closes the transport and the control layers
in turns. All relevant instances of fd_delete() have been replaced with
conn_force_close(). Now we always know what state the connection is in and
we can expect to split its initialization.
2013-10-21 14:30:56 +00:00
|
|
|
conn_xprt_close(conn);
|
|
|
|
conn_ctrl_close(conn);
|
|
|
|
}
|
|
|
|
|
2017-10-05 16:09:20 +00:00
|
|
|
/* stop tracking a connection, allowing conn_full_close() to always
|
|
|
|
* succeed.
|
|
|
|
*/
|
|
|
|
static inline void conn_stop_tracking(struct connection *conn)
|
|
|
|
{
|
|
|
|
conn->flags &= ~CO_FL_XPRT_TRACKED;
|
|
|
|
}
|
|
|
|
|
2012-09-01 15:26:16 +00:00
|
|
|
/* Update polling on connection <c>'s file descriptor depending on its current
|
|
|
|
* state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN
|
|
|
|
* in CO_FL_WAIT_*, and the sock layer expectations indicated by CO_FL_SOCK_*.
|
|
|
|
* The connection flags are updated with the new flags at the end of the
|
2012-10-04 20:21:15 +00:00
|
|
|
* operation. Polling is totally disabled if an error was reported.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
2012-09-01 15:26:16 +00:00
|
|
|
void conn_update_sock_polling(struct connection *c);
|
2012-08-17 09:55:04 +00:00
|
|
|
|
2012-09-01 15:26:16 +00:00
|
|
|
/* Update polling on connection <c>'s file descriptor depending on its current
|
|
|
|
* state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN
|
2017-09-13 16:30:23 +00:00
|
|
|
* in CO_FL_WAIT_*, and the upper layer expectations indicated by CO_FL_XPRT_*.
|
2012-09-01 15:26:16 +00:00
|
|
|
* The connection flags are updated with the new flags at the end of the
|
2012-10-04 20:21:15 +00:00
|
|
|
* operation. Polling is totally disabled if an error was reported.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
void conn_update_xprt_polling(struct connection *c);
|
2012-08-17 09:55:04 +00:00
|
|
|
|
2012-12-16 18:19:13 +00:00
|
|
|
/* Refresh the connection's polling flags from its file descriptor status.
|
2017-10-25 07:22:43 +00:00
|
|
|
* This should be called at the beginning of a connection handler. It does
|
|
|
|
* nothing if CO_FL_WILL_UPDATE is present, indicating that an upper caller
|
|
|
|
* has already done it.
|
2012-12-16 18:19:13 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_refresh_polling_flags(struct connection *conn)
|
|
|
|
{
|
2017-10-25 07:22:43 +00:00
|
|
|
if (conn_ctrl_ready(conn) && !(conn->flags & CO_FL_WILL_UPDATE)) {
|
2017-10-25 08:28:45 +00:00
|
|
|
unsigned int flags = conn->flags;
|
2012-12-16 18:19:13 +00:00
|
|
|
|
2017-10-25 08:28:45 +00:00
|
|
|
flags &= ~(CO_FL_CURR_RD_ENA | CO_FL_CURR_WR_ENA | CO_FL_WAIT_ROOM);
|
2017-08-24 12:31:19 +00:00
|
|
|
if (fd_recv_active(conn->handle.fd))
|
2012-12-16 18:19:13 +00:00
|
|
|
flags |= CO_FL_CURR_RD_ENA;
|
2017-08-24 12:31:19 +00:00
|
|
|
if (fd_send_active(conn->handle.fd))
|
2012-12-16 18:19:13 +00:00
|
|
|
flags |= CO_FL_CURR_WR_ENA;
|
|
|
|
conn->flags = flags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
/* inspects c->flags and returns non-zero if XPRT ENA changes from the CURR ENA
|
2012-11-05 16:52:26 +00:00
|
|
|
* or if the WAIT flags are set with their respective ENA flags. Additionally,
|
2012-10-04 20:21:15 +00:00
|
|
|
* non-zero is also returned if an error was reported on the connection. This
|
|
|
|
* function is used quite often and is inlined. In order to proceed optimally
|
|
|
|
* with very little code and CPU cycles, the bits are arranged so that a change
|
2012-11-05 16:52:26 +00:00
|
|
|
* can be detected by a few left shifts, a xor, and a mask. These operations
|
|
|
|
* detect when W&D are both enabled for either direction, when C&D differ for
|
|
|
|
* either direction and when Error is set. The trick consists in first keeping
|
|
|
|
* only the bits we're interested in, since they don't collide when shifted,
|
|
|
|
* and to perform the AND at the end. In practice, the compiler is able to
|
|
|
|
* replace the last AND with a TEST in boolean conditions. This results in
|
|
|
|
* checks that are done in 4-6 cycles and less than 30 bytes.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline unsigned int conn_xprt_polling_changes(const struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2012-11-05 16:52:26 +00:00
|
|
|
unsigned int f = c->flags;
|
2017-09-13 16:30:23 +00:00
|
|
|
f &= CO_FL_XPRT_WR_ENA | CO_FL_XPRT_RD_ENA | CO_FL_CURR_WR_ENA |
|
2014-01-22 18:46:33 +00:00
|
|
|
CO_FL_CURR_RD_ENA | CO_FL_ERROR;
|
2012-11-05 16:52:26 +00:00
|
|
|
|
2014-01-22 18:46:33 +00:00
|
|
|
f = (f ^ (f << 1)) & (CO_FL_CURR_WR_ENA|CO_FL_CURR_RD_ENA); /* test C ^ D */
|
|
|
|
return f & (CO_FL_CURR_WR_ENA | CO_FL_CURR_RD_ENA | CO_FL_ERROR);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2012-09-01 15:26:16 +00:00
|
|
|
/* inspects c->flags and returns non-zero if SOCK ENA changes from the CURR ENA
|
2012-11-05 16:52:26 +00:00
|
|
|
* or if the WAIT flags are set with their respective ENA flags. Additionally,
|
2012-10-04 20:21:15 +00:00
|
|
|
* non-zero is also returned if an error was reported on the connection. This
|
|
|
|
* function is used quite often and is inlined. In order to proceed optimally
|
|
|
|
* with very little code and CPU cycles, the bits are arranged so that a change
|
2012-11-05 16:52:26 +00:00
|
|
|
* can be detected by a few left shifts, a xor, and a mask. These operations
|
|
|
|
* detect when W&S are both enabled for either direction, when C&S differ for
|
|
|
|
* either direction and when Error is set. The trick consists in first keeping
|
|
|
|
* only the bits we're interested in, since they don't collide when shifted,
|
|
|
|
* and to perform the AND at the end. In practice, the compiler is able to
|
|
|
|
* replace the last AND with a TEST in boolean conditions. This results in
|
|
|
|
* checks that are done in 4-6 cycles and less than 30 bytes.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
|
|
|
static inline unsigned int conn_sock_polling_changes(const struct connection *c)
|
|
|
|
{
|
2012-11-05 16:52:26 +00:00
|
|
|
unsigned int f = c->flags;
|
|
|
|
f &= CO_FL_SOCK_WR_ENA | CO_FL_SOCK_RD_ENA | CO_FL_CURR_WR_ENA |
|
2014-01-22 18:46:33 +00:00
|
|
|
CO_FL_CURR_RD_ENA | CO_FL_ERROR;
|
2012-11-05 16:52:26 +00:00
|
|
|
|
2014-01-22 18:46:33 +00:00
|
|
|
f = (f ^ (f << 2)) & (CO_FL_CURR_WR_ENA|CO_FL_CURR_RD_ENA); /* test C ^ S */
|
|
|
|
return f & (CO_FL_CURR_WR_ENA | CO_FL_CURR_RD_ENA | CO_FL_ERROR);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
/* Automatically updates polling on connection <c> depending on the XPRT flags
|
2017-10-25 07:22:43 +00:00
|
|
|
* if no handshake is in progress. It does nothing if CO_FL_WILL_UPDATE is
|
|
|
|
* present, indicating that an upper caller is going to do it again later.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_cond_update_xprt_polling(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-10-25 07:22:43 +00:00
|
|
|
if (!(c->flags & CO_FL_WILL_UPDATE))
|
|
|
|
if (!(c->flags & CO_FL_POLL_SOCK) && conn_xprt_polling_changes(c))
|
|
|
|
conn_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Automatically updates polling on connection <c> depending on the SOCK flags
|
2017-10-25 07:22:43 +00:00
|
|
|
* if a handshake is in progress. It does nothing if CO_FL_WILL_UPDATE is
|
|
|
|
* present, indicating that an upper caller is going to do it again later.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_cond_update_sock_polling(struct connection *c)
|
|
|
|
{
|
2017-10-25 07:22:43 +00:00
|
|
|
if (!(c->flags & CO_FL_WILL_UPDATE))
|
|
|
|
if ((c->flags & CO_FL_POLL_SOCK) && conn_sock_polling_changes(c))
|
|
|
|
conn_update_sock_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2012-11-24 10:09:07 +00:00
|
|
|
/* Stop all polling on the fd. This might be used when an error is encountered
|
2017-10-25 07:22:43 +00:00
|
|
|
* for example. It does not propage the change to the fd layer if
|
|
|
|
* CO_FL_WILL_UPDATE is present, indicating that an upper caller is going to do
|
|
|
|
* it later.
|
2012-11-24 10:09:07 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_stop_polling(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags &= ~(CO_FL_CURR_RD_ENA | CO_FL_CURR_WR_ENA |
|
|
|
|
CO_FL_SOCK_RD_ENA | CO_FL_SOCK_WR_ENA |
|
2017-09-13 16:30:23 +00:00
|
|
|
CO_FL_XPRT_RD_ENA | CO_FL_XPRT_WR_ENA);
|
2017-10-25 07:22:43 +00:00
|
|
|
if (!(c->flags & CO_FL_WILL_UPDATE) && conn_ctrl_ready(c))
|
2017-08-24 12:31:19 +00:00
|
|
|
fd_stop_both(c->handle.fd);
|
2012-11-24 10:09:07 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
/* Automatically update polling on connection <c> depending on the XPRT and
|
2012-08-17 09:55:04 +00:00
|
|
|
* SOCK flags, and on whether a handshake is in progress or not. This may be
|
|
|
|
* called at any moment when there is a doubt about the effectiveness of the
|
|
|
|
* polling state, for instance when entering or leaving the handshake state.
|
2017-10-25 07:22:43 +00:00
|
|
|
* It does nothing if CO_FL_WILL_UPDATE is present, indicating that an upper
|
|
|
|
* caller is going to do it again later.
|
2012-08-17 09:55:04 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_cond_update_polling(struct connection *c)
|
|
|
|
{
|
2012-11-24 10:09:07 +00:00
|
|
|
if (unlikely(c->flags & CO_FL_ERROR))
|
|
|
|
conn_stop_polling(c);
|
2017-10-25 07:22:43 +00:00
|
|
|
else if (!(c->flags & CO_FL_WILL_UPDATE)) {
|
|
|
|
if (!(c->flags & CO_FL_POLL_SOCK) && conn_xprt_polling_changes(c))
|
|
|
|
conn_update_xprt_polling(c);
|
|
|
|
else if ((c->flags & CO_FL_POLL_SOCK) && conn_sock_polling_changes(c))
|
|
|
|
conn_update_sock_polling(c);
|
|
|
|
}
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-10-08 13:16:00 +00:00
|
|
|
/* recompute the mux polling flags after updating the current conn_stream and
|
|
|
|
* propagate the result down the transport layer.
|
|
|
|
*/
|
|
|
|
static inline void cs_update_mux_polling(struct conn_stream *cs)
|
|
|
|
{
|
|
|
|
struct connection *conn = cs->conn;
|
|
|
|
|
|
|
|
if (conn->mux && conn->mux->update_poll)
|
|
|
|
conn->mux->update_poll(cs);
|
|
|
|
}
|
|
|
|
|
2018-03-02 12:55:01 +00:00
|
|
|
/* conn_stream receive function. Uses mux->rcv_buf() if defined, otherwise
|
|
|
|
* falls back to __cs_recv().
|
|
|
|
*/
|
|
|
|
static inline size_t cs_recv(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
|
|
|
|
{
|
|
|
|
if (cs->conn->mux->rcv_buf)
|
|
|
|
return cs->conn->mux->rcv_buf(cs, buf, count, flags);
|
|
|
|
else
|
|
|
|
return __cs_recv(cs, buf, count, flags);
|
|
|
|
}
|
|
|
|
|
2012-08-17 09:55:04 +00:00
|
|
|
/***** Event manipulation primitives for use by DATA I/O callbacks *****/
|
|
|
|
/* The __conn_* versions do not propagate to lower layers and are only meant
|
|
|
|
* to be used by handlers called by the connection handler. The other ones
|
|
|
|
* may be used anywhere.
|
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __conn_xprt_want_recv(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags |= CO_FL_XPRT_RD_ENA;
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __conn_xprt_stop_recv(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags &= ~CO_FL_XPRT_RD_ENA;
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __cs_want_recv(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
|
|
|
cs->flags |= CS_FL_DATA_RD_ENA;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __cs_stop_recv(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
|
|
|
cs->flags &= ~CS_FL_DATA_RD_ENA;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_want_recv(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__cs_want_recv(cs);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_update_mux_polling(cs);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_stop_recv(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__cs_stop_recv(cs);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_update_mux_polling(cs);
|
|
|
|
}
|
|
|
|
|
2016-11-29 20:47:02 +00:00
|
|
|
/* this one is used only to stop speculative recv(). It doesn't stop it if the
|
|
|
|
* fd is already polled in order to avoid expensive polling status changes.
|
|
|
|
* Since it might require the upper layer to re-enable reading, we'll return 1
|
|
|
|
* if we've really stopped something otherwise zero.
|
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline int __conn_xprt_done_recv(struct connection *c)
|
2016-11-29 20:47:02 +00:00
|
|
|
{
|
2017-08-24 12:31:19 +00:00
|
|
|
if (!conn_ctrl_ready(c) || !fd_recv_polled(c->handle.fd)) {
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags &= ~CO_FL_XPRT_RD_ENA;
|
2016-11-29 20:47:02 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __conn_xprt_want_send(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags |= CO_FL_XPRT_WR_ENA;
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __conn_xprt_stop_send(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags &= ~CO_FL_XPRT_WR_ENA;
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __conn_xprt_stop_both(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
c->flags &= ~(CO_FL_XPRT_WR_ENA | CO_FL_XPRT_RD_ENA);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __cs_want_send(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
|
|
|
cs->flags |= CS_FL_DATA_WR_ENA;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __cs_stop_send(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
|
|
|
cs->flags &= ~CS_FL_DATA_WR_ENA;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_stop_send(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__cs_stop_send(cs);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_update_mux_polling(cs);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_want_send(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__cs_want_send(cs);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_update_mux_polling(cs);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void __cs_stop_both(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
|
|
|
cs->flags &= ~(CS_FL_DATA_WR_ENA | CS_FL_DATA_RD_ENA);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_stop_both(struct conn_stream *cs)
|
2017-10-08 13:16:00 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__cs_stop_both(cs);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_update_mux_polling(cs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_want_recv(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_want_recv(c);
|
|
|
|
conn_cond_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_stop_recv(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_stop_recv(c);
|
|
|
|
conn_cond_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_want_send(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_want_send(c);
|
|
|
|
conn_cond_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_stop_send(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_stop_send(c);
|
|
|
|
conn_cond_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_stop_both(struct connection *c)
|
2012-08-17 09:55:04 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_stop_both(c);
|
|
|
|
conn_cond_update_xprt_polling(c);
|
2012-08-17 09:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***** Event manipulation primitives for use by handshake I/O callbacks *****/
|
|
|
|
/* The __conn_* versions do not propagate to lower layers and are only meant
|
|
|
|
* to be used by handlers called by the connection handler. The other ones
|
|
|
|
* may be used anywhere.
|
|
|
|
*/
|
|
|
|
static inline void __conn_sock_want_recv(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags |= CO_FL_SOCK_RD_ENA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __conn_sock_stop_recv(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags &= ~CO_FL_SOCK_RD_ENA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __conn_sock_want_send(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags |= CO_FL_SOCK_WR_ENA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __conn_sock_stop_send(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags &= ~CO_FL_SOCK_WR_ENA;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void __conn_sock_stop_both(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags &= ~(CO_FL_SOCK_WR_ENA | CO_FL_SOCK_RD_ENA);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void conn_sock_want_recv(struct connection *c)
|
|
|
|
{
|
|
|
|
__conn_sock_want_recv(c);
|
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void conn_sock_stop_recv(struct connection *c)
|
|
|
|
{
|
|
|
|
__conn_sock_stop_recv(c);
|
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void conn_sock_want_send(struct connection *c)
|
|
|
|
{
|
|
|
|
__conn_sock_want_send(c);
|
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void conn_sock_stop_send(struct connection *c)
|
|
|
|
{
|
|
|
|
__conn_sock_stop_send(c);
|
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void conn_sock_stop_both(struct connection *c)
|
|
|
|
{
|
|
|
|
__conn_sock_stop_both(c);
|
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
}
|
2012-08-06 13:06:49 +00:00
|
|
|
|
2017-10-25 07:59:22 +00:00
|
|
|
/* read shutdown, called from the rcv_buf/rcv_pipe handlers when
|
|
|
|
* detecting an end of connection.
|
|
|
|
*/
|
2012-08-20 14:55:48 +00:00
|
|
|
static inline void conn_sock_read0(struct connection *c)
|
|
|
|
{
|
|
|
|
c->flags |= CO_FL_SOCK_RD_SH;
|
|
|
|
__conn_sock_stop_recv(c);
|
2013-12-15 13:19:38 +00:00
|
|
|
/* we don't risk keeping ports unusable if we found the
|
|
|
|
* zero from the other side.
|
|
|
|
*/
|
2014-01-23 12:50:42 +00:00
|
|
|
if (conn_ctrl_ready(c))
|
2017-08-24 12:31:19 +00:00
|
|
|
fdtab[c->handle.fd].linger_risk = 0;
|
2012-08-20 14:55:48 +00:00
|
|
|
}
|
|
|
|
|
2017-10-25 07:59:22 +00:00
|
|
|
/* write shutdown, indication that the upper layer is not willing to send
|
2017-12-22 17:46:33 +00:00
|
|
|
* anything anymore and wants to close after pending data are sent. The
|
|
|
|
* <clean> argument will allow not to perform the socket layer shutdown if
|
|
|
|
* equal to 0.
|
2017-10-25 07:59:22 +00:00
|
|
|
*/
|
2017-12-22 17:46:33 +00:00
|
|
|
static inline void conn_sock_shutw(struct connection *c, int clean)
|
2012-08-20 14:55:48 +00:00
|
|
|
{
|
|
|
|
c->flags |= CO_FL_SOCK_WR_SH;
|
2017-10-25 07:59:22 +00:00
|
|
|
conn_refresh_polling_flags(c);
|
2012-08-20 14:55:48 +00:00
|
|
|
__conn_sock_stop_send(c);
|
2017-10-25 07:59:22 +00:00
|
|
|
conn_cond_update_sock_polling(c);
|
|
|
|
|
2017-12-22 17:46:33 +00:00
|
|
|
/* don't perform a clean shutdown if we're going to reset or
|
|
|
|
* if the shutr was already received.
|
|
|
|
*/
|
|
|
|
if (conn_ctrl_ready(c) && !(c->flags & CO_FL_SOCK_RD_SH) && clean)
|
2017-08-24 12:31:19 +00:00
|
|
|
shutdown(c->handle.fd, SHUT_WR);
|
2012-08-20 14:55:48 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_shutw(struct connection *c)
|
2012-08-20 14:55:48 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_stop_send(c);
|
2015-03-12 21:51:10 +00:00
|
|
|
|
|
|
|
/* clean data-layer shutdown */
|
|
|
|
if (c->xprt && c->xprt->shutw)
|
|
|
|
c->xprt->shutw(c, 1);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void conn_xprt_shutw_hard(struct connection *c)
|
2015-03-12 21:51:10 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
__conn_xprt_stop_send(c);
|
2015-03-12 21:51:10 +00:00
|
|
|
|
|
|
|
/* unclean data-layer shutdown */
|
|
|
|
if (c->xprt && c->xprt->shutw)
|
|
|
|
c->xprt->shutw(c, 0);
|
2012-08-20 14:55:48 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 13:25:48 +00:00
|
|
|
/* shut read */
|
|
|
|
static inline void cs_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
|
2017-09-13 16:30:23 +00:00
|
|
|
{
|
|
|
|
__cs_stop_recv(cs);
|
|
|
|
|
|
|
|
/* clean data-layer shutdown */
|
|
|
|
if (cs->conn->mux && cs->conn->mux->shutr)
|
2017-10-05 13:25:48 +00:00
|
|
|
cs->conn->mux->shutr(cs, mode);
|
|
|
|
cs->flags |= (mode == CS_SHR_DRAIN) ? CS_FL_SHRD : CS_FL_SHRR;
|
2017-09-13 16:30:23 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 13:25:48 +00:00
|
|
|
/* shut write */
|
|
|
|
static inline void cs_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
|
2017-09-13 16:30:23 +00:00
|
|
|
{
|
|
|
|
__cs_stop_send(cs);
|
|
|
|
|
|
|
|
/* clean data-layer shutdown */
|
|
|
|
if (cs->conn->mux && cs->conn->mux->shutw)
|
2017-10-05 13:25:48 +00:00
|
|
|
cs->conn->mux->shutw(cs, mode);
|
|
|
|
cs->flags |= (mode == CS_SHW_NORMAL) ? CS_FL_SHWN : CS_FL_SHWS;
|
2017-09-13 16:30:23 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:19:43 +00:00
|
|
|
/* completely close a conn_stream (but do not detach it) */
|
|
|
|
static inline void cs_close(struct conn_stream *cs)
|
|
|
|
{
|
|
|
|
cs_shutw(cs, CS_SHW_SILENT);
|
|
|
|
cs_shutr(cs, CS_SHR_RESET);
|
|
|
|
cs->flags = CS_FL_NONE;
|
|
|
|
}
|
|
|
|
|
2012-08-20 14:55:48 +00:00
|
|
|
/* detect sock->data read0 transition */
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline int conn_xprt_read0_pending(struct connection *c)
|
2012-08-20 14:55:48 +00:00
|
|
|
{
|
2017-08-30 05:35:35 +00:00
|
|
|
return (c->flags & CO_FL_SOCK_RD_SH) != 0;
|
2012-08-20 14:55:48 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 13:08:37 +00:00
|
|
|
/* prepares a connection to work with protocol <proto> and transport <xprt>.
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
* The transport's is initialized as well, and the mux and its context are
|
|
|
|
* cleared.
|
2013-10-24 13:08:37 +00:00
|
|
|
*/
|
|
|
|
static inline void conn_prepare(struct connection *conn, const struct protocol *proto, const struct xprt_ops *xprt)
|
|
|
|
{
|
|
|
|
conn->ctrl = proto;
|
|
|
|
conn->xprt = xprt;
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
conn->mux = NULL;
|
2013-10-24 13:08:37 +00:00
|
|
|
conn->xprt_st = 0;
|
|
|
|
conn->xprt_ctx = NULL;
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
conn->mux_ctx = NULL;
|
2013-10-24 13:08:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-08 13:16:00 +00:00
|
|
|
/*
|
|
|
|
* Initializes all required fields for a new conn_strema.
|
|
|
|
*/
|
|
|
|
static inline void cs_init(struct conn_stream *cs, struct connection *conn)
|
|
|
|
{
|
|
|
|
cs->obj_type = OBJ_TYPE_CS;
|
|
|
|
cs->flags = CS_FL_NONE;
|
2018-07-17 16:49:38 +00:00
|
|
|
LIST_INIT(&cs->wait_list.list);
|
2018-07-17 16:46:31 +00:00
|
|
|
LIST_INIT(&cs->send_wait_list);
|
2017-10-08 13:16:00 +00:00
|
|
|
cs->conn = conn;
|
2018-03-02 09:43:58 +00:00
|
|
|
cs->rxbuf = BUF_NULL;
|
2018-05-23 12:58:55 +00:00
|
|
|
cs->txbuf = BUF_NULL;
|
2017-10-08 13:16:00 +00:00
|
|
|
}
|
|
|
|
|
2013-10-14 15:10:08 +00:00
|
|
|
/* Initializes all required fields for a new connection. Note that it does the
|
|
|
|
* minimum acceptable initialization for a connection that already exists and
|
|
|
|
* is about to be reused. It also leaves the addresses untouched, which makes
|
|
|
|
* it usable across connection retries to reset a connection to a known state.
|
|
|
|
*/
|
|
|
|
static inline void conn_init(struct connection *conn)
|
|
|
|
{
|
|
|
|
conn->obj_type = OBJ_TYPE_CONN;
|
|
|
|
conn->flags = CO_FL_NONE;
|
MEDIUM: ssl: Handle early data with OpenSSL 1.1.1
When compiled with Openssl >= 1.1.1, before attempting to do the handshake,
try to read any early data. If any early data is present, then we'll create
the session, read the data, and handle the request before we're doing the
handshake.
For this, we add a new connection flag, CO_FL_EARLY_SSL_HS, which is not
part of the CO_FL_HANDSHAKE set, allowing to proceed with a session even
before an SSL handshake is completed.
As early data do have security implication, we let the origin server know
the request comes from early data by adding the "Early-Data" header, as
specified in this draft from the HTTP working group :
https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-replay
2017-09-22 16:26:28 +00:00
|
|
|
conn->tmp_early_data = -1;
|
2017-11-23 17:21:29 +00:00
|
|
|
conn->sent_early_data = 0;
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
conn->mux = NULL;
|
|
|
|
conn->mux_ctx = NULL;
|
2013-10-14 15:10:08 +00:00
|
|
|
conn->owner = NULL;
|
2013-10-24 19:10:08 +00:00
|
|
|
conn->send_proxy_ofs = 0;
|
2017-08-24 12:31:19 +00:00
|
|
|
conn->handle.fd = DEAD_FD_MAGIC;
|
2013-10-14 15:10:08 +00:00
|
|
|
conn->err_code = CO_ER_NONE;
|
|
|
|
conn->target = NULL;
|
2017-08-28 13:46:01 +00:00
|
|
|
conn->xprt_done_cb = NULL;
|
2017-10-08 09:16:46 +00:00
|
|
|
conn->destroy_cb = NULL;
|
2014-11-17 14:11:45 +00:00
|
|
|
conn->proxy_netns = NULL;
|
2015-08-04 15:25:58 +00:00
|
|
|
LIST_INIT(&conn->list);
|
2018-07-17 16:46:31 +00:00
|
|
|
LIST_INIT(&conn->send_wait_list);
|
2013-10-14 15:10:08 +00:00
|
|
|
}
|
|
|
|
|
2017-08-28 13:46:01 +00:00
|
|
|
/* sets <owner> as the connection's owner */
|
2017-10-08 09:16:46 +00:00
|
|
|
static inline void conn_set_owner(struct connection *conn, void *owner, void (*cb)(struct connection *))
|
2017-08-28 13:46:01 +00:00
|
|
|
{
|
|
|
|
conn->owner = owner;
|
2017-10-08 09:16:46 +00:00
|
|
|
conn->destroy_cb = cb;
|
2017-08-28 13:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* registers <cb> as a callback to notify for transport's readiness or failure */
|
|
|
|
static inline void conn_set_xprt_done_cb(struct connection *conn, int (*cb)(struct connection *))
|
|
|
|
{
|
|
|
|
conn->xprt_done_cb = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* unregisters the callback to notify for transport's readiness or failure */
|
|
|
|
static inline void conn_clear_xprt_done_cb(struct connection *conn)
|
|
|
|
{
|
|
|
|
conn->xprt_done_cb = NULL;
|
|
|
|
}
|
|
|
|
|
2013-10-20 20:56:45 +00:00
|
|
|
/* Tries to allocate a new connection and initialized its main fields. The
|
|
|
|
* connection is returned on success, NULL on failure. The connection must
|
2017-11-24 16:34:44 +00:00
|
|
|
* be released using pool_free() or conn_free().
|
2013-10-20 20:56:45 +00:00
|
|
|
*/
|
|
|
|
static inline struct connection *conn_new()
|
|
|
|
{
|
|
|
|
struct connection *conn;
|
|
|
|
|
2017-11-24 16:34:44 +00:00
|
|
|
conn = pool_alloc(pool_head_connection);
|
2013-10-20 20:56:45 +00:00
|
|
|
if (likely(conn != NULL))
|
|
|
|
conn_init(conn);
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
2018-03-02 09:43:58 +00:00
|
|
|
/* Releases the conn_stream's rx buf if it exists. The buffer is automatically
|
|
|
|
* replaced with a pointer to the empty buffer.
|
|
|
|
*/
|
|
|
|
static inline void cs_drop_rxbuf(struct conn_stream *cs)
|
|
|
|
{
|
|
|
|
if (b_size(&cs->rxbuf)) {
|
|
|
|
b_free(&cs->rxbuf);
|
|
|
|
offer_buffers(NULL, tasks_run_queue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 12:58:55 +00:00
|
|
|
/* Releases the conn_stream's tx buf if it exists. The buffer is automatically
|
|
|
|
* replaced with a pointer to the empty buffer.
|
|
|
|
*/
|
|
|
|
static inline void cs_drop_txbuf(struct conn_stream *cs)
|
|
|
|
{
|
|
|
|
if (b_size(&cs->txbuf)) {
|
|
|
|
b_free(&cs->txbuf);
|
|
|
|
offer_buffers(NULL, tasks_run_queue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-02 09:43:58 +00:00
|
|
|
/* Releases a conn_stream previously allocated by cs_new(), as well as any
|
|
|
|
* buffer it would still hold.
|
|
|
|
*/
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline void cs_free(struct conn_stream *cs)
|
|
|
|
{
|
2018-07-17 16:49:38 +00:00
|
|
|
if (cs->wait_list.task)
|
|
|
|
tasklet_free(cs->wait_list.task);
|
2018-03-02 09:43:58 +00:00
|
|
|
|
|
|
|
cs_drop_rxbuf(cs);
|
2018-05-23 12:58:55 +00:00
|
|
|
cs_drop_txbuf(cs);
|
2017-11-24 16:34:44 +00:00
|
|
|
pool_free(pool_head_connstream, cs);
|
2017-09-13 16:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tries to allocate a new conn_stream and initialize its main fields. If
|
|
|
|
* <conn> is NULL, then a new connection is allocated on the fly, initialized,
|
|
|
|
* and assigned to cs->conn ; this connection will then have to be released
|
2017-11-24 16:34:44 +00:00
|
|
|
* using pool_free() or conn_free(). The conn_stream is initialized and added
|
2017-09-13 16:30:23 +00:00
|
|
|
* to the mux's stream list on success, then returned. On failure, nothing is
|
|
|
|
* allocated and NULL is returned.
|
2017-10-08 13:16:00 +00:00
|
|
|
*/
|
|
|
|
static inline struct conn_stream *cs_new(struct connection *conn)
|
|
|
|
{
|
|
|
|
struct conn_stream *cs;
|
|
|
|
|
2017-11-24 16:34:44 +00:00
|
|
|
cs = pool_alloc(pool_head_connstream);
|
2017-09-13 16:30:23 +00:00
|
|
|
if (!likely(cs))
|
|
|
|
return NULL;
|
2017-10-08 13:16:00 +00:00
|
|
|
|
2018-07-17 16:49:38 +00:00
|
|
|
cs->wait_list.task = tasklet_new();
|
|
|
|
if (!likely(cs->wait_list.task)) {
|
|
|
|
cs_free(cs);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-09-13 16:30:23 +00:00
|
|
|
if (!conn) {
|
|
|
|
conn = conn_new();
|
|
|
|
if (!likely(conn)) {
|
|
|
|
cs_free(cs);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
conn_init(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
cs_init(cs, conn);
|
|
|
|
return cs;
|
2017-10-08 13:16:00 +00:00
|
|
|
}
|
|
|
|
|
2013-10-20 20:56:45 +00:00
|
|
|
/* Releases a connection previously allocated by conn_new() */
|
|
|
|
static inline void conn_free(struct connection *conn)
|
|
|
|
{
|
2017-11-24 16:34:44 +00:00
|
|
|
pool_free(pool_head_connection, conn);
|
2013-10-20 20:56:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-08 13:16:00 +00:00
|
|
|
/* Release a conn_stream, and kill the connection if it was the last one */
|
|
|
|
static inline void cs_destroy(struct conn_stream *cs)
|
|
|
|
{
|
2018-04-13 13:50:27 +00:00
|
|
|
if (cs->conn->mux)
|
|
|
|
cs->conn->mux->detach(cs);
|
|
|
|
else {
|
|
|
|
/* It's too early to have a mux, let's just destroy
|
|
|
|
* the connection
|
|
|
|
*/
|
|
|
|
struct connection *conn = cs->conn;
|
|
|
|
|
|
|
|
conn_stop_tracking(conn);
|
|
|
|
conn_full_close(conn);
|
|
|
|
if (conn->destroy_cb)
|
|
|
|
conn->destroy_cb(conn);
|
|
|
|
conn_free(conn);
|
|
|
|
}
|
2017-10-08 13:16:00 +00:00
|
|
|
cs_free(cs);
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
/* Returns the conn from a cs. If cs is NULL, returns NULL */
|
|
|
|
static inline struct connection *cs_conn(const struct conn_stream *cs)
|
|
|
|
{
|
|
|
|
return cs ? cs->conn : NULL;
|
|
|
|
}
|
2013-10-20 20:56:45 +00:00
|
|
|
|
2012-08-30 19:11:38 +00:00
|
|
|
/* Retrieves the connection's source address */
|
|
|
|
static inline void conn_get_from_addr(struct connection *conn)
|
|
|
|
{
|
|
|
|
if (conn->flags & CO_FL_ADDR_FROM_SET)
|
|
|
|
return;
|
|
|
|
|
2014-01-23 12:50:42 +00:00
|
|
|
if (!conn_ctrl_ready(conn) || !conn->ctrl->get_src)
|
2012-08-30 19:11:38 +00:00
|
|
|
return;
|
|
|
|
|
2017-08-24 12:31:19 +00:00
|
|
|
if (conn->ctrl->get_src(conn->handle.fd, (struct sockaddr *)&conn->addr.from,
|
2012-11-11 23:42:33 +00:00
|
|
|
sizeof(conn->addr.from),
|
|
|
|
obj_type(conn->target) != OBJ_TYPE_LISTENER) == -1)
|
2012-08-30 19:11:38 +00:00
|
|
|
return;
|
|
|
|
conn->flags |= CO_FL_ADDR_FROM_SET;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrieves the connection's original destination address */
|
|
|
|
static inline void conn_get_to_addr(struct connection *conn)
|
|
|
|
{
|
|
|
|
if (conn->flags & CO_FL_ADDR_TO_SET)
|
|
|
|
return;
|
|
|
|
|
2014-01-23 12:50:42 +00:00
|
|
|
if (!conn_ctrl_ready(conn) || !conn->ctrl->get_dst)
|
2012-08-30 19:11:38 +00:00
|
|
|
return;
|
|
|
|
|
2017-08-24 12:31:19 +00:00
|
|
|
if (conn->ctrl->get_dst(conn->handle.fd, (struct sockaddr *)&conn->addr.to,
|
2012-11-11 23:42:33 +00:00
|
|
|
sizeof(conn->addr.to),
|
|
|
|
obj_type(conn->target) != OBJ_TYPE_LISTENER) == -1)
|
2012-08-30 19:11:38 +00:00
|
|
|
return;
|
|
|
|
conn->flags |= CO_FL_ADDR_TO_SET;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
/* Attaches a conn_stream to a data layer and sets the relevant callbacks */
|
|
|
|
static inline void cs_attach(struct conn_stream *cs, void *data, const struct data_cb *data_cb)
|
2012-09-24 15:15:42 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
cs->data_cb = data_cb;
|
|
|
|
cs->data = data;
|
2012-10-02 18:57:19 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 06:18:20 +00:00
|
|
|
static inline struct wait_list *wl_set_waitcb(struct wait_list *wl, struct task *(*cb)(struct task *, void *, unsigned short), void *ctx)
|
|
|
|
{
|
|
|
|
if (!wl->task->process) {
|
|
|
|
wl->task->process = cb;
|
|
|
|
wl->task->context = ctx;
|
|
|
|
}
|
|
|
|
return wl;
|
|
|
|
}
|
|
|
|
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
/* Installs the connection's mux layer for upper context <ctx>.
|
|
|
|
* Returns < 0 on error.
|
|
|
|
*/
|
|
|
|
static inline int conn_install_mux(struct connection *conn, const struct mux_ops *mux, void *ctx)
|
|
|
|
{
|
|
|
|
conn->mux = mux;
|
|
|
|
conn->mux_ctx = ctx;
|
|
|
|
return mux->init ? mux->init(conn) : 0;
|
|
|
|
}
|
|
|
|
|
2012-12-03 14:35:00 +00:00
|
|
|
/* returns a human-readable error code for conn->err_code, or NULL if the code
|
|
|
|
* is unknown.
|
|
|
|
*/
|
|
|
|
static inline const char *conn_err_code_str(struct connection *c)
|
|
|
|
{
|
|
|
|
switch (c->err_code) {
|
|
|
|
case CO_ER_NONE: return "Success";
|
2014-01-24 15:06:50 +00:00
|
|
|
|
|
|
|
case CO_ER_CONF_FDLIM: return "Reached configured maxconn value";
|
|
|
|
case CO_ER_PROC_FDLIM: return "Too many sockets on the process";
|
|
|
|
case CO_ER_SYS_FDLIM: return "Too many sockets on the system";
|
|
|
|
case CO_ER_SYS_MEMLIM: return "Out of system buffers";
|
|
|
|
case CO_ER_NOPROTO: return "Protocol or address family not supported";
|
|
|
|
case CO_ER_SOCK_ERR: return "General socket error";
|
|
|
|
case CO_ER_PORT_RANGE: return "Source port range exhausted";
|
|
|
|
case CO_ER_CANT_BIND: return "Can't bind to source address";
|
|
|
|
case CO_ER_FREE_PORTS: return "Out of local source ports on the system";
|
|
|
|
case CO_ER_ADDR_INUSE: return "Local source address already in use";
|
|
|
|
|
2012-12-03 14:41:18 +00:00
|
|
|
case CO_ER_PRX_EMPTY: return "Connection closed while waiting for PROXY protocol header";
|
|
|
|
case CO_ER_PRX_ABORT: return "Connection error while waiting for PROXY protocol header";
|
2012-12-03 14:35:00 +00:00
|
|
|
case CO_ER_PRX_TIMEOUT: return "Timeout while waiting for PROXY protocol header";
|
2012-12-03 14:41:18 +00:00
|
|
|
case CO_ER_PRX_TRUNCATED: return "Truncated PROXY protocol header received";
|
|
|
|
case CO_ER_PRX_NOT_HDR: return "Received something which does not look like a PROXY protocol header";
|
|
|
|
case CO_ER_PRX_BAD_HDR: return "Received an invalid PROXY protocol header";
|
|
|
|
case CO_ER_PRX_BAD_PROTO: return "Received an unhandled protocol in the PROXY protocol header";
|
2016-06-04 14:11:10 +00:00
|
|
|
|
|
|
|
case CO_ER_CIP_EMPTY: return "Connection closed while waiting for NetScaler Client IP header";
|
|
|
|
case CO_ER_CIP_ABORT: return "Connection error while waiting for NetScaler Client IP header";
|
|
|
|
case CO_ER_CIP_TRUNCATED: return "Truncated NetScaler Client IP header received";
|
|
|
|
case CO_ER_CIP_BAD_MAGIC: return "Received an invalid NetScaler Client IP magic number";
|
|
|
|
case CO_ER_CIP_BAD_PROTO: return "Received an unhandled protocol in the NetScaler Client IP header";
|
|
|
|
|
2012-12-03 15:32:10 +00:00
|
|
|
case CO_ER_SSL_EMPTY: return "Connection closed during SSL handshake";
|
|
|
|
case CO_ER_SSL_ABORT: return "Connection error during SSL handshake";
|
2012-12-03 14:35:00 +00:00
|
|
|
case CO_ER_SSL_TIMEOUT: return "Timeout during SSL handshake";
|
2012-12-03 15:32:10 +00:00
|
|
|
case CO_ER_SSL_TOO_MANY: return "Too many SSL connections";
|
|
|
|
case CO_ER_SSL_NO_MEM: return "Out of memory when initializing an SSL connection";
|
|
|
|
case CO_ER_SSL_RENEG: return "Rejected a client-initiated SSL renegociation attempt";
|
|
|
|
case CO_ER_SSL_CA_FAIL: return "SSL client CA chain cannot be verified";
|
|
|
|
case CO_ER_SSL_CRT_FAIL: return "SSL client certificate not trusted";
|
2017-07-26 18:09:56 +00:00
|
|
|
case CO_ER_SSL_MISMATCH: return "Server presented an SSL certificate different from the configured one";
|
|
|
|
case CO_ER_SSL_MISMATCH_SNI: return "Server presented an SSL certificate different from the expected one";
|
2012-12-03 15:32:10 +00:00
|
|
|
case CO_ER_SSL_HANDSHAKE: return "SSL handshake failure";
|
2014-04-25 16:54:29 +00:00
|
|
|
case CO_ER_SSL_HANDSHAKE_HB: return "SSL handshake failure after heartbeat";
|
2014-04-25 18:02:39 +00:00
|
|
|
case CO_ER_SSL_KILLED_HB: return "Stopped a TLSv1 heartbeat attack (CVE-2014-0160)";
|
2013-12-01 19:29:58 +00:00
|
|
|
case CO_ER_SSL_NO_TARGET: return "Attempt to use SSL on an unknown target (internal error)";
|
2012-12-03 14:35:00 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-11-23 17:00:08 +00:00
|
|
|
static inline const char *conn_get_ctrl_name(const struct connection *conn)
|
|
|
|
{
|
|
|
|
if (!conn_ctrl_ready(conn))
|
|
|
|
return "NONE";
|
|
|
|
return conn->ctrl->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const char *conn_get_xprt_name(const struct connection *conn)
|
|
|
|
{
|
|
|
|
if (!conn_xprt_ready(conn))
|
|
|
|
return "NONE";
|
2016-11-24 15:58:12 +00:00
|
|
|
return conn->xprt->name;
|
2016-11-23 17:00:08 +00:00
|
|
|
}
|
|
|
|
|
MEDIUM: connection: start to introduce a mux layer between xprt and data
For HTTP/2 and QUIC, we'll need to deal with multiplexed streams inside
a connection. After quite a long brainstorming, it appears that the
connection interface to the existing streams is appropriate just like
the connection interface to the lower layers. In fact we need to have
the mux layer in the middle of the connection, between the transport
and the data layer.
A mux can exist on two directions/sides. On the inbound direction, it
instanciates new streams from incoming connections, while on the outbound
direction it muxes streams into outgoing connections. The difference is
visible on the mux->init() call : in one case, an upper context is already
known (outgoing connection), and in the other case, the upper context is
not yet known (incoming connection) and will have to be allocated by the
mux. The session doesn't have to create the new streams anymore, as this
is performed by the mux itself.
This patch introduces this and creates a pass-through mux called
"mux_pt" which is used for all new connections and which only
calls the data layer's recv,send,wake() calls. One incoming stream
is immediately created when init() is called on the inbound direction.
There should not be any visible impact.
Note that the connection's mux is purposely not set until the session
is completed so that we don't accidently run with the wrong mux. This
must not cause any issue as the xprt_done_cb function is always called
prior to using mux's recv/send functions.
2017-08-28 08:53:00 +00:00
|
|
|
static inline const char *conn_get_mux_name(const struct connection *conn)
|
|
|
|
{
|
|
|
|
if (!conn->mux)
|
|
|
|
return "NONE";
|
|
|
|
return conn->mux->name;
|
|
|
|
}
|
|
|
|
|
2017-09-13 16:30:23 +00:00
|
|
|
static inline const char *cs_get_data_name(const struct conn_stream *cs)
|
2016-11-23 17:00:08 +00:00
|
|
|
{
|
2017-09-13 16:30:23 +00:00
|
|
|
if (!cs->data_cb)
|
2016-11-23 17:00:08 +00:00
|
|
|
return "NONE";
|
2017-09-13 16:30:23 +00:00
|
|
|
return cs->data_cb->name;
|
2016-11-23 17:00:08 +00:00
|
|
|
}
|
|
|
|
|
2016-12-22 19:25:26 +00:00
|
|
|
/* registers pointer to transport layer <id> (XPRT_*) */
|
|
|
|
static inline void xprt_register(int id, struct xprt_ops *xprt)
|
|
|
|
{
|
|
|
|
if (id >= XPRT_ENTRIES)
|
|
|
|
return;
|
|
|
|
registered_xprt[id] = xprt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns pointer to transport layer <id> (XPRT_*) or NULL if not registered */
|
|
|
|
static inline struct xprt_ops *xprt_get(int id)
|
|
|
|
{
|
|
|
|
if (id >= XPRT_ENTRIES)
|
|
|
|
return NULL;
|
|
|
|
return registered_xprt[id];
|
|
|
|
}
|
2016-11-23 17:00:08 +00:00
|
|
|
|
2016-12-04 17:42:09 +00:00
|
|
|
static inline int conn_get_alpn(const struct connection *conn, const char **str, int *len)
|
|
|
|
{
|
|
|
|
if (!conn_xprt_ready(conn) || !conn->xprt->get_alpn)
|
|
|
|
return 0;
|
|
|
|
return conn->xprt->get_alpn(conn, str, len);
|
|
|
|
}
|
|
|
|
|
2017-09-21 17:40:52 +00:00
|
|
|
/* registers alpn mux list <list>. Modifies the list element! */
|
|
|
|
static inline void alpn_register_mux(struct alpn_mux_list *list)
|
|
|
|
{
|
|
|
|
LIST_ADDQ(&alpn_mux_list.list, &list->list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* unregisters alpn mux list <list> */
|
|
|
|
static inline void alpn_unregister_mux(struct alpn_mux_list *list)
|
|
|
|
{
|
|
|
|
LIST_DEL(&list->list);
|
|
|
|
LIST_INIT(&list->list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns the first mux in the list matching the exact same token and
|
|
|
|
* compatible with the proxy's mode (http or tcp). Mode "health" has to be
|
|
|
|
* considered as TCP here. Ie passing "px->mode == PR_MODE_HTTP" is fine. Will
|
|
|
|
* fall back to the first compatible mux with empty ALPN name. May return null
|
|
|
|
* if the code improperly registered the default mux to use as a fallback.
|
|
|
|
*/
|
|
|
|
static inline const struct mux_ops *alpn_get_mux(const struct ist token, int http_mode)
|
|
|
|
{
|
|
|
|
struct alpn_mux_list *item;
|
|
|
|
const struct mux_ops *fallback = NULL;
|
|
|
|
|
|
|
|
http_mode = 1 << !!http_mode;
|
|
|
|
|
|
|
|
list_for_each_entry(item, &alpn_mux_list.list, list) {
|
|
|
|
if (!(item->mode & http_mode))
|
|
|
|
continue;
|
|
|
|
if (isteq(token, item->token))
|
|
|
|
return item->mux;
|
|
|
|
if (!istlen(item->token))
|
|
|
|
fallback = item->mux;
|
|
|
|
}
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* finds the best mux for incoming connection <conn> and mode <http_mode> for
|
|
|
|
* the proxy. Null cannot be returned unless there's a serious bug somewhere
|
|
|
|
* else (no fallback mux registered).
|
|
|
|
*/
|
|
|
|
static inline const struct mux_ops *conn_find_best_mux(struct connection *conn, int http_mode)
|
|
|
|
{
|
|
|
|
const char *alpn_str;
|
|
|
|
int alpn_len;
|
|
|
|
|
|
|
|
if (!conn_get_alpn(conn, &alpn_str, &alpn_len))
|
|
|
|
alpn_len = 0;
|
|
|
|
|
|
|
|
return alpn_get_mux(ist2(alpn_str, alpn_len), http_mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* finds the best mux for incoming connection <conn>, a proxy in and http mode
|
2017-09-15 04:59:55 +00:00
|
|
|
* <mode>, and installs it on the connection for upper context <ctx>. Returns
|
|
|
|
* < 0 on error.
|
2017-09-21 17:40:52 +00:00
|
|
|
*/
|
2017-09-15 04:59:55 +00:00
|
|
|
static inline int conn_install_best_mux(struct connection *conn, int mode, void *ctx)
|
2017-09-21 17:40:52 +00:00
|
|
|
{
|
|
|
|
const struct mux_ops *mux_ops;
|
|
|
|
|
|
|
|
mux_ops = conn_find_best_mux(conn, mode);
|
|
|
|
if (!mux_ops)
|
|
|
|
return -1;
|
2017-09-15 04:59:55 +00:00
|
|
|
return conn_install_mux(conn, mux_ops, ctx);
|
2017-09-21 17:40:52 +00:00
|
|
|
}
|
|
|
|
|
2012-07-06 12:13:49 +00:00
|
|
|
#endif /* _PROTO_CONNECTION_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|