socket.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906
  1. /**
  2. * @file
  3. * @brief BSD Sockets compatible API definitions
  4. *
  5. * An API for applications to use BSD Sockets like API.
  6. */
  7. /*
  8. * Copyright (c) 2017-2018 Linaro Limited
  9. * Copyright (c) 2021 Nordic Semiconductor
  10. *
  11. * SPDX-License-Identifier: Apache-2.0
  12. */
  13. #ifndef ZEPHYR_INCLUDE_NET_SOCKET_H_
  14. #define ZEPHYR_INCLUDE_NET_SOCKET_H_
  15. /**
  16. * @brief BSD Sockets compatible API
  17. * @defgroup bsd_sockets BSD Sockets compatible API
  18. * @ingroup networking
  19. * @{
  20. */
  21. #include <sys/types.h>
  22. #include <zephyr/types.h>
  23. #include <net/net_ip.h>
  24. #include <net/dns_resolve.h>
  25. #include <net/socket_select.h>
  26. #include <stdlib.h>
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. struct zsock_pollfd {
  31. int fd;
  32. short events;
  33. short revents;
  34. };
  35. /* ZSOCK_POLL* values are compatible with Linux */
  36. /** zsock_poll: Poll for readability */
  37. #define ZSOCK_POLLIN 1
  38. /** zsock_poll: Compatibility value, ignored */
  39. #define ZSOCK_POLLPRI 2
  40. /** zsock_poll: Poll for writability */
  41. #define ZSOCK_POLLOUT 4
  42. /** zsock_poll: Poll results in error condition (output value only) */
  43. #define ZSOCK_POLLERR 8
  44. /** zsock_poll: Poll detected closed connection (output value only) */
  45. #define ZSOCK_POLLHUP 0x10
  46. /** zsock_poll: Invalid socket (output value only) */
  47. #define ZSOCK_POLLNVAL 0x20
  48. /** zsock_recv: Read data without removing it from socket input queue */
  49. #define ZSOCK_MSG_PEEK 0x02
  50. /** zsock_recv: return the real length of the datagram, even when it was longer
  51. * than the passed buffer
  52. */
  53. #define ZSOCK_MSG_TRUNC 0x20
  54. /** zsock_recv/zsock_send: Override operation to non-blocking */
  55. #define ZSOCK_MSG_DONTWAIT 0x40
  56. /** zsock_recv: block until the full amount of data can be returned */
  57. #define ZSOCK_MSG_WAITALL 0x100
  58. /* Well-known values, e.g. from Linux man 2 shutdown:
  59. * "The constants SHUT_RD, SHUT_WR, SHUT_RDWR have the value 0, 1, 2,
  60. * respectively". Some software uses numeric values.
  61. */
  62. /** zsock_shutdown: Shut down for reading */
  63. #define ZSOCK_SHUT_RD 0
  64. /** zsock_shutdown: Shut down for writing */
  65. #define ZSOCK_SHUT_WR 1
  66. /** zsock_shutdown: Shut down for both reading and writing */
  67. #define ZSOCK_SHUT_RDWR 2
  68. /** Protocol level for TLS.
  69. * Here, the same socket protocol level for TLS as in Linux was used.
  70. */
  71. #define SOL_TLS 282
  72. /**
  73. * @defgroup secure_sockets_options Socket options for TLS
  74. * @{
  75. */
  76. /** Socket option to select TLS credentials to use. It accepts and returns an
  77. * array of sec_tag_t that indicate which TLS credentials should be used with
  78. * specific socket.
  79. */
  80. #define TLS_SEC_TAG_LIST 1
  81. /** Write-only socket option to set hostname. It accepts a string containing
  82. * the hostname (may be NULL to disable hostname verification). By default,
  83. * hostname check is enforced for TLS clients.
  84. */
  85. #define TLS_HOSTNAME 2
  86. /** Socket option to select ciphersuites to use. It accepts and returns an array
  87. * of integers with IANA assigned ciphersuite identifiers.
  88. * If not set, socket will allow all ciphersuites available in the system
  89. * (mebdTLS default behavior).
  90. */
  91. #define TLS_CIPHERSUITE_LIST 3
  92. /** Read-only socket option to read a ciphersuite chosen during TLS handshake.
  93. * It returns an integer containing an IANA assigned ciphersuite identifier
  94. * of chosen ciphersuite.
  95. */
  96. #define TLS_CIPHERSUITE_USED 4
  97. /** Write-only socket option to set peer verification level for TLS connection.
  98. * This option accepts an integer with a peer verification level, compatible
  99. * with mbedTLS values:
  100. * - 0 - none
  101. * - 1 - optional
  102. * - 2 - required
  103. *
  104. * If not set, socket will use mbedTLS defaults (none for servers, required
  105. * for clients).
  106. */
  107. #define TLS_PEER_VERIFY 5
  108. /** Write-only socket option to set role for DTLS connection. This option
  109. * is irrelevant for TLS connections, as for them role is selected based on
  110. * connect()/listen() usage. By default, DTLS will assume client role.
  111. * This option accepts an integer with a TLS role, compatible with
  112. * mbedTLS values:
  113. * - 0 - client
  114. * - 1 - server
  115. */
  116. #define TLS_DTLS_ROLE 6
  117. /** Socket option for setting the supported Application Layer Protocols.
  118. * It accepts and returns a const char array of NULL terminated strings
  119. * representing the supported application layer protocols listed during
  120. * the TLS handshake.
  121. */
  122. #define TLS_ALPN_LIST 7
  123. /** Socket option to set DTLS handshake timeout. The timeout starts at min,
  124. * and upon retransmission the timeout is doubled util max is reached.
  125. * Min and max arguments are separate options. The time unit is ms.
  126. */
  127. #define TLS_DTLS_HANDSHAKE_TIMEOUT_MIN 8
  128. #define TLS_DTLS_HANDSHAKE_TIMEOUT_MAX 9
  129. /** @} */
  130. /* Valid values for TLS_PEER_VERIFY option */
  131. #define TLS_PEER_VERIFY_NONE 0 /**< Peer verification disabled. */
  132. #define TLS_PEER_VERIFY_OPTIONAL 1 /**< Peer verification optional. */
  133. #define TLS_PEER_VERIFY_REQUIRED 2 /**< Peer verification required. */
  134. /* Valid values for TLS_DTLS_ROLE option */
  135. #define TLS_DTLS_ROLE_CLIENT 0 /**< Client role in a DTLS session. */
  136. #define TLS_DTLS_ROLE_SERVER 1 /**< Server role in a DTLS session. */
  137. struct zsock_addrinfo {
  138. struct zsock_addrinfo *ai_next;
  139. int ai_flags;
  140. int ai_family;
  141. int ai_socktype;
  142. int ai_protocol;
  143. socklen_t ai_addrlen;
  144. struct sockaddr *ai_addr;
  145. char *ai_canonname;
  146. struct sockaddr _ai_addr;
  147. char _ai_canonname[DNS_MAX_NAME_SIZE + 1];
  148. };
  149. /**
  150. * @brief Obtain a file descriptor's associated net context
  151. *
  152. * With CONFIG_USERSPACE enabled, the kernel's object permission system
  153. * must apply to socket file descriptors. When a socket is opened, by default
  154. * only the caller has permission, access by other threads will fail unless
  155. * they have been specifically granted permission.
  156. *
  157. * This is achieved by tagging data structure definitions that implement the
  158. * underlying object associated with a network socket file descriptor with
  159. * '__net_socket`. All pointers to instances of these will be known to the
  160. * kernel as kernel objects with type K_OBJ_NET_SOCKET.
  161. *
  162. * This API is intended for threads that need to grant access to the object
  163. * associated with a particular file descriptor to another thread. The
  164. * returned pointer represents the underlying K_OBJ_NET_SOCKET and
  165. * may be passed to APIs like k_object_access_grant().
  166. *
  167. * In a system like Linux which has the notion of threads running in processes
  168. * in a shared virtual address space, this sort of management is unnecessary as
  169. * the scope of file descriptors is implemented at the process level.
  170. *
  171. * However in Zephyr the file descriptor scope is global, and MPU-based systems
  172. * are not able to implement a process-like model due to the lack of memory
  173. * virtualization hardware. They use discrete object permissions and memory
  174. * domains instead to define thread access scope.
  175. *
  176. * User threads will have no direct access to the returned object
  177. * and will fault if they try to access its memory; the pointer can only be
  178. * used to make permission assignment calls, which follow exactly the rules
  179. * for other kernel objects like device drivers and IPC.
  180. *
  181. * @param sock file descriptor
  182. * @return pointer to associated network socket object, or NULL if the
  183. * file descriptor wasn't valid or the caller had no access permission
  184. */
  185. __syscall void *zsock_get_context_object(int sock);
  186. /**
  187. * @brief Create a network socket
  188. *
  189. * @details
  190. * @rst
  191. * See `POSIX.1-2017 article
  192. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/socket.html>`__
  193. * for normative description.
  194. * This function is also exposed as ``socket()``
  195. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  196. * @endrst
  197. *
  198. * If CONFIG_USERSPACE is enabled, the caller will be granted access to the
  199. * context object associated with the returned file descriptor.
  200. * @see zsock_get_context_object()
  201. *
  202. */
  203. __syscall int zsock_socket(int family, int type, int proto);
  204. /**
  205. * @brief Create an unnamed pair of connected sockets
  206. *
  207. * @details
  208. * @rst
  209. * See `POSIX.1-2017 article
  210. * <https://pubs.opengroup.org/onlinepubs/009695399/functions/socketpair.html>`__
  211. * for normative description.
  212. * This function is also exposed as ``socketpair()``
  213. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  214. * @endrst
  215. */
  216. __syscall int zsock_socketpair(int family, int type, int proto, int *sv);
  217. /**
  218. * @brief Close a network socket
  219. *
  220. * @details
  221. * @rst
  222. * Close a network socket.
  223. * This function is also exposed as ``close()``
  224. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined (in which case it
  225. * may conflict with generic POSIX ``close()`` function).
  226. * @endrst
  227. */
  228. __syscall int zsock_close(int sock);
  229. /**
  230. * @brief Shutdown socket send/receive operations
  231. *
  232. * @details
  233. * @rst
  234. * See `POSIX.1-2017 article
  235. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/shutdown.html>`__
  236. * for normative description, but currently this function has no effect in
  237. * Zephyr and provided solely for compatibility with existing code.
  238. * This function is also exposed as ``shutdown()``
  239. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  240. * @endrst
  241. */
  242. __syscall int zsock_shutdown(int sock, int how);
  243. /**
  244. * @brief Bind a socket to a local network address
  245. *
  246. * @details
  247. * @rst
  248. * See `POSIX.1-2017 article
  249. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/bind.html>`__
  250. * for normative description.
  251. * This function is also exposed as ``bind()``
  252. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  253. * @endrst
  254. */
  255. __syscall int zsock_bind(int sock, const struct sockaddr *addr,
  256. socklen_t addrlen);
  257. /**
  258. * @brief Connect a socket to a peer network address
  259. *
  260. * @details
  261. * @rst
  262. * See `POSIX.1-2017 article
  263. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/connect.html>`__
  264. * for normative description.
  265. * This function is also exposed as ``connect()``
  266. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  267. * @endrst
  268. */
  269. __syscall int zsock_connect(int sock, const struct sockaddr *addr,
  270. socklen_t addrlen);
  271. /**
  272. * @brief Set up a STREAM socket to accept peer connections
  273. *
  274. * @details
  275. * @rst
  276. * See `POSIX.1-2017 article
  277. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/listen.html>`__
  278. * for normative description.
  279. * This function is also exposed as ``listen()``
  280. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  281. * @endrst
  282. */
  283. __syscall int zsock_listen(int sock, int backlog);
  284. /**
  285. * @brief Accept a connection on listening socket
  286. *
  287. * @details
  288. * @rst
  289. * See `POSIX.1-2017 article
  290. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/accept.html>`__
  291. * for normative description.
  292. * This function is also exposed as ``accept()``
  293. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  294. * @endrst
  295. */
  296. __syscall int zsock_accept(int sock, struct sockaddr *addr, socklen_t *addrlen);
  297. /**
  298. * @brief Send data to an arbitrary network address
  299. *
  300. * @details
  301. * @rst
  302. * See `POSIX.1-2017 article
  303. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html>`__
  304. * for normative description.
  305. * This function is also exposed as ``sendto()``
  306. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  307. * @endrst
  308. */
  309. __syscall ssize_t zsock_sendto(int sock, const void *buf, size_t len,
  310. int flags, const struct sockaddr *dest_addr,
  311. socklen_t addrlen);
  312. /**
  313. * @brief Send data to a connected peer
  314. *
  315. * @details
  316. * @rst
  317. * See `POSIX.1-2017 article
  318. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/send.html>`__
  319. * for normative description.
  320. * This function is also exposed as ``send()``
  321. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  322. * @endrst
  323. */
  324. static inline ssize_t zsock_send(int sock, const void *buf, size_t len,
  325. int flags)
  326. {
  327. return zsock_sendto(sock, buf, len, flags, NULL, 0);
  328. }
  329. /**
  330. * @brief Send data to an arbitrary network address
  331. *
  332. * @details
  333. * @rst
  334. * See `POSIX.1-2017 article
  335. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/sendmsg.html>`__
  336. * for normative description.
  337. * This function is also exposed as ``sendmsg()``
  338. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  339. * @endrst
  340. */
  341. __syscall ssize_t zsock_sendmsg(int sock, const struct msghdr *msg,
  342. int flags);
  343. /**
  344. * @brief Receive data from an arbitrary network address
  345. *
  346. * @details
  347. * @rst
  348. * See `POSIX.1-2017 article
  349. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/recvfrom.html>`__
  350. * for normative description.
  351. * This function is also exposed as ``recvfrom()``
  352. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  353. * @endrst
  354. */
  355. __syscall ssize_t zsock_recvfrom(int sock, void *buf, size_t max_len,
  356. int flags, struct sockaddr *src_addr,
  357. socklen_t *addrlen);
  358. /**
  359. * @brief Receive data from a connected peer
  360. *
  361. * @details
  362. * @rst
  363. * See `POSIX.1-2017 article
  364. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/recv.html>`__
  365. * for normative description.
  366. * This function is also exposed as ``recv()``
  367. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  368. * @endrst
  369. */
  370. static inline ssize_t zsock_recv(int sock, void *buf, size_t max_len,
  371. int flags)
  372. {
  373. return zsock_recvfrom(sock, buf, max_len, flags, NULL, NULL);
  374. }
  375. /**
  376. * @brief Control blocking/non-blocking mode of a socket
  377. *
  378. * @details
  379. * @rst
  380. * This functions allow to (only) configure a socket for blocking or
  381. * non-blocking operation (O_NONBLOCK).
  382. * This function is also exposed as ``fcntl()``
  383. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined (in which case
  384. * it may conflict with generic POSIX ``fcntl()`` function).
  385. * @endrst
  386. */
  387. __syscall int zsock_fcntl(int sock, int cmd, int flags);
  388. /**
  389. * @brief Efficiently poll multiple sockets for events
  390. *
  391. * @details
  392. * @rst
  393. * See `POSIX.1-2017 article
  394. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html>`__
  395. * for normative description. (In Zephyr this function works only with
  396. * sockets, not arbitrary file descriptors.)
  397. * This function is also exposed as ``poll()``
  398. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined (in which case
  399. * it may conflict with generic POSIX ``poll()`` function).
  400. * @endrst
  401. */
  402. __syscall int zsock_poll(struct zsock_pollfd *fds, int nfds, int timeout);
  403. /**
  404. * @brief Get various socket options
  405. *
  406. * @details
  407. * @rst
  408. * See `POSIX.1-2017 article
  409. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html>`__
  410. * for normative description. In Zephyr this function supports a subset of
  411. * socket options described by POSIX, but also some additional options
  412. * available in Linux (some options are dummy and provided to ease porting
  413. * of existing code).
  414. * This function is also exposed as ``getsockopt()``
  415. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  416. * @endrst
  417. */
  418. __syscall int zsock_getsockopt(int sock, int level, int optname,
  419. void *optval, socklen_t *optlen);
  420. /**
  421. * @brief Set various socket options
  422. *
  423. * @details
  424. * @rst
  425. * See `POSIX.1-2017 article
  426. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html>`__
  427. * for normative description. In Zephyr this function supports a subset of
  428. * socket options described by POSIX, but also some additional options
  429. * available in Linux (some options are dummy and provided to ease porting
  430. * of existing code).
  431. * This function is also exposed as ``setsockopt()``
  432. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  433. * @endrst
  434. */
  435. __syscall int zsock_setsockopt(int sock, int level, int optname,
  436. const void *optval, socklen_t optlen);
  437. /**
  438. * @brief Get socket name
  439. *
  440. * @details
  441. * @rst
  442. * See `POSIX.1-2017 article
  443. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getsockname.html>`__
  444. * for normative description.
  445. * This function is also exposed as ``getsockname()``
  446. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  447. * @endrst
  448. */
  449. __syscall int zsock_getsockname(int sock, struct sockaddr *addr,
  450. socklen_t *addrlen);
  451. /**
  452. * @brief Get local host name
  453. *
  454. * @details
  455. * @rst
  456. * See `POSIX.1-2017 article
  457. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html>`__
  458. * for normative description.
  459. * This function is also exposed as ``gethostname()``
  460. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  461. * @endrst
  462. */
  463. __syscall int zsock_gethostname(char *buf, size_t len);
  464. /**
  465. * @brief Convert network address from internal to numeric ASCII form
  466. *
  467. * @details
  468. * @rst
  469. * See `POSIX.1-2017 article
  470. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_ntop.html>`__
  471. * for normative description.
  472. * This function is also exposed as ``inet_ntop()``
  473. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  474. * @endrst
  475. */
  476. static inline char *zsock_inet_ntop(sa_family_t family, const void *src,
  477. char *dst, size_t size)
  478. {
  479. return net_addr_ntop(family, src, dst, size);
  480. }
  481. /**
  482. * @brief Convert network address from numeric ASCII form to internal representation
  483. *
  484. * @details
  485. * @rst
  486. * See `POSIX.1-2017 article
  487. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/inet_pton.html>`__
  488. * for normative description.
  489. * This function is also exposed as ``inet_pton()``
  490. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  491. * @endrst
  492. */
  493. __syscall int zsock_inet_pton(sa_family_t family, const char *src, void *dst);
  494. /** @cond INTERNAL_HIDDEN */
  495. __syscall int z_zsock_getaddrinfo_internal(const char *host,
  496. const char *service,
  497. const struct zsock_addrinfo *hints,
  498. struct zsock_addrinfo *res);
  499. /** @endcond */
  500. /* Flags for getaddrinfo() hints. */
  501. /** Address for bind() (vs for connect()) */
  502. #define AI_PASSIVE 0x1
  503. /** Fill in ai_canonname */
  504. #define AI_CANONNAME 0x2
  505. /** Assume host address is in numeric notation, don't DNS lookup */
  506. #define AI_NUMERICHOST 0x4
  507. /** May return IPv4 mapped address for IPv6 */
  508. #define AI_V4MAPPED 0x8
  509. /** May return both native IPv6 and mapped IPv4 address for IPv6 */
  510. #define AI_ALL 0x10
  511. /** IPv4/IPv6 support depends on local system config */
  512. #define AI_ADDRCONFIG 0x20
  513. /** Assume service (port) is numeric */
  514. #define AI_NUMERICSERV 0x400
  515. /**
  516. * @brief Resolve a domain name to one or more network addresses
  517. *
  518. * @details
  519. * @rst
  520. * See `POSIX.1-2017 article
  521. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getaddrinfo.html>`__
  522. * for normative description.
  523. * This function is also exposed as ``getaddrinfo()``
  524. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  525. * @endrst
  526. */
  527. int zsock_getaddrinfo(const char *host, const char *service,
  528. const struct zsock_addrinfo *hints,
  529. struct zsock_addrinfo **res);
  530. /**
  531. * @brief Free results returned by zsock_getaddrinfo()
  532. *
  533. * @details
  534. * @rst
  535. * See `POSIX.1-2017 article
  536. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/freeaddrinfo.html>`__
  537. * for normative description.
  538. * This function is also exposed as ``freeaddrinfo()``
  539. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  540. * @endrst
  541. */
  542. void zsock_freeaddrinfo(struct zsock_addrinfo *ai);
  543. /**
  544. * @brief Convert zsock_getaddrinfo() error code to textual message
  545. *
  546. * @details
  547. * @rst
  548. * See `POSIX.1-2017 article
  549. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/gai_strerror.html>`__
  550. * for normative description.
  551. * This function is also exposed as ``gai_strerror()``
  552. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  553. * @endrst
  554. */
  555. const char *zsock_gai_strerror(int errcode);
  556. /** zsock_getnameinfo(): Resolve to numeric address. */
  557. #define NI_NUMERICHOST 1
  558. /** zsock_getnameinfo(): Resolve to numeric port number. */
  559. #define NI_NUMERICSERV 2
  560. /** zsock_getnameinfo(): Return only hostname instead of FQDN */
  561. #define NI_NOFQDN 4
  562. /** zsock_getnameinfo(): Dummy option for compatibility */
  563. #define NI_NAMEREQD 8
  564. /** zsock_getnameinfo(): Dummy option for compatibility */
  565. #define NI_DGRAM 16
  566. /* POSIX extensions */
  567. /** zsock_getnameinfo(): Max supported hostname length */
  568. #ifndef NI_MAXHOST
  569. #define NI_MAXHOST 64
  570. #endif
  571. /**
  572. * @brief Resolve a network address to a domain name or ASCII address
  573. *
  574. * @details
  575. * @rst
  576. * See `POSIX.1-2017 article
  577. * <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getnameinfo.html>`__
  578. * for normative description.
  579. * This function is also exposed as ``getnameinfo()``
  580. * if :kconfig:`CONFIG_NET_SOCKETS_POSIX_NAMES` is defined.
  581. * @endrst
  582. */
  583. int zsock_getnameinfo(const struct sockaddr *addr, socklen_t addrlen,
  584. char *host, socklen_t hostlen,
  585. char *serv, socklen_t servlen, int flags);
  586. #if defined(CONFIG_NET_SOCKETS_POSIX_NAMES)
  587. #define pollfd zsock_pollfd
  588. static inline int socket(int family, int type, int proto)
  589. {
  590. return zsock_socket(family, type, proto);
  591. }
  592. static inline int socketpair(int family, int type, int proto, int sv[2])
  593. {
  594. return zsock_socketpair(family, type, proto, sv);
  595. }
  596. static inline int close(int sock)
  597. {
  598. return zsock_close(sock);
  599. }
  600. static inline int shutdown(int sock, int how)
  601. {
  602. return zsock_shutdown(sock, how);
  603. }
  604. static inline int bind(int sock, const struct sockaddr *addr, socklen_t addrlen)
  605. {
  606. return zsock_bind(sock, addr, addrlen);
  607. }
  608. static inline int connect(int sock, const struct sockaddr *addr,
  609. socklen_t addrlen)
  610. {
  611. return zsock_connect(sock, addr, addrlen);
  612. }
  613. static inline int listen(int sock, int backlog)
  614. {
  615. return zsock_listen(sock, backlog);
  616. }
  617. static inline int accept(int sock, struct sockaddr *addr, socklen_t *addrlen)
  618. {
  619. return zsock_accept(sock, addr, addrlen);
  620. }
  621. static inline ssize_t send(int sock, const void *buf, size_t len, int flags)
  622. {
  623. return zsock_send(sock, buf, len, flags);
  624. }
  625. static inline ssize_t recv(int sock, void *buf, size_t max_len, int flags)
  626. {
  627. return zsock_recv(sock, buf, max_len, flags);
  628. }
  629. /*
  630. * Need this wrapper because newer GCC versions got too smart and "typecheck"
  631. * even macros, so '#define fcntl zsock_fcntl' leads to error.
  632. */
  633. static inline int zsock_fcntl_wrapper(int sock, int cmd, ...)
  634. {
  635. va_list args;
  636. int flags;
  637. va_start(args, cmd);
  638. flags = va_arg(args, int);
  639. va_end(args);
  640. return zsock_fcntl(sock, cmd, flags);
  641. }
  642. #define fcntl zsock_fcntl_wrapper
  643. static inline ssize_t sendto(int sock, const void *buf, size_t len, int flags,
  644. const struct sockaddr *dest_addr,
  645. socklen_t addrlen)
  646. {
  647. return zsock_sendto(sock, buf, len, flags, dest_addr, addrlen);
  648. }
  649. static inline ssize_t sendmsg(int sock, const struct msghdr *message,
  650. int flags)
  651. {
  652. return zsock_sendmsg(sock, message, flags);
  653. }
  654. static inline ssize_t recvfrom(int sock, void *buf, size_t max_len, int flags,
  655. struct sockaddr *src_addr, socklen_t *addrlen)
  656. {
  657. return zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen);
  658. }
  659. static inline int poll(struct zsock_pollfd *fds, int nfds, int timeout)
  660. {
  661. return zsock_poll(fds, nfds, timeout);
  662. }
  663. static inline int getsockopt(int sock, int level, int optname,
  664. void *optval, socklen_t *optlen)
  665. {
  666. return zsock_getsockopt(sock, level, optname, optval, optlen);
  667. }
  668. static inline int setsockopt(int sock, int level, int optname,
  669. const void *optval, socklen_t optlen)
  670. {
  671. return zsock_setsockopt(sock, level, optname, optval, optlen);
  672. }
  673. static inline int getsockname(int sock, struct sockaddr *addr,
  674. socklen_t *addrlen)
  675. {
  676. return zsock_getsockname(sock, addr, addrlen);
  677. }
  678. static inline int getaddrinfo(const char *host, const char *service,
  679. const struct zsock_addrinfo *hints,
  680. struct zsock_addrinfo **res)
  681. {
  682. return zsock_getaddrinfo(host, service, hints, res);
  683. }
  684. static inline void freeaddrinfo(struct zsock_addrinfo *ai)
  685. {
  686. zsock_freeaddrinfo(ai);
  687. }
  688. static inline const char *gai_strerror(int errcode)
  689. {
  690. return zsock_gai_strerror(errcode);
  691. }
  692. static inline int getnameinfo(const struct sockaddr *addr, socklen_t addrlen,
  693. char *host, socklen_t hostlen,
  694. char *serv, socklen_t servlen, int flags)
  695. {
  696. return zsock_getnameinfo(addr, addrlen, host, hostlen,
  697. serv, servlen, flags);
  698. }
  699. #define addrinfo zsock_addrinfo
  700. static inline int gethostname(char *buf, size_t len)
  701. {
  702. return zsock_gethostname(buf, len);
  703. }
  704. static inline int inet_pton(sa_family_t family, const char *src, void *dst)
  705. {
  706. return zsock_inet_pton(family, src, dst);
  707. }
  708. static inline char *inet_ntop(sa_family_t family, const void *src, char *dst,
  709. size_t size)
  710. {
  711. return zsock_inet_ntop(family, src, dst, size);
  712. }
  713. #define POLLIN ZSOCK_POLLIN
  714. #define POLLOUT ZSOCK_POLLOUT
  715. #define POLLERR ZSOCK_POLLERR
  716. #define POLLHUP ZSOCK_POLLHUP
  717. #define POLLNVAL ZSOCK_POLLNVAL
  718. #define MSG_PEEK ZSOCK_MSG_PEEK
  719. #define MSG_TRUNC ZSOCK_MSG_TRUNC
  720. #define MSG_DONTWAIT ZSOCK_MSG_DONTWAIT
  721. #define MSG_WAITALL ZSOCK_MSG_WAITALL
  722. #define SHUT_RD ZSOCK_SHUT_RD
  723. #define SHUT_WR ZSOCK_SHUT_WR
  724. #define SHUT_RDWR ZSOCK_SHUT_RDWR
  725. #define EAI_BADFLAGS DNS_EAI_BADFLAGS
  726. #define EAI_NONAME DNS_EAI_NONAME
  727. #define EAI_AGAIN DNS_EAI_AGAIN
  728. #define EAI_FAIL DNS_EAI_FAIL
  729. #define EAI_NODATA DNS_EAI_NODATA
  730. #define EAI_MEMORY DNS_EAI_MEMORY
  731. #define EAI_SYSTEM DNS_EAI_SYSTEM
  732. #define EAI_SERVICE DNS_EAI_SERVICE
  733. #define EAI_SOCKTYPE DNS_EAI_SOCKTYPE
  734. #define EAI_FAMILY DNS_EAI_FAMILY
  735. #endif /* defined(CONFIG_NET_SOCKETS_POSIX_NAMES) */
  736. #define IFNAMSIZ Z_DEVICE_MAX_NAME_LEN
  737. /** Interface description structure */
  738. struct ifreq {
  739. char ifr_name[IFNAMSIZ]; /* Interface name */
  740. };
  741. /** sockopt: Socket-level option */
  742. #define SOL_SOCKET 1
  743. /* Socket options for SOL_SOCKET level */
  744. /** sockopt: Enable server address reuse (ignored, for compatibility) */
  745. #define SO_REUSEADDR 2
  746. /** sockopt: Type of the socket */
  747. #define SO_TYPE 3
  748. /** sockopt: Async error (ignored, for compatibility) */
  749. #define SO_ERROR 4
  750. /**
  751. * sockopt: Receive timeout
  752. * Applies to receive functions like recv(), but not to connect()
  753. */
  754. #define SO_RCVTIMEO 20
  755. /** sockopt: Send timeout */
  756. #define SO_SNDTIMEO 21
  757. /** sockopt: Bind a socket to an interface */
  758. #define SO_BINDTODEVICE 25
  759. /** sockopt: Timestamp TX packets */
  760. #define SO_TIMESTAMPING 37
  761. /** sockopt: Protocol used with the socket */
  762. #define SO_PROTOCOL 38
  763. /* Socket options for IPPROTO_TCP level */
  764. /** sockopt: Disable TCP buffering (ignored, for compatibility) */
  765. #define TCP_NODELAY 1
  766. /* Socket options for IPPROTO_IPV6 level */
  767. /** sockopt: Don't support IPv4 access (ignored, for compatibility) */
  768. #define IPV6_V6ONLY 26
  769. /** sockopt: Socket priority */
  770. #define SO_PRIORITY 12
  771. /** sockopt: Socket TX time (when the data should be sent) */
  772. #define SO_TXTIME 61
  773. #define SCM_TXTIME SO_TXTIME
  774. /* Socket options for SOCKS5 proxy */
  775. /** sockopt: Enable SOCKS5 for Socket */
  776. #define SO_SOCKS5 60
  777. /** @cond INTERNAL_HIDDEN */
  778. /**
  779. * @brief Registration information for a given BSD socket family.
  780. */
  781. struct net_socket_register {
  782. int family;
  783. bool (*is_supported)(int family, int type, int proto);
  784. int (*handler)(int family, int type, int proto);
  785. };
  786. #define NET_SOCKET_GET_NAME(socket_name) \
  787. (__net_socket_register_##socket_name)
  788. #define NET_SOCKET_REGISTER(socket_name, _family, _is_supported, _handler) \
  789. static const STRUCT_SECTION_ITERABLE(net_socket_register, \
  790. NET_SOCKET_GET_NAME(socket_name)) = { \
  791. .family = _family, \
  792. .is_supported = _is_supported, \
  793. .handler = _handler, \
  794. }
  795. /** @endcond */
  796. #ifdef __cplusplus
  797. }
  798. #endif
  799. #include <syscalls/socket.h>
  800. /**
  801. * @}
  802. */
  803. #endif /* ZEPHYR_INCLUDE_NET_SOCKET_H_ */