net_offload.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for offloading IP stack
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_NET_OFFLOAD_H_
  11. #define ZEPHYR_INCLUDE_NET_NET_OFFLOAD_H_
  12. /**
  13. * @brief Network offloading interface
  14. * @defgroup net_offload Network Offloading Interface
  15. * @ingroup networking
  16. * @{
  17. */
  18. #include <net/buf.h>
  19. #include <net/net_ip.h>
  20. #include <net/net_context.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #if defined(CONFIG_NET_OFFLOAD)
  25. /** @cond INTERNAL_HIDDEN */
  26. static inline int32_t timeout_to_int32(k_timeout_t timeout)
  27. {
  28. if (K_TIMEOUT_EQ(timeout, K_NO_WAIT)) {
  29. return 0;
  30. } else if (K_TIMEOUT_EQ(timeout, K_FOREVER)) {
  31. return -1;
  32. } else {
  33. return k_ticks_to_ms_floor32(timeout.ticks);
  34. }
  35. }
  36. /** @endcond */
  37. /** For return parameters and return values of the elements in this
  38. * struct, see similarly named functions in net_context.h
  39. */
  40. struct net_offload {
  41. /**
  42. * This function is called when the socket is to be opened.
  43. */
  44. int (*get)(sa_family_t family,
  45. enum net_sock_type type,
  46. enum net_ip_protocol ip_proto,
  47. struct net_context **context);
  48. /**
  49. * This function is called when user wants to bind to local IP address.
  50. */
  51. int (*bind)(struct net_context *context,
  52. const struct sockaddr *addr,
  53. socklen_t addrlen);
  54. /**
  55. * This function is called when user wants to mark the socket
  56. * to be a listening one.
  57. */
  58. int (*listen)(struct net_context *context, int backlog);
  59. /**
  60. * This function is called when user wants to create a connection
  61. * to a peer host.
  62. */
  63. int (*connect)(struct net_context *context,
  64. const struct sockaddr *addr,
  65. socklen_t addrlen,
  66. net_context_connect_cb_t cb,
  67. int32_t timeout,
  68. void *user_data);
  69. /**
  70. * This function is called when user wants to accept a connection
  71. * being established.
  72. */
  73. int (*accept)(struct net_context *context,
  74. net_tcp_accept_cb_t cb,
  75. int32_t timeout,
  76. void *user_data);
  77. /**
  78. * This function is called when user wants to send data to peer host.
  79. */
  80. int (*send)(struct net_pkt *pkt,
  81. net_context_send_cb_t cb,
  82. int32_t timeout,
  83. void *user_data);
  84. /**
  85. * This function is called when user wants to send data to peer host.
  86. */
  87. int (*sendto)(struct net_pkt *pkt,
  88. const struct sockaddr *dst_addr,
  89. socklen_t addrlen,
  90. net_context_send_cb_t cb,
  91. int32_t timeout,
  92. void *user_data);
  93. /**
  94. * This function is called when user wants to receive data from peer
  95. * host.
  96. */
  97. int (*recv)(struct net_context *context,
  98. net_context_recv_cb_t cb,
  99. int32_t timeout,
  100. void *user_data);
  101. /**
  102. * This function is called when user wants to close the socket.
  103. */
  104. int (*put)(struct net_context *context);
  105. };
  106. /**
  107. * @brief Get a network socket/context from the offloaded IP stack.
  108. *
  109. * @details Network socket is used to define the connection
  110. * 5-tuple (protocol, remote address, remote port, source
  111. * address and source port). This is similar as BSD socket()
  112. * function.
  113. *
  114. * @param iface Network interface where the offloaded IP stack can be
  115. * reached.
  116. * @param family IP address family (AF_INET or AF_INET6)
  117. * @param type Type of the socket, SOCK_STREAM or SOCK_DGRAM
  118. * @param ip_proto IP protocol, IPPROTO_UDP or IPPROTO_TCP
  119. * @param context The allocated context is returned to the caller.
  120. *
  121. * @return 0 if ok, < 0 if error
  122. */
  123. static inline int net_offload_get(struct net_if *iface,
  124. sa_family_t family,
  125. enum net_sock_type type,
  126. enum net_ip_protocol ip_proto,
  127. struct net_context **context)
  128. {
  129. NET_ASSERT(iface);
  130. NET_ASSERT(net_if_offload(iface));
  131. NET_ASSERT(net_if_offload(iface)->get);
  132. return net_if_offload(iface)->get(family, type, ip_proto, context);
  133. }
  134. /**
  135. * @brief Assign a socket a local address.
  136. *
  137. * @details This is similar as BSD bind() function.
  138. *
  139. * @param iface Network interface where the offloaded IP stack can be
  140. * reached.
  141. * @param context The context to be assigned.
  142. * @param addr Address to assigned.
  143. * @param addrlen Length of the address.
  144. *
  145. * @return 0 if ok, < 0 if error
  146. */
  147. static inline int net_offload_bind(struct net_if *iface,
  148. struct net_context *context,
  149. const struct sockaddr *addr,
  150. socklen_t addrlen)
  151. {
  152. NET_ASSERT(iface);
  153. NET_ASSERT(net_if_offload(iface));
  154. NET_ASSERT(net_if_offload(iface)->bind);
  155. return net_if_offload(iface)->bind(context, addr, addrlen);
  156. }
  157. /**
  158. * @brief Mark the context as a listening one.
  159. *
  160. * @details This is similar as BSD listen() function.
  161. *
  162. * @param iface Network interface where the offloaded IP stack can be
  163. * reached.
  164. * @param context The context to use.
  165. * @param backlog The size of the pending connections backlog.
  166. *
  167. * @return 0 if ok, < 0 if error
  168. */
  169. static inline int net_offload_listen(struct net_if *iface,
  170. struct net_context *context,
  171. int backlog)
  172. {
  173. NET_ASSERT(iface);
  174. NET_ASSERT(net_if_offload(iface));
  175. NET_ASSERT(net_if_offload(iface)->listen);
  176. return net_if_offload(iface)->listen(context, backlog);
  177. }
  178. /**
  179. * @brief Create a network connection.
  180. *
  181. * @details The net_context_connect function creates a network
  182. * connection to the host specified by addr. After the
  183. * connection is established, the user-supplied callback (cb)
  184. * is executed. cb is called even if the timeout was set to
  185. * K_FOREVER. cb is not called if the timeout expires.
  186. * For datagram sockets (SOCK_DGRAM), this function only sets
  187. * the peer address.
  188. * This function is similar to the BSD connect() function.
  189. *
  190. * @param iface Network interface where the offloaded IP stack can be
  191. * reached.
  192. * @param context The network context.
  193. * @param addr The peer address to connect to.
  194. * @param addrlen Peer address length.
  195. * @param cb Callback function. Set to NULL if not required.
  196. * @param timeout The timeout value for the connection. Possible values:
  197. * * K_NO_WAIT: this function will return immediately,
  198. * * K_FOREVER: this function will block until the
  199. * connection is established,
  200. * * >0: this function will wait the specified ms.
  201. * @param user_data Data passed to the callback function.
  202. *
  203. * @return 0 on success.
  204. * @return -EINVAL if an invalid parameter is passed as an argument.
  205. * @return -ENOTSUP if the operation is not supported or implemented.
  206. */
  207. static inline int net_offload_connect(struct net_if *iface,
  208. struct net_context *context,
  209. const struct sockaddr *addr,
  210. socklen_t addrlen,
  211. net_context_connect_cb_t cb,
  212. k_timeout_t timeout,
  213. void *user_data)
  214. {
  215. NET_ASSERT(iface);
  216. NET_ASSERT(net_if_offload(iface));
  217. NET_ASSERT(net_if_offload(iface)->connect);
  218. return net_if_offload(iface)->connect(
  219. context, addr, addrlen, cb,
  220. timeout_to_int32(timeout),
  221. user_data);
  222. }
  223. /**
  224. * @brief Accept a network connection attempt.
  225. *
  226. * @details Accept a connection being established. This function
  227. * will return immediately if the timeout is set to K_NO_WAIT.
  228. * In this case the context will call the supplied callback when ever
  229. * there is a connection established to this context. This is "a register
  230. * handler and forget" type of call (async).
  231. * If the timeout is set to K_FOREVER, the function will wait
  232. * until the connection is established. Timeout value > 0, will wait as
  233. * many ms.
  234. * After the connection is established a caller-supplied callback is called.
  235. * The callback is called even if timeout was set to K_FOREVER, the
  236. * callback is called before this function will return in this case.
  237. * The callback is not called if the timeout expires.
  238. * This is similar as BSD accept() function.
  239. *
  240. * @param iface Network interface where the offloaded IP stack can be
  241. * reached.
  242. * @param context The context to use.
  243. * @param cb Caller-supplied callback function.
  244. * @param timeout Timeout for the connection. Possible values
  245. * are K_FOREVER, K_NO_WAIT, >0.
  246. * @param user_data Caller-supplied user data.
  247. *
  248. * @return 0 if ok, < 0 if error
  249. */
  250. static inline int net_offload_accept(struct net_if *iface,
  251. struct net_context *context,
  252. net_tcp_accept_cb_t cb,
  253. k_timeout_t timeout,
  254. void *user_data)
  255. {
  256. NET_ASSERT(iface);
  257. NET_ASSERT(net_if_offload(iface));
  258. NET_ASSERT(net_if_offload(iface)->accept);
  259. return net_if_offload(iface)->accept(
  260. context, cb,
  261. timeout_to_int32(timeout),
  262. user_data);
  263. }
  264. /**
  265. * @brief Send a network packet to a peer.
  266. *
  267. * @details This function can be used to send network data to a peer
  268. * connection. This function will return immediately if the timeout
  269. * is set to K_NO_WAIT. If the timeout is set to K_FOREVER, the function
  270. * will wait until the network packet is sent. Timeout value > 0 will
  271. * wait as many ms. After the network packet is sent,
  272. * a caller-supplied callback is called. The callback is called even
  273. * if timeout was set to K_FOREVER, the callback is called
  274. * before this function will return in this case. The callback is not
  275. * called if the timeout expires. For context of type SOCK_DGRAM,
  276. * the destination address must have been set by the call to
  277. * net_context_connect().
  278. * This is similar as BSD send() function.
  279. *
  280. * @param iface Network interface where the offloaded IP stack can be
  281. * reached.
  282. * @param pkt The network packet to send.
  283. * @param cb Caller-supplied callback function.
  284. * @param timeout Timeout for the connection. Possible values
  285. * are K_FOREVER, K_NO_WAIT, >0.
  286. * @param user_data Caller-supplied user data.
  287. *
  288. * @return 0 if ok, < 0 if error
  289. */
  290. static inline int net_offload_send(struct net_if *iface,
  291. struct net_pkt *pkt,
  292. net_context_send_cb_t cb,
  293. k_timeout_t timeout,
  294. void *user_data)
  295. {
  296. NET_ASSERT(iface);
  297. NET_ASSERT(net_if_offload(iface));
  298. NET_ASSERT(net_if_offload(iface)->send);
  299. return net_if_offload(iface)->send(
  300. pkt, cb,
  301. timeout_to_int32(timeout),
  302. user_data);
  303. }
  304. /**
  305. * @brief Send a network packet to a peer specified by address.
  306. *
  307. * @details This function can be used to send network data to a peer
  308. * specified by address. This variant can only be used for datagram
  309. * connections of type SOCK_DGRAM. This function will return immediately
  310. * if the timeout is set to K_NO_WAIT. If the timeout is set to K_FOREVER,
  311. * the function will wait until the network packet is sent. Timeout
  312. * value > 0 will wait as many ms. After the network packet
  313. * is sent, a caller-supplied callback is called. The callback is called
  314. * even if timeout was set to K_FOREVER, the callback is called
  315. * before this function will return. The callback is not called if the
  316. * timeout expires.
  317. * This is similar as BSD sendto() function.
  318. *
  319. * @param iface Network interface where the offloaded IP stack can be
  320. * reached.
  321. * @param pkt The network packet to send.
  322. * @param dst_addr Destination address. This will override the address
  323. * already set in network packet.
  324. * @param addrlen Length of the address.
  325. * @param cb Caller-supplied callback function.
  326. * @param timeout Timeout for the connection. Possible values
  327. * are K_FOREVER, K_NO_WAIT, >0.
  328. * @param user_data Caller-supplied user data.
  329. *
  330. * @return 0 if ok, < 0 if error
  331. */
  332. static inline int net_offload_sendto(struct net_if *iface,
  333. struct net_pkt *pkt,
  334. const struct sockaddr *dst_addr,
  335. socklen_t addrlen,
  336. net_context_send_cb_t cb,
  337. k_timeout_t timeout,
  338. void *user_data)
  339. {
  340. NET_ASSERT(iface);
  341. NET_ASSERT(net_if_offload(iface));
  342. NET_ASSERT(net_if_offload(iface)->sendto);
  343. return net_if_offload(iface)->sendto(
  344. pkt, dst_addr, addrlen, cb,
  345. timeout_to_int32(timeout),
  346. user_data);
  347. }
  348. /**
  349. * @brief Receive network data from a peer specified by context.
  350. *
  351. * @details This function can be used to register a callback function
  352. * that is called by the network stack when network data has been received
  353. * for this context. As this function registers a callback, then there
  354. * is no need to call this function multiple times if timeout is set to
  355. * K_NO_WAIT.
  356. * If callback function or user data changes, then the function can be called
  357. * multiple times to register new values.
  358. * This function will return immediately if the timeout is set to K_NO_WAIT.
  359. * If the timeout is set to K_FOREVER, the function will wait until the
  360. * network packet is received. Timeout value > 0 will wait as many ms.
  361. * After the network packet is received, a caller-supplied callback is
  362. * called. The callback is called even if timeout was set to K_FOREVER,
  363. * the callback is called before this function will return in this case.
  364. * The callback is not called if the timeout expires. The timeout functionality
  365. * can be compiled out if synchronous behavior is not needed. The sync call
  366. * logic requires some memory that can be saved if only async way of call is
  367. * used. If CONFIG_NET_CONTEXT_SYNC_RECV is not set, then the timeout parameter
  368. * value is ignored.
  369. * This is similar as BSD recv() function.
  370. *
  371. * @param iface Network interface where the offloaded IP stack can be
  372. * reached.
  373. * @param context The network context to use.
  374. * @param cb Caller-supplied callback function.
  375. * @param timeout Caller-supplied timeout. Possible values
  376. * are K_FOREVER, K_NO_WAIT, >0.
  377. * @param user_data Caller-supplied user data.
  378. *
  379. * @return 0 if ok, < 0 if error
  380. */
  381. static inline int net_offload_recv(struct net_if *iface,
  382. struct net_context *context,
  383. net_context_recv_cb_t cb,
  384. k_timeout_t timeout,
  385. void *user_data)
  386. {
  387. NET_ASSERT(iface);
  388. NET_ASSERT(net_if_offload(iface));
  389. NET_ASSERT(net_if_offload(iface)->recv);
  390. return net_if_offload(iface)->recv(
  391. context, cb,
  392. timeout_to_int32(timeout),
  393. user_data);
  394. }
  395. /**
  396. * @brief Free/close a network context.
  397. *
  398. * @details This releases the context. It is not possible to
  399. * send or receive data via this context after this call.
  400. * This is similar as BSD shutdown() function.
  401. *
  402. * @param iface Network interface where the offloaded IP stack can be
  403. * reached.
  404. * @param context The context to be closed.
  405. *
  406. * @return 0 if ok, < 0 if error
  407. */
  408. static inline int net_offload_put(struct net_if *iface,
  409. struct net_context *context)
  410. {
  411. NET_ASSERT(iface);
  412. NET_ASSERT(net_if_offload(iface));
  413. NET_ASSERT(net_if_offload(iface)->put);
  414. return net_if_offload(iface)->put(context);
  415. }
  416. #else
  417. /** @cond INTERNAL_HIDDEN */
  418. static inline int net_offload_get(struct net_if *iface,
  419. sa_family_t family,
  420. enum net_sock_type type,
  421. enum net_ip_protocol ip_proto,
  422. struct net_context **context)
  423. {
  424. return 0;
  425. }
  426. static inline int net_offload_bind(struct net_if *iface,
  427. struct net_context *context,
  428. const struct sockaddr *addr,
  429. socklen_t addrlen)
  430. {
  431. return 0;
  432. }
  433. static inline int net_offload_listen(struct net_if *iface,
  434. struct net_context *context,
  435. int backlog)
  436. {
  437. return 0;
  438. }
  439. static inline int net_offload_connect(struct net_if *iface,
  440. struct net_context *context,
  441. const struct sockaddr *addr,
  442. socklen_t addrlen,
  443. net_context_connect_cb_t cb,
  444. k_timeout_t timeout,
  445. void *user_data)
  446. {
  447. return 0;
  448. }
  449. static inline int net_offload_accept(struct net_if *iface,
  450. struct net_context *context,
  451. net_tcp_accept_cb_t cb,
  452. k_timeout_t timeout,
  453. void *user_data)
  454. {
  455. return 0;
  456. }
  457. static inline int net_offload_send(struct net_if *iface,
  458. struct net_pkt *pkt,
  459. net_context_send_cb_t cb,
  460. k_timeout_t timeout,
  461. void *user_data)
  462. {
  463. return 0;
  464. }
  465. static inline int net_offload_sendto(struct net_if *iface,
  466. struct net_pkt *pkt,
  467. const struct sockaddr *dst_addr,
  468. socklen_t addrlen,
  469. net_context_send_cb_t cb,
  470. k_timeout_t timeout,
  471. void *user_data)
  472. {
  473. return 0;
  474. }
  475. static inline int net_offload_recv(struct net_if *iface,
  476. struct net_context *context,
  477. net_context_recv_cb_t cb,
  478. k_timeout_t timeout,
  479. void *user_data)
  480. {
  481. return 0;
  482. }
  483. static inline int net_offload_put(struct net_if *iface,
  484. struct net_context *context)
  485. {
  486. return 0;
  487. }
  488. /** @endcond */
  489. #endif /* CONFIG_NET_OFFLOAD */
  490. #ifdef __cplusplus
  491. }
  492. #endif
  493. /**
  494. * @}
  495. */
  496. #endif /* ZEPHYR_INCLUDE_NET_NET_OFFLOAD_H_ */