qemu-coroutine-io.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Coroutine-aware I/O functions
  3. *
  4. * Copyright (C) 2009-2010 Nippon Telegraph and Telephone Corporation.
  5. * Copyright (c) 2011, Red Hat, Inc.
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy
  8. * of this software and associated documentation files (the "Software"), to deal
  9. * in the Software without restriction, including without limitation the rights
  10. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the Software is
  12. * furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in
  15. * all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. * THE SOFTWARE.
  24. */
  25. #include "qemu/osdep.h"
  26. #include "qemu-common.h"
  27. #include "qemu/sockets.h"
  28. #include "qemu/coroutine.h"
  29. #include "qemu/iov.h"
  30. #include "qemu/main-loop.h"
  31. ssize_t coroutine_fn
  32. qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
  33. size_t offset, size_t bytes, bool do_send)
  34. {
  35. size_t done = 0;
  36. ssize_t ret;
  37. while (done < bytes) {
  38. ret = iov_send_recv(sockfd, iov, iov_cnt,
  39. offset + done, bytes - done, do_send);
  40. if (ret > 0) {
  41. done += ret;
  42. } else if (ret < 0) {
  43. if (errno == EAGAIN || errno == EWOULDBLOCK) {
  44. qemu_coroutine_yield();
  45. } else if (done == 0) {
  46. return -errno;
  47. } else {
  48. break;
  49. }
  50. } else if (ret == 0 && !do_send) {
  51. /* write (send) should never return 0.
  52. * read (recv) returns 0 for end-of-file (-data).
  53. * In both cases there's little point retrying,
  54. * but we do for write anyway, just in case */
  55. break;
  56. }
  57. }
  58. return done;
  59. }
  60. ssize_t coroutine_fn
  61. qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send)
  62. {
  63. struct iovec iov = { .iov_base = buf, .iov_len = bytes };
  64. return qemu_co_sendv_recvv(sockfd, &iov, 1, 0, bytes, do_send);
  65. }
  66. typedef struct {
  67. AioContext *ctx;
  68. Coroutine *co;
  69. int fd;
  70. } FDYieldUntilData;
  71. static void fd_coroutine_enter(void *opaque)
  72. {
  73. FDYieldUntilData *data = opaque;
  74. aio_set_fd_handler(data->ctx, data->fd, false, NULL, NULL, NULL, NULL);
  75. qemu_coroutine_enter(data->co);
  76. }
  77. void coroutine_fn yield_until_fd_readable(int fd)
  78. {
  79. FDYieldUntilData data;
  80. assert(qemu_in_coroutine());
  81. data.ctx = qemu_get_current_aio_context();
  82. data.co = qemu_coroutine_self();
  83. data.fd = fd;
  84. aio_set_fd_handler(
  85. data.ctx, fd, false, fd_coroutine_enter, NULL, NULL, &data);
  86. qemu_coroutine_yield();
  87. }