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 #include "qemu/osdep.h"
22 #include "block/aio-wait.h"
23 #include "io/channel.h"
24 #include "qapi/error.h"
25 #include "qemu/main-loop.h"
26 #include "qemu/module.h"
29 bool qio_channel_has_feature(QIOChannel
*ioc
,
30 QIOChannelFeature feature
)
32 return ioc
->features
& (1 << feature
);
36 void qio_channel_set_feature(QIOChannel
*ioc
,
37 QIOChannelFeature feature
)
39 ioc
->features
|= (1 << feature
);
43 void qio_channel_set_name(QIOChannel
*ioc
,
47 ioc
->name
= g_strdup(name
);
51 ssize_t
qio_channel_readv_full(QIOChannel
*ioc
,
52 const struct iovec
*iov
,
59 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
62 !qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_FD_PASS
)) {
63 error_setg_errno(errp
, EINVAL
,
64 "Channel does not support file descriptor passing");
68 if ((flags
& QIO_CHANNEL_READ_FLAG_MSG_PEEK
) &&
69 !qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_READ_MSG_PEEK
)) {
70 error_setg_errno(errp
, EINVAL
,
71 "Channel does not support peek read");
75 return klass
->io_readv(ioc
, iov
, niov
, fds
, nfds
, flags
, errp
);
79 ssize_t
qio_channel_writev_full(QIOChannel
*ioc
,
80 const struct iovec
*iov
,
87 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
90 if (!qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_FD_PASS
)) {
91 error_setg_errno(errp
, EINVAL
,
92 "Channel does not support file descriptor passing");
95 if (flags
& QIO_CHANNEL_WRITE_FLAG_ZERO_COPY
) {
96 error_setg_errno(errp
, EINVAL
,
97 "Zero Copy does not support file descriptor passing");
102 if ((flags
& QIO_CHANNEL_WRITE_FLAG_ZERO_COPY
) &&
103 !qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_WRITE_ZERO_COPY
)) {
104 error_setg_errno(errp
, EINVAL
,
105 "Requested Zero Copy feature is not available");
109 return klass
->io_writev(ioc
, iov
, niov
, fds
, nfds
, flags
, errp
);
113 int coroutine_mixed_fn
qio_channel_readv_all_eof(QIOChannel
*ioc
,
114 const struct iovec
*iov
,
118 return qio_channel_readv_full_all_eof(ioc
, iov
, niov
, NULL
, NULL
, errp
);
121 int coroutine_mixed_fn
qio_channel_readv_all(QIOChannel
*ioc
,
122 const struct iovec
*iov
,
126 return qio_channel_readv_full_all(ioc
, iov
, niov
, NULL
, NULL
, errp
);
129 int coroutine_mixed_fn
qio_channel_readv_full_all_eof(QIOChannel
*ioc
,
130 const struct iovec
*iov
,
132 int **fds
, size_t *nfds
,
136 struct iovec
*local_iov
= g_new(struct iovec
, niov
);
137 struct iovec
*local_iov_head
= local_iov
;
138 unsigned int nlocal_iov
= niov
;
139 int **local_fds
= fds
;
140 size_t *local_nfds
= nfds
;
141 bool partial
= false;
151 nlocal_iov
= iov_copy(local_iov
, nlocal_iov
,
153 0, iov_size(iov
, niov
));
155 while ((nlocal_iov
> 0) || local_fds
) {
157 len
= qio_channel_readv_full(ioc
, local_iov
, nlocal_iov
, local_fds
,
158 local_nfds
, 0, errp
);
159 if (len
== QIO_CHANNEL_ERR_BLOCK
) {
160 if (qemu_in_coroutine()) {
161 qio_channel_yield(ioc
, G_IO_IN
);
163 qio_channel_wait(ioc
, G_IO_IN
);
169 if (local_nfds
&& *local_nfds
) {
171 * Got some FDs, but no data yet. This isn't an EOF
172 * scenario (yet), so carry on to try to read data
173 * on next loop iteration
176 } else if (!partial
) {
177 /* No fds and no data - EOF before any data read */
183 "Unexpected end-of-file before all data were read");
184 /* Fallthrough into len < 0 handling */
189 /* Close any FDs we previously received */
192 for (i
= 0; i
< (*nfds
); i
++) {
203 iov_discard_front(&local_iov
, &nlocal_iov
, len
);
215 g_free(local_iov_head
);
219 int coroutine_mixed_fn
qio_channel_readv_full_all(QIOChannel
*ioc
,
220 const struct iovec
*iov
,
222 int **fds
, size_t *nfds
,
225 int ret
= qio_channel_readv_full_all_eof(ioc
, iov
, niov
, fds
, nfds
, errp
);
228 error_setg(errp
, "Unexpected end-of-file before all data were read");
238 int coroutine_mixed_fn
qio_channel_writev_all(QIOChannel
*ioc
,
239 const struct iovec
*iov
,
243 return qio_channel_writev_full_all(ioc
, iov
, niov
, NULL
, 0, 0, errp
);
246 int coroutine_mixed_fn
qio_channel_writev_full_all(QIOChannel
*ioc
,
247 const struct iovec
*iov
,
249 int *fds
, size_t nfds
,
250 int flags
, Error
**errp
)
253 struct iovec
*local_iov
= g_new(struct iovec
, niov
);
254 struct iovec
*local_iov_head
= local_iov
;
255 unsigned int nlocal_iov
= niov
;
257 nlocal_iov
= iov_copy(local_iov
, nlocal_iov
,
259 0, iov_size(iov
, niov
));
261 while (nlocal_iov
> 0) {
264 len
= qio_channel_writev_full(ioc
, local_iov
, nlocal_iov
, fds
,
267 if (len
== QIO_CHANNEL_ERR_BLOCK
) {
268 if (qemu_in_coroutine()) {
269 qio_channel_yield(ioc
, G_IO_OUT
);
271 qio_channel_wait(ioc
, G_IO_OUT
);
279 iov_discard_front(&local_iov
, &nlocal_iov
, len
);
287 g_free(local_iov_head
);
291 ssize_t
qio_channel_readv(QIOChannel
*ioc
,
292 const struct iovec
*iov
,
296 return qio_channel_readv_full(ioc
, iov
, niov
, NULL
, NULL
, 0, errp
);
300 ssize_t
qio_channel_writev(QIOChannel
*ioc
,
301 const struct iovec
*iov
,
305 return qio_channel_writev_full(ioc
, iov
, niov
, NULL
, 0, 0, errp
);
309 ssize_t
qio_channel_read(QIOChannel
*ioc
,
314 struct iovec iov
= { .iov_base
= buf
, .iov_len
= buflen
};
315 return qio_channel_readv_full(ioc
, &iov
, 1, NULL
, NULL
, 0, errp
);
319 ssize_t
qio_channel_write(QIOChannel
*ioc
,
324 struct iovec iov
= { .iov_base
= (char *)buf
, .iov_len
= buflen
};
325 return qio_channel_writev_full(ioc
, &iov
, 1, NULL
, 0, 0, errp
);
329 int coroutine_mixed_fn
qio_channel_read_all_eof(QIOChannel
*ioc
,
334 struct iovec iov
= { .iov_base
= buf
, .iov_len
= buflen
};
335 return qio_channel_readv_all_eof(ioc
, &iov
, 1, errp
);
339 int coroutine_mixed_fn
qio_channel_read_all(QIOChannel
*ioc
,
344 struct iovec iov
= { .iov_base
= buf
, .iov_len
= buflen
};
345 return qio_channel_readv_all(ioc
, &iov
, 1, errp
);
349 int coroutine_mixed_fn
qio_channel_write_all(QIOChannel
*ioc
,
354 struct iovec iov
= { .iov_base
= (char *)buf
, .iov_len
= buflen
};
355 return qio_channel_writev_all(ioc
, &iov
, 1, errp
);
359 int qio_channel_set_blocking(QIOChannel
*ioc
,
363 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
364 return klass
->io_set_blocking(ioc
, enabled
, errp
);
368 int qio_channel_close(QIOChannel
*ioc
,
371 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
372 return klass
->io_close(ioc
, errp
);
376 GSource
*qio_channel_create_watch(QIOChannel
*ioc
,
377 GIOCondition condition
)
379 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
380 GSource
*ret
= klass
->io_create_watch(ioc
, condition
);
383 g_source_set_name(ret
, ioc
->name
);
390 void qio_channel_set_aio_fd_handler(QIOChannel
*ioc
,
396 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
398 klass
->io_set_aio_fd_handler(ioc
, ctx
, io_read
, io_write
, opaque
);
401 guint
qio_channel_add_watch_full(QIOChannel
*ioc
,
402 GIOCondition condition
,
405 GDestroyNotify notify
,
406 GMainContext
*context
)
411 source
= qio_channel_create_watch(ioc
, condition
);
413 g_source_set_callback(source
, (GSourceFunc
)func
, user_data
, notify
);
415 id
= g_source_attach(source
, context
);
416 g_source_unref(source
);
421 guint
qio_channel_add_watch(QIOChannel
*ioc
,
422 GIOCondition condition
,
425 GDestroyNotify notify
)
427 return qio_channel_add_watch_full(ioc
, condition
, func
,
428 user_data
, notify
, NULL
);
431 GSource
*qio_channel_add_watch_source(QIOChannel
*ioc
,
432 GIOCondition condition
,
435 GDestroyNotify notify
,
436 GMainContext
*context
)
441 id
= qio_channel_add_watch_full(ioc
, condition
, func
,
442 user_data
, notify
, context
);
443 source
= g_main_context_find_source_by_id(context
, id
);
444 g_source_ref(source
);
449 int qio_channel_shutdown(QIOChannel
*ioc
,
450 QIOChannelShutdown how
,
453 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
455 if (!klass
->io_shutdown
) {
456 error_setg(errp
, "Data path shutdown not supported");
460 return klass
->io_shutdown(ioc
, how
, errp
);
464 void qio_channel_set_delay(QIOChannel
*ioc
,
467 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
469 if (klass
->io_set_delay
) {
470 klass
->io_set_delay(ioc
, enabled
);
475 void qio_channel_set_cork(QIOChannel
*ioc
,
478 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
480 if (klass
->io_set_cork
) {
481 klass
->io_set_cork(ioc
, enabled
);
486 off_t
qio_channel_io_seek(QIOChannel
*ioc
,
491 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
493 if (!klass
->io_seek
) {
494 error_setg(errp
, "Channel does not support random access");
498 return klass
->io_seek(ioc
, offset
, whence
, errp
);
501 int qio_channel_flush(QIOChannel
*ioc
,
504 QIOChannelClass
*klass
= QIO_CHANNEL_GET_CLASS(ioc
);
506 if (!klass
->io_flush
||
507 !qio_channel_has_feature(ioc
, QIO_CHANNEL_FEATURE_WRITE_ZERO_COPY
)) {
511 return klass
->io_flush(ioc
, errp
);
515 static void qio_channel_restart_read(void *opaque
)
517 QIOChannel
*ioc
= opaque
;
518 Coroutine
*co
= qatomic_xchg(&ioc
->read_coroutine
, NULL
);
524 /* Assert that aio_co_wake() reenters the coroutine directly */
525 assert(qemu_get_current_aio_context() ==
526 qemu_coroutine_get_aio_context(co
));
530 static void qio_channel_restart_write(void *opaque
)
532 QIOChannel
*ioc
= opaque
;
533 Coroutine
*co
= qatomic_xchg(&ioc
->write_coroutine
, NULL
);
539 /* Assert that aio_co_wake() reenters the coroutine directly */
540 assert(qemu_get_current_aio_context() ==
541 qemu_coroutine_get_aio_context(co
));
545 static void qio_channel_set_aio_fd_handlers(QIOChannel
*ioc
)
547 IOHandler
*rd_handler
= NULL
, *wr_handler
= NULL
;
550 if (ioc
->read_coroutine
) {
551 rd_handler
= qio_channel_restart_read
;
553 if (ioc
->write_coroutine
) {
554 wr_handler
= qio_channel_restart_write
;
557 ctx
= ioc
->ctx
? ioc
->ctx
: iohandler_get_aio_context();
558 qio_channel_set_aio_fd_handler(ioc
, ctx
, rd_handler
, wr_handler
, ioc
);
561 void qio_channel_attach_aio_context(QIOChannel
*ioc
,
564 assert(!ioc
->read_coroutine
);
565 assert(!ioc
->write_coroutine
);
569 void qio_channel_detach_aio_context(QIOChannel
*ioc
)
571 ioc
->read_coroutine
= NULL
;
572 ioc
->write_coroutine
= NULL
;
573 qio_channel_set_aio_fd_handlers(ioc
);
577 void coroutine_fn
qio_channel_yield(QIOChannel
*ioc
,
578 GIOCondition condition
)
580 AioContext
*ioc_ctx
= ioc
->ctx
?: qemu_get_aio_context();
582 assert(qemu_in_coroutine());
583 assert(in_aio_context_home_thread(ioc_ctx
));
585 if (condition
== G_IO_IN
) {
586 assert(!ioc
->read_coroutine
);
587 ioc
->read_coroutine
= qemu_coroutine_self();
588 } else if (condition
== G_IO_OUT
) {
589 assert(!ioc
->write_coroutine
);
590 ioc
->write_coroutine
= qemu_coroutine_self();
594 qio_channel_set_aio_fd_handlers(ioc
);
595 qemu_coroutine_yield();
596 assert(in_aio_context_home_thread(ioc_ctx
));
598 /* Allow interrupting the operation by reentering the coroutine other than
599 * through the aio_fd_handlers. */
600 if (condition
== G_IO_IN
) {
601 assert(ioc
->read_coroutine
== NULL
);
602 qio_channel_set_aio_fd_handlers(ioc
);
603 } else if (condition
== G_IO_OUT
) {
604 assert(ioc
->write_coroutine
== NULL
);
605 qio_channel_set_aio_fd_handlers(ioc
);
609 void qio_channel_wake_read(QIOChannel
*ioc
)
611 Coroutine
*co
= qatomic_xchg(&ioc
->read_coroutine
, NULL
);
617 static gboolean
qio_channel_wait_complete(QIOChannel
*ioc
,
618 GIOCondition condition
,
621 GMainLoop
*loop
= opaque
;
623 g_main_loop_quit(loop
);
628 void qio_channel_wait(QIOChannel
*ioc
,
629 GIOCondition condition
)
631 GMainContext
*ctxt
= g_main_context_new();
632 GMainLoop
*loop
= g_main_loop_new(ctxt
, TRUE
);
635 source
= qio_channel_create_watch(ioc
, condition
);
637 g_source_set_callback(source
,
638 (GSourceFunc
)qio_channel_wait_complete
,
642 g_source_attach(source
, ctxt
);
644 g_main_loop_run(loop
);
646 g_source_unref(source
);
647 g_main_loop_unref(loop
);
648 g_main_context_unref(ctxt
);
652 static void qio_channel_finalize(Object
*obj
)
654 QIOChannel
*ioc
= QIO_CHANNEL(obj
);
660 CloseHandle(ioc
->event
);
665 static const TypeInfo qio_channel_info
= {
666 .parent
= TYPE_OBJECT
,
667 .name
= TYPE_QIO_CHANNEL
,
668 .instance_size
= sizeof(QIOChannel
),
669 .instance_finalize
= qio_channel_finalize
,
671 .class_size
= sizeof(QIOChannelClass
),
675 static void qio_channel_register_types(void)
677 type_register_static(&qio_channel_info
);
681 type_init(qio_channel_register_types
);