fdtable.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Copyright (c) 2018 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_FDTABLE_H_
  7. #define ZEPHYR_INCLUDE_SYS_FDTABLE_H_
  8. #include <stdarg.h>
  9. #include <sys/types.h>
  10. /* FIXME: For native_posix ssize_t, off_t. */
  11. #include <fs/fs.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * File descriptor virtual method table.
  17. * Currently all operations beyond read/write/close go thru ioctl method.
  18. */
  19. struct fd_op_vtable {
  20. ssize_t (*read)(void *obj, void *buf, size_t sz);
  21. ssize_t (*write)(void *obj, const void *buf, size_t sz);
  22. int (*close)(void *obj);
  23. int (*ioctl)(void *obj, unsigned int request, va_list args);
  24. };
  25. /**
  26. * @brief Reserve file descriptor.
  27. *
  28. * This function allows to reserve a space for file descriptor entry in
  29. * the underlying table, and thus allows caller to fail fast if no free
  30. * descriptor is available. If this function succeeds, z_finalize_fd()
  31. * or z_free_fd() must be called mandatorily.
  32. *
  33. * @return Allocated file descriptor, or -1 in case of error (errno is set)
  34. */
  35. int z_reserve_fd(void);
  36. /**
  37. * @brief Finalize creation of file descriptor.
  38. *
  39. * This function should be called exactly once after z_reserve_fd(), and
  40. * should not be called in any other case.
  41. *
  42. * @param fd File descriptor previously returned by z_reserve_fd()
  43. * @param obj pointer to I/O object structure
  44. * @param vtable pointer to I/O operation implementations for the object
  45. */
  46. void z_finalize_fd(int fd, void *obj, const struct fd_op_vtable *vtable);
  47. /**
  48. * @brief Allocate file descriptor for underlying I/O object.
  49. *
  50. * This function combines operations of z_reserve_fd() and z_finalize_fd()
  51. * in one step, and provided for convenience.
  52. *
  53. * @param obj pointer to I/O object structure
  54. * @param vtable pointer to I/O operation implementations for the object
  55. *
  56. * @return Allocated file descriptor, or -1 in case of error (errno is set)
  57. */
  58. int z_alloc_fd(void *obj, const struct fd_op_vtable *vtable);
  59. /**
  60. * @brief Release reserved file descriptor.
  61. *
  62. * This function may be called once after z_reserve_fd(), and should
  63. * not be called in any other case.
  64. *
  65. * @param fd File descriptor previously returned by z_reserve_fd()
  66. */
  67. void z_free_fd(int fd);
  68. /**
  69. * @brief Get underlying object pointer from file descriptor.
  70. *
  71. * This function is useful for functions other than read/write/ioctl
  72. * to look up underlying I/O object by fd, optionally checking its
  73. * type (using vtable reference). If fd refers to invalid entry,
  74. * NULL will be returned with errno set to EBADF. If fd is valid,
  75. * but vtable param is not NULL and doesn't match object's vtable,
  76. * NULL is returned and errno set to err param.
  77. *
  78. * @param fd File descriptor previously returned by z_reserve_fd()
  79. * @param vtable Expected object vtable or NULL
  80. * @param err errno value to set if object vtable doesn't match
  81. *
  82. * @return Object pointer or NULL, with errno set
  83. */
  84. void *z_get_fd_obj(int fd, const struct fd_op_vtable *vtable, int err);
  85. /**
  86. * @brief Get underlying object pointer and vtable pointer from file descriptor.
  87. *
  88. * @param fd File descriptor previously returned by z_reserve_fd()
  89. * @param vtable A pointer to a pointer variable to store the vtable
  90. * @param lock An optional pointer to a pointer variable to store the mutex
  91. * preventing concurrent descriptor access. The lock is not taken,
  92. * it is just returned for the caller to use if necessary. Pass NULL
  93. * if the lock is not needed by the caller.
  94. *
  95. * @return Object pointer or NULL, with errno set
  96. */
  97. void *z_get_fd_obj_and_vtable(int fd, const struct fd_op_vtable **vtable,
  98. struct k_mutex **lock);
  99. /**
  100. * @brief Call ioctl vmethod on an object using varargs.
  101. *
  102. * We need this helper function because ioctl vmethod is declared to
  103. * take va_list and the only portable way to construct va_list is from
  104. * function's ... parameters.
  105. *
  106. * @param vtable vtable containing ioctl function pointer
  107. * @param obj Object to call ioctl on
  108. * @param request ioctl request number
  109. * @param ... Variadic arguments to ioctl
  110. */
  111. static inline int z_fdtable_call_ioctl(const struct fd_op_vtable *vtable, void *obj,
  112. unsigned long request, ...)
  113. {
  114. va_list args;
  115. int res;
  116. va_start(args, request);
  117. res = vtable->ioctl(obj, request, args);
  118. va_end(args);
  119. return res;
  120. }
  121. /**
  122. * Request codes for fd_op_vtable.ioctl().
  123. *
  124. * Note that these codes are internal Zephyr numbers, for internal
  125. * Zephyr operations (and subject to change without notice, not part
  126. * of "stable ABI"). These are however expected to co-exist with
  127. * "well-known" POSIX/Linux ioctl numbers, and not clash with them.
  128. */
  129. enum {
  130. /* Codes below 0x100 are reserved for fcntl() codes. */
  131. ZFD_IOCTL_FSYNC = 0x100,
  132. ZFD_IOCTL_LSEEK,
  133. ZFD_IOCTL_POLL_PREPARE,
  134. ZFD_IOCTL_POLL_UPDATE,
  135. ZFD_IOCTL_POLL_OFFLOAD,
  136. ZFD_IOCTL_SET_LOCK,
  137. };
  138. #ifdef __cplusplus
  139. }
  140. #endif
  141. #endif /* ZEPHYR_INCLUDE_SYS_FDTABLE_H_ */