2015-02-27 17:19:33 +01:00
|
|
|
/*
|
|
|
|
* QEMU I/O channels sockets driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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; either
|
2020-10-14 15:40:33 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-06-29 13:47:03 +02:00
|
|
|
#ifndef QIO_CHANNEL_SOCKET_H
|
|
|
|
#define QIO_CHANNEL_SOCKET_H
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
#include "io/channel.h"
|
|
|
|
#include "io/task.h"
|
|
|
|
#include "qemu/sockets.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
#define TYPE_QIO_CHANNEL_SOCKET "qio-channel-socket"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(QIOChannelSocket, QIO_CHANNEL_SOCKET)
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* QIOChannelSocket:
|
|
|
|
*
|
|
|
|
* The QIOChannelSocket class provides a channel implementation
|
|
|
|
* that can transport data over a UNIX socket or TCP socket.
|
|
|
|
* Beyond the core channel API, it also provides functionality
|
|
|
|
* for accepting client connections, tuning some socket
|
|
|
|
* parameters and getting socket address strings.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct QIOChannelSocket {
|
|
|
|
QIOChannel parent;
|
|
|
|
int fd;
|
|
|
|
struct sockaddr_storage localAddr;
|
|
|
|
socklen_t localAddrLen;
|
|
|
|
struct sockaddr_storage remoteAddr;
|
|
|
|
socklen_t remoteAddrLen;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_new:
|
|
|
|
*
|
|
|
|
* Create a channel for performing I/O on a socket
|
|
|
|
* connection, that is initially closed. After
|
|
|
|
* creating the socket, it must be setup as a client
|
|
|
|
* connection or server.
|
|
|
|
*
|
|
|
|
* Returns: the socket channel object
|
|
|
|
*/
|
|
|
|
QIOChannelSocket *
|
|
|
|
qio_channel_socket_new(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_new_fd:
|
|
|
|
* @fd: the socket file descriptor
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Create a channel for performing I/O on the socket
|
|
|
|
* connection represented by the file descriptor @fd.
|
|
|
|
*
|
|
|
|
* Returns: the socket channel object, or NULL on error
|
|
|
|
*/
|
|
|
|
QIOChannelSocket *
|
|
|
|
qio_channel_socket_new_fd(int fd,
|
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_connect_sync:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @addr: the address to connect to
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to connect to the address @addr. This method
|
|
|
|
* will run in the foreground so the caller will not regain
|
|
|
|
* execution control until the connection is established or
|
|
|
|
* an error occurs.
|
|
|
|
*/
|
|
|
|
int qio_channel_socket_connect_sync(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *addr,
|
2015-02-27 17:19:33 +01:00
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_connect_async:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @addr: the address to connect to
|
|
|
|
* @callback: the function to invoke on completion
|
|
|
|
* @opaque: user data to pass to @callback
|
|
|
|
* @destroy: the function to free @opaque
|
2018-03-05 07:43:23 +01:00
|
|
|
* @context: the context to run the async task. If %NULL, the default
|
|
|
|
* context will be used.
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to connect to the address @addr. This method
|
|
|
|
* will run in the background so the caller will regain
|
|
|
|
* execution control immediately. The function @callback
|
2016-02-03 14:47:36 +01:00
|
|
|
* will be invoked on completion or failure. The @addr
|
|
|
|
* parameter will be copied, so may be freed as soon
|
|
|
|
* as this function returns without waiting for completion.
|
2015-02-27 17:19:33 +01:00
|
|
|
*/
|
|
|
|
void qio_channel_socket_connect_async(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *addr,
|
2015-02-27 17:19:33 +01:00
|
|
|
QIOTaskFunc callback,
|
|
|
|
gpointer opaque,
|
2018-03-05 07:43:23 +01:00
|
|
|
GDestroyNotify destroy,
|
|
|
|
GMainContext *context);
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_listen_sync:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @addr: the address to listen to
|
2019-08-19 15:29:58 +02:00
|
|
|
* @num: the expected ammount of connections
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to listen to the address @addr. This method
|
|
|
|
* will run in the foreground so the caller will not regain
|
|
|
|
* execution control until the connection is established or
|
|
|
|
* an error occurs.
|
|
|
|
*/
|
|
|
|
int qio_channel_socket_listen_sync(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *addr,
|
2019-08-19 15:29:58 +02:00
|
|
|
int num,
|
2015-02-27 17:19:33 +01:00
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_listen_async:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @addr: the address to listen to
|
2019-08-20 09:40:39 +02:00
|
|
|
* @num: the expected ammount of connections
|
2015-02-27 17:19:33 +01:00
|
|
|
* @callback: the function to invoke on completion
|
|
|
|
* @opaque: user data to pass to @callback
|
|
|
|
* @destroy: the function to free @opaque
|
2018-03-05 07:43:23 +01:00
|
|
|
* @context: the context to run the async task. If %NULL, the default
|
|
|
|
* context will be used.
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to listen to the address @addr. This method
|
|
|
|
* will run in the background so the caller will regain
|
|
|
|
* execution control immediately. The function @callback
|
2016-02-03 14:47:36 +01:00
|
|
|
* will be invoked on completion or failure. The @addr
|
|
|
|
* parameter will be copied, so may be freed as soon
|
|
|
|
* as this function returns without waiting for completion.
|
2015-02-27 17:19:33 +01:00
|
|
|
*/
|
|
|
|
void qio_channel_socket_listen_async(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *addr,
|
2019-08-20 09:40:39 +02:00
|
|
|
int num,
|
2015-02-27 17:19:33 +01:00
|
|
|
QIOTaskFunc callback,
|
|
|
|
gpointer opaque,
|
2018-03-05 07:43:23 +01:00
|
|
|
GDestroyNotify destroy,
|
|
|
|
GMainContext *context);
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_dgram_sync:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @localAddr: the address to local bind address
|
|
|
|
* @remoteAddr: the address to remote peer address
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to initialize a datagram socket bound to
|
|
|
|
* @localAddr and communicating with peer @remoteAddr.
|
|
|
|
* This method will run in the foreground so the caller
|
|
|
|
* will not regain execution control until the socket
|
|
|
|
* is established or an error occurs.
|
|
|
|
*/
|
|
|
|
int qio_channel_socket_dgram_sync(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *localAddr,
|
|
|
|
SocketAddress *remoteAddr,
|
2015-02-27 17:19:33 +01:00
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_dgram_async:
|
|
|
|
* @ioc: the socket channel object
|
|
|
|
* @localAddr: the address to local bind address
|
|
|
|
* @remoteAddr: the address to remote peer address
|
|
|
|
* @callback: the function to invoke on completion
|
|
|
|
* @opaque: user data to pass to @callback
|
|
|
|
* @destroy: the function to free @opaque
|
2018-03-05 07:43:23 +01:00
|
|
|
* @context: the context to run the async task. If %NULL, the default
|
|
|
|
* context will be used.
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Attempt to initialize a datagram socket bound to
|
|
|
|
* @localAddr and communicating with peer @remoteAddr.
|
|
|
|
* This method will run in the background so the caller
|
|
|
|
* will regain execution control immediately. The function
|
|
|
|
* @callback will be invoked on completion or failure.
|
2016-02-03 14:47:36 +01:00
|
|
|
* The @localAddr and @remoteAddr parameters will be copied,
|
|
|
|
* so may be freed as soon as this function returns without
|
|
|
|
* waiting for completion.
|
2015-02-27 17:19:33 +01:00
|
|
|
*/
|
|
|
|
void qio_channel_socket_dgram_async(QIOChannelSocket *ioc,
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *localAddr,
|
|
|
|
SocketAddress *remoteAddr,
|
2015-02-27 17:19:33 +01:00
|
|
|
QIOTaskFunc callback,
|
|
|
|
gpointer opaque,
|
2018-03-05 07:43:23 +01:00
|
|
|
GDestroyNotify destroy,
|
|
|
|
GMainContext *context);
|
2015-02-27 17:19:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_get_local_address:
|
|
|
|
* @ioc: the socket channel object
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Get the string representation of the local socket
|
|
|
|
* address. A pointer to the allocated address information
|
|
|
|
* struct will be returned, which the caller is required to
|
2017-04-26 09:36:41 +02:00
|
|
|
* release with a call qapi_free_SocketAddress() when no
|
2015-02-27 17:19:33 +01:00
|
|
|
* longer required.
|
|
|
|
*
|
|
|
|
* Returns: 0 on success, -1 on error
|
|
|
|
*/
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *
|
2015-02-27 17:19:33 +01:00
|
|
|
qio_channel_socket_get_local_address(QIOChannelSocket *ioc,
|
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_get_remote_address:
|
|
|
|
* @ioc: the socket channel object
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* Get the string representation of the local socket
|
|
|
|
* address. A pointer to the allocated address information
|
|
|
|
* struct will be returned, which the caller is required to
|
2017-04-26 09:36:41 +02:00
|
|
|
* release with a call qapi_free_SocketAddress() when no
|
2015-02-27 17:19:33 +01:00
|
|
|
* longer required.
|
|
|
|
*
|
|
|
|
* Returns: the socket address struct, or NULL on error
|
|
|
|
*/
|
2017-04-26 09:36:41 +02:00
|
|
|
SocketAddress *
|
2015-02-27 17:19:33 +01:00
|
|
|
qio_channel_socket_get_remote_address(QIOChannelSocket *ioc,
|
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qio_channel_socket_accept:
|
|
|
|
* @ioc: the socket channel object
|
2016-01-13 13:22:33 +01:00
|
|
|
* @errp: pointer to a NULL-initialized error object
|
2015-02-27 17:19:33 +01:00
|
|
|
*
|
|
|
|
* If the socket represents a server, then this accepts
|
|
|
|
* a new client connection. The returned channel will
|
|
|
|
* represent the connected client socket.
|
|
|
|
*
|
|
|
|
* Returns: the new client channel, or NULL on error
|
|
|
|
*/
|
|
|
|
QIOChannelSocket *
|
|
|
|
qio_channel_socket_accept(QIOChannelSocket *ioc,
|
|
|
|
Error **errp);
|
|
|
|
|
|
|
|
|
2016-06-29 13:47:03 +02:00
|
|
|
#endif /* QIO_CHANNEL_SOCKET_H */
|