hw/rtc/twl92230: Silence warnings about missing fallthrough statements
[qemu/ar7.git] / include / io / channel-socket.h
blobe747e635147ed62015a9a2b5337c5a3a21c41880
1 /*
2 * QEMU I/O channels sockets driver
4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef QIO_CHANNEL_SOCKET_H
22 #define QIO_CHANNEL_SOCKET_H
24 #include "io/channel.h"
25 #include "io/task.h"
26 #include "qemu/sockets.h"
27 #include "qom/object.h"
29 #define TYPE_QIO_CHANNEL_SOCKET "qio-channel-socket"
30 OBJECT_DECLARE_SIMPLE_TYPE(QIOChannelSocket, QIO_CHANNEL_SOCKET)
33 /**
34 * QIOChannelSocket:
36 * The QIOChannelSocket class provides a channel implementation
37 * that can transport data over a UNIX socket or TCP socket.
38 * Beyond the core channel API, it also provides functionality
39 * for accepting client connections, tuning some socket
40 * parameters and getting socket address strings.
43 struct QIOChannelSocket {
44 QIOChannel parent;
45 int fd;
46 struct sockaddr_storage localAddr;
47 socklen_t localAddrLen;
48 struct sockaddr_storage remoteAddr;
49 socklen_t remoteAddrLen;
53 /**
54 * qio_channel_socket_new:
56 * Create a channel for performing I/O on a socket
57 * connection, that is initially closed. After
58 * creating the socket, it must be setup as a client
59 * connection or server.
61 * Returns: the socket channel object
63 QIOChannelSocket *
64 qio_channel_socket_new(void);
66 /**
67 * qio_channel_socket_new_fd:
68 * @fd: the socket file descriptor
69 * @errp: pointer to a NULL-initialized error object
71 * Create a channel for performing I/O on the socket
72 * connection represented by the file descriptor @fd.
74 * Returns: the socket channel object, or NULL on error
76 QIOChannelSocket *
77 qio_channel_socket_new_fd(int fd,
78 Error **errp);
81 /**
82 * qio_channel_socket_connect_sync:
83 * @ioc: the socket channel object
84 * @addr: the address to connect to
85 * @errp: pointer to a NULL-initialized error object
87 * Attempt to connect to the address @addr. This method
88 * will run in the foreground so the caller will not regain
89 * execution control until the connection is established or
90 * an error occurs.
92 int qio_channel_socket_connect_sync(QIOChannelSocket *ioc,
93 SocketAddress *addr,
94 Error **errp);
96 /**
97 * qio_channel_socket_connect_async:
98 * @ioc: the socket channel object
99 * @addr: the address to connect to
100 * @callback: the function to invoke on completion
101 * @opaque: user data to pass to @callback
102 * @destroy: the function to free @opaque
103 * @context: the context to run the async task. If %NULL, the default
104 * context will be used.
106 * Attempt to connect to the address @addr. This method
107 * will run in the background so the caller will regain
108 * execution control immediately. The function @callback
109 * will be invoked on completion or failure. The @addr
110 * parameter will be copied, so may be freed as soon
111 * as this function returns without waiting for completion.
113 void qio_channel_socket_connect_async(QIOChannelSocket *ioc,
114 SocketAddress *addr,
115 QIOTaskFunc callback,
116 gpointer opaque,
117 GDestroyNotify destroy,
118 GMainContext *context);
122 * qio_channel_socket_listen_sync:
123 * @ioc: the socket channel object
124 * @addr: the address to listen to
125 * @num: the expected ammount of connections
126 * @errp: pointer to a NULL-initialized error object
128 * Attempt to listen to the address @addr. This method
129 * will run in the foreground so the caller will not regain
130 * execution control until the connection is established or
131 * an error occurs.
133 int qio_channel_socket_listen_sync(QIOChannelSocket *ioc,
134 SocketAddress *addr,
135 int num,
136 Error **errp);
139 * qio_channel_socket_listen_async:
140 * @ioc: the socket channel object
141 * @addr: the address to listen to
142 * @num: the expected ammount of connections
143 * @callback: the function to invoke on completion
144 * @opaque: user data to pass to @callback
145 * @destroy: the function to free @opaque
146 * @context: the context to run the async task. If %NULL, the default
147 * context will be used.
149 * Attempt to listen to the address @addr. This method
150 * will run in the background so the caller will regain
151 * execution control immediately. The function @callback
152 * will be invoked on completion or failure. The @addr
153 * parameter will be copied, so may be freed as soon
154 * as this function returns without waiting for completion.
156 void qio_channel_socket_listen_async(QIOChannelSocket *ioc,
157 SocketAddress *addr,
158 int num,
159 QIOTaskFunc callback,
160 gpointer opaque,
161 GDestroyNotify destroy,
162 GMainContext *context);
166 * qio_channel_socket_dgram_sync:
167 * @ioc: the socket channel object
168 * @localAddr: the address to local bind address
169 * @remoteAddr: the address to remote peer address
170 * @errp: pointer to a NULL-initialized error object
172 * Attempt to initialize a datagram socket bound to
173 * @localAddr and communicating with peer @remoteAddr.
174 * This method will run in the foreground so the caller
175 * will not regain execution control until the socket
176 * is established or an error occurs.
178 int qio_channel_socket_dgram_sync(QIOChannelSocket *ioc,
179 SocketAddress *localAddr,
180 SocketAddress *remoteAddr,
181 Error **errp);
184 * qio_channel_socket_dgram_async:
185 * @ioc: the socket channel object
186 * @localAddr: the address to local bind address
187 * @remoteAddr: the address to remote peer address
188 * @callback: the function to invoke on completion
189 * @opaque: user data to pass to @callback
190 * @destroy: the function to free @opaque
191 * @context: the context to run the async task. If %NULL, the default
192 * context will be used.
194 * Attempt to initialize a datagram socket bound to
195 * @localAddr and communicating with peer @remoteAddr.
196 * This method will run in the background so the caller
197 * will regain execution control immediately. The function
198 * @callback will be invoked on completion or failure.
199 * The @localAddr and @remoteAddr parameters will be copied,
200 * so may be freed as soon as this function returns without
201 * waiting for completion.
203 void qio_channel_socket_dgram_async(QIOChannelSocket *ioc,
204 SocketAddress *localAddr,
205 SocketAddress *remoteAddr,
206 QIOTaskFunc callback,
207 gpointer opaque,
208 GDestroyNotify destroy,
209 GMainContext *context);
213 * qio_channel_socket_get_local_address:
214 * @ioc: the socket channel object
215 * @errp: pointer to a NULL-initialized error object
217 * Get the string representation of the local socket
218 * address. A pointer to the allocated address information
219 * struct will be returned, which the caller is required to
220 * release with a call qapi_free_SocketAddress() when no
221 * longer required.
223 * Returns: 0 on success, -1 on error
225 SocketAddress *
226 qio_channel_socket_get_local_address(QIOChannelSocket *ioc,
227 Error **errp);
230 * qio_channel_socket_get_remote_address:
231 * @ioc: the socket channel object
232 * @errp: pointer to a NULL-initialized error object
234 * Get the string representation of the local socket
235 * address. A pointer to the allocated address information
236 * struct will be returned, which the caller is required to
237 * release with a call qapi_free_SocketAddress() when no
238 * longer required.
240 * Returns: the socket address struct, or NULL on error
242 SocketAddress *
243 qio_channel_socket_get_remote_address(QIOChannelSocket *ioc,
244 Error **errp);
248 * qio_channel_socket_accept:
249 * @ioc: the socket channel object
250 * @errp: pointer to a NULL-initialized error object
252 * If the socket represents a server, then this accepts
253 * a new client connection. The returned channel will
254 * represent the connected client socket.
256 * Returns: the new client channel, or NULL on error
258 QIOChannelSocket *
259 qio_channel_socket_accept(QIOChannelSocket *ioc,
260 Error **errp);
263 #endif /* QIO_CHANNEL_SOCKET_H */