msg.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * Mach Operating System
  3. * Copyright (c) 1991,1990,1989, 1995 Carnegie Mellon University
  4. * All Rights Reserved.
  5. *
  6. * Permission to use, copy, modify and distribute this software and its
  7. * documentation is hereby granted, provided that both the copyright
  8. * notice and this permission notice appear in all copies of the
  9. * software, derivative works or modified versions, and any portions
  10. * thereof, and that both notices appear in supporting documentation.
  11. *
  12. * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
  13. * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  14. * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  15. *
  16. * Carnegie Mellon requests users of this software to return to
  17. *
  18. * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
  19. * School of Computer Science
  20. * Carnegie Mellon University
  21. * Pittsburgh PA 15213-3890
  22. *
  23. * any improvements or extensions that they make and grant Carnegie Mellon
  24. * the rights to redistribute these changes.
  25. */
  26. #include <mach/port.h>
  27. #include <mach/message.h>
  28. #ifdef MACH_MSG_OVERWRITE
  29. /* In variants with this feature, the actual system call is
  30. __mach_msg_overwrite_trap. */
  31. mach_msg_return_t
  32. __mach_msg_trap (mach_msg_header_t *msg,
  33. mach_msg_option_t option,
  34. mach_msg_size_t send_size,
  35. mach_msg_size_t rcv_size,
  36. mach_port_t rcv_name,
  37. mach_msg_timeout_t timeout,
  38. mach_port_t notify)
  39. {
  40. return __mach_msg_overwrite_trap (msg, option, send_size,
  41. rcv_size, rcv_name, timeout, notify,
  42. MACH_MSG_NULL, 0);
  43. }
  44. weak_alias (__mach_msg_trap, mach_msg_trap)
  45. /* See comments below in __mach_msg. */
  46. mach_msg_return_t
  47. __mach_msg_overwrite (mach_msg_header_t *msg,
  48. mach_msg_option_t option,
  49. mach_msg_size_t send_size,
  50. mach_msg_size_t rcv_size,
  51. mach_port_t rcv_name,
  52. mach_msg_timeout_t timeout,
  53. mach_port_t notify,
  54. mach_msg_header_t *rcv_msg,
  55. mach_msg_size_t rcv_msg_size)
  56. {
  57. mach_msg_return_t ret;
  58. /* Consider the following cases:
  59. 1. Errors in pseudo-receive (eg, MACH_SEND_INTERRUPTED
  60. plus special bits).
  61. 2. Use of MACH_SEND_INTERRUPT/MACH_RCV_INTERRUPT options.
  62. 3. RPC calls with interruptions in one/both halves.
  63. */
  64. ret = __mach_msg_overwrite_trap (msg, option, send_size,
  65. rcv_size, rcv_name, timeout, notify,
  66. rcv_msg, rcv_msg_size);
  67. if (ret == MACH_MSG_SUCCESS)
  68. return MACH_MSG_SUCCESS;
  69. if (!(option & MACH_SEND_INTERRUPT))
  70. while (ret == MACH_SEND_INTERRUPTED)
  71. ret = __mach_msg_overwrite_trap (msg, option, send_size,
  72. rcv_size, rcv_name, timeout, notify,
  73. rcv_msg, rcv_msg_size);
  74. if (!(option & MACH_RCV_INTERRUPT))
  75. while (ret == MACH_RCV_INTERRUPTED)
  76. ret = __mach_msg_overwrite_trap (msg, option & ~MACH_SEND_MSG,
  77. 0, rcv_size, rcv_name, timeout, notify,
  78. rcv_msg, rcv_msg_size);
  79. return ret;
  80. }
  81. weak_alias (__mach_msg_overwrite, mach_msg_overwrite)
  82. #endif
  83. mach_msg_return_t
  84. __mach_msg (mach_msg_header_t *msg,
  85. mach_msg_option_t option,
  86. mach_msg_size_t send_size,
  87. mach_msg_size_t rcv_size,
  88. mach_port_t rcv_name,
  89. mach_msg_timeout_t timeout,
  90. mach_port_t notify)
  91. {
  92. mach_msg_return_t ret;
  93. /* Consider the following cases:
  94. 1. Errors in pseudo-receive (eg, MACH_SEND_INTERRUPTED
  95. plus special bits).
  96. 2. Use of MACH_SEND_INTERRUPT/MACH_RCV_INTERRUPT options.
  97. 3. RPC calls with interruptions in one/both halves.
  98. */
  99. ret = __mach_msg_trap (msg, option, send_size,
  100. rcv_size, rcv_name, timeout, notify);
  101. if (ret == MACH_MSG_SUCCESS)
  102. return MACH_MSG_SUCCESS;
  103. if (!(option & MACH_SEND_INTERRUPT))
  104. while (ret == MACH_SEND_INTERRUPTED)
  105. ret = __mach_msg_trap (msg, option, send_size,
  106. rcv_size, rcv_name, timeout, notify);
  107. if (!(option & MACH_RCV_INTERRUPT))
  108. while (ret == MACH_RCV_INTERRUPTED)
  109. ret = __mach_msg_trap (msg, option & ~MACH_SEND_MSG,
  110. 0, rcv_size, rcv_name, timeout, notify);
  111. return ret;
  112. }
  113. // weak_alias (__mach_msg, mach_msg)
  114. mach_msg_return_t
  115. __mach_msg_send (mach_msg_header_t *msg)
  116. {
  117. return __mach_msg (msg, MACH_SEND_MSG,
  118. msg->msgh_size, 0, MACH_PORT_NULL,
  119. MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
  120. }
  121. // weak_alias (__mach_msg_send, mach_msg_send)
  122. mach_msg_return_t
  123. __mach_msg_receive (mach_msg_header_t *msg)
  124. {
  125. return __mach_msg (msg, MACH_RCV_MSG,
  126. 0, msg->msgh_size, msg->msgh_local_port,
  127. MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
  128. }
  129. // weak_alias (__mach_msg_receive, mach_msg_receive)