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 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 #include "qemu/osdep.h"
22 #include "qapi/error.h"
23 #include "io/channel-socket.h"
24 #include "io/channel-watch.h"
26 #include "qapi/clone-visitor.h"
28 #define SOCKET_MAX_FDS 16
31 qio_channel_socket_get_local_address(QIOChannelSocket *ioc,
34 return socket_sockaddr_to_address(&ioc->localAddr,
40 qio_channel_socket_get_remote_address(QIOChannelSocket *ioc,
43 return socket_sockaddr_to_address(&ioc->remoteAddr,
49 qio_channel_socket_new(void)
51 QIOChannelSocket *sioc;
54 sioc = QIO_CHANNEL_SOCKET(object_new(TYPE_QIO_CHANNEL_SOCKET));
57 ioc = QIO_CHANNEL(sioc);
58 qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN);
61 ioc->event = CreateEvent(NULL, FALSE, FALSE, NULL);
64 trace_qio_channel_socket_new(sioc);
71 qio_channel_socket_set_fd(QIOChannelSocket *sioc,
76 error_setg(errp, "Socket is already open");
81 sioc->remoteAddrLen = sizeof(sioc->remoteAddr);
82 sioc->localAddrLen = sizeof(sioc->localAddr);
85 if (getpeername(fd, (struct sockaddr *)&sioc->remoteAddr,
86 &sioc->remoteAddrLen) < 0) {
87 if (errno == ENOTCONN) {
88 memset(&sioc->remoteAddr, 0, sizeof(sioc->remoteAddr));
89 sioc->remoteAddrLen = sizeof(sioc->remoteAddr);
91 error_setg_errno(errp, errno,
92 "Unable to query remote socket address");
97 if (getsockname(fd, (struct sockaddr *)&sioc->localAddr,
98 &sioc->localAddrLen) < 0) {
99 error_setg_errno(errp, errno,
100 "Unable to query local socket address");
105 if (sioc->localAddr.ss_family == AF_UNIX) {
106 QIOChannel *ioc = QIO_CHANNEL(sioc);
107 qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_FD_PASS);
114 sioc->fd = -1; /* Let the caller close FD on failure */
119 qio_channel_socket_new_fd(int fd,
122 QIOChannelSocket *ioc;
124 ioc = qio_channel_socket_new();
125 if (qio_channel_socket_set_fd(ioc, fd, errp) < 0) {
126 object_unref(OBJECT(ioc));
130 trace_qio_channel_socket_new_fd(ioc, fd);
136 int qio_channel_socket_connect_sync(QIOChannelSocket *ioc,
142 trace_qio_channel_socket_connect_sync(ioc, addr);
143 fd = socket_connect(addr, errp);
145 trace_qio_channel_socket_connect_fail(ioc);
149 trace_qio_channel_socket_connect_complete(ioc, fd);
150 if (qio_channel_socket_set_fd(ioc, fd, errp) < 0) {
159 static void qio_channel_socket_connect_worker(QIOTask *task,
162 QIOChannelSocket *ioc = QIO_CHANNEL_SOCKET(qio_task_get_source(task));
163 SocketAddress *addr = opaque;
166 qio_channel_socket_connect_sync(ioc, addr, &err);
168 qio_task_set_error(task, err);
172 void qio_channel_socket_connect_async(QIOChannelSocket *ioc,
174 QIOTaskFunc callback,
176 GDestroyNotify destroy)
178 QIOTask *task = qio_task_new(
179 OBJECT(ioc), callback, opaque, destroy);
180 SocketAddress *addrCopy;
182 addrCopy = QAPI_CLONE(SocketAddress, addr);
184 /* socket_connect() does a non-blocking connect(), but it
185 * still blocks in DNS lookups, so we must use a thread */
186 trace_qio_channel_socket_connect_async(ioc, addr);
187 qio_task_run_in_thread(task,
188 qio_channel_socket_connect_worker,
190 (GDestroyNotify)qapi_free_SocketAddress);
194 int qio_channel_socket_listen_sync(QIOChannelSocket *ioc,
200 trace_qio_channel_socket_listen_sync(ioc, addr);
201 fd = socket_listen(addr, errp);
203 trace_qio_channel_socket_listen_fail(ioc);
207 trace_qio_channel_socket_listen_complete(ioc, fd);
208 if (qio_channel_socket_set_fd(ioc, fd, errp) < 0) {
212 qio_channel_set_feature(QIO_CHANNEL(ioc), QIO_CHANNEL_FEATURE_LISTEN);
218 static void qio_channel_socket_listen_worker(QIOTask *task,
221 QIOChannelSocket *ioc = QIO_CHANNEL_SOCKET(qio_task_get_source(task));
222 SocketAddress *addr = opaque;
225 qio_channel_socket_listen_sync(ioc, addr, &err);
227 qio_task_set_error(task, err);
231 void qio_channel_socket_listen_async(QIOChannelSocket *ioc,
233 QIOTaskFunc callback,
235 GDestroyNotify destroy)
237 QIOTask *task = qio_task_new(
238 OBJECT(ioc), callback, opaque, destroy);
239 SocketAddress *addrCopy;
241 addrCopy = QAPI_CLONE(SocketAddress, addr);
243 /* socket_listen() blocks in DNS lookups, so we must use a thread */
244 trace_qio_channel_socket_listen_async(ioc, addr);
245 qio_task_run_in_thread(task,
246 qio_channel_socket_listen_worker,
248 (GDestroyNotify)qapi_free_SocketAddress);
252 int qio_channel_socket_dgram_sync(QIOChannelSocket *ioc,
253 SocketAddress *localAddr,
254 SocketAddress *remoteAddr,
259 trace_qio_channel_socket_dgram_sync(ioc, localAddr, remoteAddr);
260 fd = socket_dgram(remoteAddr, localAddr, errp);
262 trace_qio_channel_socket_dgram_fail(ioc);
266 trace_qio_channel_socket_dgram_complete(ioc, fd);
267 if (qio_channel_socket_set_fd(ioc, fd, errp) < 0) {
276 struct QIOChannelSocketDGramWorkerData {
277 SocketAddress *localAddr;
278 SocketAddress *remoteAddr;
282 static void qio_channel_socket_dgram_worker_free(gpointer opaque)
284 struct QIOChannelSocketDGramWorkerData *data = opaque;
285 qapi_free_SocketAddress(data->localAddr);
286 qapi_free_SocketAddress(data->remoteAddr);
290 static void qio_channel_socket_dgram_worker(QIOTask *task,
293 QIOChannelSocket *ioc = QIO_CHANNEL_SOCKET(qio_task_get_source(task));
294 struct QIOChannelSocketDGramWorkerData *data = opaque;
297 /* socket_dgram() blocks in DNS lookups, so we must use a thread */
298 qio_channel_socket_dgram_sync(ioc, data->localAddr,
299 data->remoteAddr, &err);
301 qio_task_set_error(task, err);
305 void qio_channel_socket_dgram_async(QIOChannelSocket *ioc,
306 SocketAddress *localAddr,
307 SocketAddress *remoteAddr,
308 QIOTaskFunc callback,
310 GDestroyNotify destroy)
312 QIOTask *task = qio_task_new(
313 OBJECT(ioc), callback, opaque, destroy);
314 struct QIOChannelSocketDGramWorkerData *data = g_new0(
315 struct QIOChannelSocketDGramWorkerData, 1);
317 data->localAddr = QAPI_CLONE(SocketAddress, localAddr);
318 data->remoteAddr = QAPI_CLONE(SocketAddress, remoteAddr);
320 trace_qio_channel_socket_dgram_async(ioc, localAddr, remoteAddr);
321 qio_task_run_in_thread(task,
322 qio_channel_socket_dgram_worker,
324 qio_channel_socket_dgram_worker_free);
329 qio_channel_socket_accept(QIOChannelSocket *ioc,
332 QIOChannelSocket *cioc;
334 cioc = qio_channel_socket_new();
335 cioc->remoteAddrLen = sizeof(ioc->remoteAddr);
336 cioc->localAddrLen = sizeof(ioc->localAddr);
339 trace_qio_channel_socket_accept(ioc);
340 cioc->fd = qemu_accept(ioc->fd, (struct sockaddr *)&cioc->remoteAddr,
341 &cioc->remoteAddrLen);
343 if (errno == EINTR) {
346 error_setg_errno(errp, errno, "Unable to accept connection");
347 trace_qio_channel_socket_accept_fail(ioc);
351 if (getsockname(cioc->fd, (struct sockaddr *)&cioc->localAddr,
352 &cioc->localAddrLen) < 0) {
353 error_setg_errno(errp, errno,
354 "Unable to query local socket address");
359 if (cioc->localAddr.ss_family == AF_UNIX) {
360 QIOChannel *ioc_local = QIO_CHANNEL(cioc);
361 qio_channel_set_feature(ioc_local, QIO_CHANNEL_FEATURE_FD_PASS);
365 trace_qio_channel_socket_accept_complete(ioc, cioc, cioc->fd);
369 object_unref(OBJECT(cioc));
373 static void qio_channel_socket_init(Object *obj)
375 QIOChannelSocket *ioc = QIO_CHANNEL_SOCKET(obj);
379 static void qio_channel_socket_finalize(Object *obj)
381 QIOChannelSocket *ioc = QIO_CHANNEL_SOCKET(obj);
384 QIOChannel *ioc_local = QIO_CHANNEL(ioc);
385 if (qio_channel_has_feature(ioc_local, QIO_CHANNEL_FEATURE_LISTEN)) {
388 socket_listen_cleanup(ioc->fd, &err);
390 error_report_err(err);
395 WSAEventSelect(ioc->fd, NULL, 0);
397 closesocket(ioc->fd);
404 static void qio_channel_socket_copy_fds(struct msghdr *msg,
405 int **fds, size_t *nfds)
407 struct cmsghdr *cmsg;
412 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
416 if (cmsg->cmsg_len < CMSG_LEN(sizeof(int)) ||
417 cmsg->cmsg_level != SOL_SOCKET ||
418 cmsg->cmsg_type != SCM_RIGHTS) {
422 fd_size = cmsg->cmsg_len - CMSG_LEN(0);
428 gotfds = fd_size / sizeof(int);
429 *fds = g_renew(int, *fds, *nfds + gotfds);
430 memcpy(*fds + *nfds, CMSG_DATA(cmsg), fd_size);
432 for (i = 0; i < gotfds; i++) {
433 int fd = (*fds)[*nfds + i];
438 /* O_NONBLOCK is preserved across SCM_RIGHTS so reset it */
441 #ifndef MSG_CMSG_CLOEXEC
442 qemu_set_cloexec(fd);
450 static ssize_t qio_channel_socket_readv(QIOChannel *ioc,
451 const struct iovec *iov,
457 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
459 struct msghdr msg = { NULL, };
460 char control[CMSG_SPACE(sizeof(int) * SOCKET_MAX_FDS)];
463 memset(control, 0, CMSG_SPACE(sizeof(int) * SOCKET_MAX_FDS));
465 #ifdef MSG_CMSG_CLOEXEC
466 sflags |= MSG_CMSG_CLOEXEC;
469 msg.msg_iov = (struct iovec *)iov;
470 msg.msg_iovlen = niov;
472 msg.msg_control = control;
473 msg.msg_controllen = sizeof(control);
477 ret = recvmsg(sioc->fd, &msg, sflags);
479 if (errno == EAGAIN) {
480 return QIO_CHANNEL_ERR_BLOCK;
482 if (errno == EINTR) {
486 error_setg_errno(errp, errno,
487 "Unable to read from socket");
492 qio_channel_socket_copy_fds(&msg, fds, nfds);
498 static ssize_t qio_channel_socket_writev(QIOChannel *ioc,
499 const struct iovec *iov,
505 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
507 struct msghdr msg = { NULL, };
508 char control[CMSG_SPACE(sizeof(int) * SOCKET_MAX_FDS)];
509 size_t fdsize = sizeof(int) * nfds;
510 struct cmsghdr *cmsg;
512 memset(control, 0, CMSG_SPACE(sizeof(int) * SOCKET_MAX_FDS));
514 msg.msg_iov = (struct iovec *)iov;
515 msg.msg_iovlen = niov;
518 if (nfds > SOCKET_MAX_FDS) {
519 error_setg_errno(errp, EINVAL,
520 "Only %d FDs can be sent, got %zu",
521 SOCKET_MAX_FDS, nfds);
525 msg.msg_control = control;
526 msg.msg_controllen = CMSG_SPACE(sizeof(int) * nfds);
528 cmsg = CMSG_FIRSTHDR(&msg);
529 cmsg->cmsg_len = CMSG_LEN(fdsize);
530 cmsg->cmsg_level = SOL_SOCKET;
531 cmsg->cmsg_type = SCM_RIGHTS;
532 memcpy(CMSG_DATA(cmsg), fds, fdsize);
536 ret = sendmsg(sioc->fd, &msg, 0);
538 if (errno == EAGAIN) {
539 return QIO_CHANNEL_ERR_BLOCK;
541 if (errno == EINTR) {
544 error_setg_errno(errp, errno,
545 "Unable to write to socket");
551 static ssize_t qio_channel_socket_readv(QIOChannel *ioc,
552 const struct iovec *iov,
558 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
562 for (i = 0; i < niov; i++) {
570 if (errno == EAGAIN) {
574 return QIO_CHANNEL_ERR_BLOCK;
576 } else if (errno == EINTR) {
579 error_setg_errno(errp, errno,
580 "Unable to read from socket");
585 if (ret < iov[i].iov_len) {
593 static ssize_t qio_channel_socket_writev(QIOChannel *ioc,
594 const struct iovec *iov,
600 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
604 for (i = 0; i < niov; i++) {
612 if (errno == EAGAIN) {
616 return QIO_CHANNEL_ERR_BLOCK;
618 } else if (errno == EINTR) {
621 error_setg_errno(errp, errno,
622 "Unable to write to socket");
627 if (ret < iov[i].iov_len) {
637 qio_channel_socket_set_blocking(QIOChannel *ioc,
641 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
644 qemu_set_block(sioc->fd);
646 qemu_set_nonblock(sioc->fd);
653 qio_channel_socket_set_delay(QIOChannel *ioc,
656 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
657 int v = enabled ? 0 : 1;
659 qemu_setsockopt(sioc->fd,
660 IPPROTO_TCP, TCP_NODELAY,
666 qio_channel_socket_set_cork(QIOChannel *ioc,
669 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
670 int v = enabled ? 1 : 0;
672 socket_set_cork(sioc->fd, v);
677 qio_channel_socket_close(QIOChannel *ioc,
680 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
682 if (sioc->fd != -1) {
684 WSAEventSelect(sioc->fd, NULL, 0);
686 if (closesocket(sioc->fd) < 0) {
688 error_setg_errno(errp, errno,
689 "Unable to close socket");
698 qio_channel_socket_shutdown(QIOChannel *ioc,
699 QIOChannelShutdown how,
702 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
706 case QIO_CHANNEL_SHUTDOWN_READ:
709 case QIO_CHANNEL_SHUTDOWN_WRITE:
712 case QIO_CHANNEL_SHUTDOWN_BOTH:
718 if (shutdown(sioc->fd, sockhow) < 0) {
719 error_setg_errno(errp, errno,
720 "Unable to shutdown socket");
726 static void qio_channel_socket_set_aio_fd_handler(QIOChannel *ioc,
732 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
733 aio_set_fd_handler(ctx, sioc->fd, false, io_read, io_write, NULL, opaque);
736 static GSource *qio_channel_socket_create_watch(QIOChannel *ioc,
737 GIOCondition condition)
739 QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
740 return qio_channel_create_socket_watch(ioc,
745 static void qio_channel_socket_class_init(ObjectClass *klass,
746 void *class_data G_GNUC_UNUSED)
748 QIOChannelClass *ioc_klass = QIO_CHANNEL_CLASS(klass);
750 ioc_klass->io_writev = qio_channel_socket_writev;
751 ioc_klass->io_readv = qio_channel_socket_readv;
752 ioc_klass->io_set_blocking = qio_channel_socket_set_blocking;
753 ioc_klass->io_close = qio_channel_socket_close;
754 ioc_klass->io_shutdown = qio_channel_socket_shutdown;
755 ioc_klass->io_set_cork = qio_channel_socket_set_cork;
756 ioc_klass->io_set_delay = qio_channel_socket_set_delay;
757 ioc_klass->io_create_watch = qio_channel_socket_create_watch;
758 ioc_klass->io_set_aio_fd_handler = qio_channel_socket_set_aio_fd_handler;
761 static const TypeInfo qio_channel_socket_info = {
762 .parent = TYPE_QIO_CHANNEL,
763 .name = TYPE_QIO_CHANNEL_SOCKET,
764 .instance_size = sizeof(QIOChannelSocket),
765 .instance_init = qio_channel_socket_init,
766 .instance_finalize = qio_channel_socket_finalize,
767 .class_init = qio_channel_socket_class_init,
770 static void qio_channel_socket_register_types(void)
772 type_register_static(&qio_channel_socket_info);
775 type_init(qio_channel_socket_register_types);