socket_select.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_
  7. #define ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_
  8. /**
  9. * @brief BSD Sockets compatible API
  10. * @defgroup bsd_sockets BSD Sockets compatible API
  11. * @ingroup networking
  12. * @{
  13. */
  14. #include <toolchain.h>
  15. #include <net/socket_types.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. typedef struct zsock_fd_set {
  20. uint32_t bitset[(CONFIG_POSIX_MAX_FDS + 31) / 32];
  21. } zsock_fd_set;
  22. /**
  23. * @brief Legacy function to poll multiple sockets for events
  24. *
  25. * @details
  26. * @rst
  27. * See `POSIX.1-2017 article
  28. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html>`__
  29. * for normative description. This function is provided to ease porting of
  30. * existing code and not recommended for usage due to its inefficiency,
  31. * use :c:func:`zsock_poll()` instead. In Zephyr this function works only with
  32. * sockets, not arbitrary file descriptors.
  33. * This function is also exposed as ``select()``
  34. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined (in which case
  35. * it may conflict with generic POSIX ``select()`` function).
  36. * @endrst
  37. */
  38. __syscall int zsock_select(int nfds, zsock_fd_set *readfds,
  39. zsock_fd_set *writefds,
  40. zsock_fd_set *exceptfds,
  41. struct zsock_timeval *timeout);
  42. /** Number of file descriptors which can be added to zsock_fd_set */
  43. #define ZSOCK_FD_SETSIZE (sizeof(((zsock_fd_set *)0)->bitset) * 8)
  44. /**
  45. * @brief Initialize (clear) fd_set
  46. *
  47. * @details
  48. * @rst
  49. * See `POSIX.1-2017 article
  50. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html>`__
  51. * for normative description.
  52. * This function is also exposed as ``FD_ZERO()``
  53. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  54. * @endrst
  55. */
  56. void ZSOCK_FD_ZERO(zsock_fd_set *set);
  57. /**
  58. * @brief Check whether socket is a member of fd_set
  59. *
  60. * @details
  61. * @rst
  62. * See `POSIX.1-2017 article
  63. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html>`__
  64. * for normative description.
  65. * This function is also exposed as ``FD_ISSET()``
  66. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  67. * @endrst
  68. */
  69. int ZSOCK_FD_ISSET(int fd, zsock_fd_set *set);
  70. /**
  71. * @brief Remove socket from fd_set
  72. *
  73. * @details
  74. * @rst
  75. * See `POSIX.1-2017 article
  76. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html>`__
  77. * for normative description.
  78. * This function is also exposed as ``FD_CLR()``
  79. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  80. * @endrst
  81. */
  82. void ZSOCK_FD_CLR(int fd, zsock_fd_set *set);
  83. /**
  84. * @brief Add socket to fd_set
  85. *
  86. * @details
  87. * @rst
  88. * See `POSIX.1-2017 article
  89. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html>`__
  90. * for normative description.
  91. * This function is also exposed as ``FD_SET()``
  92. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  93. * @endrst
  94. */
  95. void ZSOCK_FD_SET(int fd, zsock_fd_set *set);
  96. #ifdef CONFIG_NET_SOCKETS_POSIX_NAMES
  97. #define fd_set zsock_fd_set
  98. #define timeval zsock_timeval
  99. #define FD_SETSIZE ZSOCK_FD_SETSIZE
  100. static inline int select(int nfds, zsock_fd_set *readfds,
  101. zsock_fd_set *writefds, zsock_fd_set *exceptfds,
  102. struct timeval *timeout)
  103. {
  104. return zsock_select(nfds, readfds, writefds, exceptfds, timeout);
  105. }
  106. static inline void FD_ZERO(zsock_fd_set *set)
  107. {
  108. ZSOCK_FD_ZERO(set);
  109. }
  110. static inline int FD_ISSET(int fd, zsock_fd_set *set)
  111. {
  112. return ZSOCK_FD_ISSET(fd, set);
  113. }
  114. static inline void FD_CLR(int fd, zsock_fd_set *set)
  115. {
  116. ZSOCK_FD_CLR(fd, set);
  117. }
  118. static inline void FD_SET(int fd, zsock_fd_set *set)
  119. {
  120. ZSOCK_FD_SET(fd, set);
  121. }
  122. #endif /* CONFIG_NET_SOCKETS_POSIX_NAMES */
  123. #ifdef __cplusplus
  124. }
  125. #endif
  126. #include <syscalls/socket_select.h>
  127. /**
  128. * @}
  129. */
  130. #endif /* ZEPHYR_INCLUDE_NET_SOCKET_SELECT_H_ */