net_context.h 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169
  1. /** @file
  2. * @brief Network context definitions
  3. *
  4. * An API for applications to define a network connection.
  5. */
  6. /*
  7. * Copyright (c) 2016 Intel Corporation
  8. * Copyright (c) 2021 Nordic Semiconductor
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
  13. #define ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
  14. /**
  15. * @brief Application network context
  16. * @defgroup net_context Application network context
  17. * @ingroup networking
  18. * @{
  19. */
  20. #include <kernel.h>
  21. #include <sys/atomic.h>
  22. #include <net/net_ip.h>
  23. #include <net/net_if.h>
  24. #include <net/net_stats.h>
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /** Is this context used or not */
  29. #define NET_CONTEXT_IN_USE BIT(0)
  30. /** State of the context (bits 1 & 2 in the flags) */
  31. enum net_context_state {
  32. NET_CONTEXT_IDLE = 0,
  33. NET_CONTEXT_UNCONNECTED = 0,
  34. NET_CONTEXT_CONFIGURING = 1,
  35. NET_CONTEXT_CONNECTING = 1,
  36. NET_CONTEXT_READY = 2,
  37. NET_CONTEXT_CONNECTED = 2,
  38. NET_CONTEXT_LISTENING = 3,
  39. };
  40. /**
  41. * The address family, connection type and IP protocol are
  42. * stored into a bit field to save space.
  43. */
  44. /** Protocol family of this connection */
  45. #define NET_CONTEXT_FAMILY (BIT(3) | BIT(4) | BIT(5))
  46. /** Type of the connection (datagram / stream / raw) */
  47. #define NET_CONTEXT_TYPE (BIT(6) | BIT(7))
  48. /** Remote address set */
  49. #define NET_CONTEXT_REMOTE_ADDR_SET BIT(8)
  50. /** Is the socket accepting connections */
  51. #define NET_CONTEXT_ACCEPTING_SOCK BIT(9)
  52. /** Is the socket closing / closed */
  53. #define NET_CONTEXT_CLOSING_SOCK BIT(10)
  54. /* Context is bound to a specific interface */
  55. #define NET_CONTEXT_BOUND_TO_IFACE BIT(11)
  56. struct net_context;
  57. /**
  58. * @typedef net_context_recv_cb_t
  59. * @brief Network data receive callback.
  60. *
  61. * @details The recv callback is called after a network data packet is
  62. * received. This callback is called by RX thread so its stack and execution
  63. * context is used here. Keep processing in the callback minimal to reduce the
  64. * time spent blocked while handling packets.
  65. *
  66. * @param context The context to use.
  67. * @param pkt Network buffer that is received. If the pkt is not NULL,
  68. * then the callback will own the buffer and it needs to to unref the pkt
  69. * as soon as it has finished working with it. On EOF, pkt will be NULL.
  70. * @param ip_hdr a pointer to relevant IP (v4 or v6) header.
  71. * @param proto_hdr a pointer to relevant protocol (udp or tcp) header.
  72. * @param status Value is set to 0 if some data or the connection is
  73. * at EOF, <0 if there was an error receiving data, in this case the
  74. * pkt parameter is set to NULL.
  75. * @param user_data The user data given in net_recv() call.
  76. */
  77. typedef void (*net_context_recv_cb_t)(struct net_context *context,
  78. struct net_pkt *pkt,
  79. union net_ip_header *ip_hdr,
  80. union net_proto_header *proto_hdr,
  81. int status,
  82. void *user_data);
  83. /**
  84. * @typedef net_context_send_cb_t
  85. * @brief Network data send callback.
  86. *
  87. * @details The send callback is called after a network data packet is sent.
  88. * This callback is called by TX thread so its stack and execution context is
  89. * used here. Keep processing in the callback minimal to reduce the time spent
  90. * blocked while handling packets.
  91. *
  92. * @param context The context to use.
  93. * @param status Value is set to >= 0: amount of data that was sent,
  94. * < 0 there was an error sending data.
  95. * @param user_data The user data given in net_send() call.
  96. */
  97. typedef void (*net_context_send_cb_t)(struct net_context *context,
  98. int status,
  99. void *user_data);
  100. /**
  101. * @typedef net_tcp_accept_cb_t
  102. * @brief Accept callback
  103. *
  104. * @details The accept callback is called after a successful connection was
  105. * established or if there was an error while we were waiting for a connection
  106. * attempt. This callback is called by RX thread so its stack and execution
  107. * context is used here. Keep processing in the callback minimal to reduce the
  108. * time spent blocked while handling packets.
  109. *
  110. * @param new_context The context to use.
  111. * @param addr The peer address.
  112. * @param addrlen Length of the peer address.
  113. * @param status The status code, 0 on success, < 0 otherwise
  114. * @param user_data The user data given in net_context_accept() call.
  115. */
  116. typedef void (*net_tcp_accept_cb_t)(struct net_context *new_context,
  117. struct sockaddr *addr,
  118. socklen_t addrlen,
  119. int status,
  120. void *user_data);
  121. /**
  122. * @typedef net_context_connect_cb_t
  123. * @brief Connection callback.
  124. *
  125. * @details The connect callback is called after a connection is being
  126. * established.
  127. * For TCP connections, this callback is called by RX thread so its stack and
  128. * execution context is used here. The callback is called after the TCP
  129. * connection was established or if the connection failed. Keep processing in
  130. * the callback minimal to reduce the time spent blocked while handling
  131. * packets.
  132. * For UDP connections, this callback is called immediately by
  133. * net_context_connect() function. UDP is a connectionless protocol so the
  134. * connection can be thought of being established immediately.
  135. *
  136. * @param context The context to use.
  137. * @param status Status of the connection establishment. This is 0
  138. * if the connection was established successfully, <0 if there was an
  139. * error.
  140. * @param user_data The user data given in net_context_connect() call.
  141. */
  142. typedef void (*net_context_connect_cb_t)(struct net_context *context,
  143. int status,
  144. void *user_data);
  145. /* The net_pkt_get_slab_func_t is here in order to avoid circular
  146. * dependency between net_pkt.h and net_context.h
  147. */
  148. /**
  149. * @typedef net_pkt_get_slab_func_t
  150. *
  151. * @brief Function that is called to get the slab that is used
  152. * for net_pkt allocations.
  153. *
  154. * @return Pointer to valid struct k_mem_slab instance.
  155. */
  156. typedef struct k_mem_slab *(*net_pkt_get_slab_func_t)(void);
  157. /* The net_pkt_get_pool_func_t is here in order to avoid circular
  158. * dependency between net_pkt.h and net_context.h
  159. */
  160. /**
  161. * @typedef net_pkt_get_pool_func_t
  162. *
  163. * @brief Function that is called to get the pool that is used
  164. * for net_buf allocations.
  165. *
  166. * @return Pointer to valid struct net_buf_pool instance.
  167. */
  168. typedef struct net_buf_pool *(*net_pkt_get_pool_func_t)(void);
  169. struct net_tcp;
  170. struct net_conn_handle;
  171. /**
  172. * Note that we do not store the actual source IP address in the context
  173. * because the address is already be set in the network interface struct.
  174. * If there is no such source address there, the packet cannot be sent
  175. * anyway. This saves 12 bytes / context in IPv6.
  176. */
  177. __net_socket struct net_context {
  178. /** User data.
  179. *
  180. * First member of the structure to let users either have user data
  181. * associated with a context, or put contexts into a FIFO.
  182. */
  183. void *user_data;
  184. /** Reference count
  185. */
  186. atomic_t refcount;
  187. /** Internal lock for protecting this context from multiple access.
  188. */
  189. struct k_mutex lock;
  190. /** Local endpoint address. Note that the values are in network byte
  191. * order.
  192. */
  193. struct sockaddr_ptr local;
  194. /** Remote endpoint address. Note that the values are in network byte
  195. * order.
  196. */
  197. struct sockaddr remote;
  198. /** Connection handle */
  199. struct net_conn_handle *conn_handler;
  200. /** Receive callback to be called when desired packet
  201. * has been received.
  202. */
  203. net_context_recv_cb_t recv_cb;
  204. /** Send callback to be called when the packet has been sent
  205. * successfully.
  206. */
  207. net_context_send_cb_t send_cb;
  208. /** Connect callback to be called when a connection has been
  209. * established.
  210. */
  211. net_context_connect_cb_t connect_cb;
  212. #if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
  213. /** Get TX net_buf pool for this context.
  214. */
  215. net_pkt_get_slab_func_t tx_slab;
  216. /** Get DATA net_buf pool for this context.
  217. */
  218. net_pkt_get_pool_func_t data_pool;
  219. #endif /* CONFIG_NET_CONTEXT_NET_PKT_POOL */
  220. #if defined(CONFIG_NET_TCP2)
  221. /** TCP connection information */
  222. void *tcp;
  223. #endif /* CONFIG_NET_TCP2 */
  224. #if defined(CONFIG_NET_CONTEXT_SYNC_RECV)
  225. /**
  226. * Semaphore to signal synchronous recv call completion.
  227. */
  228. struct k_sem recv_data_wait;
  229. #endif /* CONFIG_NET_CONTEXT_SYNC_RECV */
  230. #if defined(CONFIG_NET_SOCKETS)
  231. /** BSD socket private data */
  232. void *socket_data;
  233. /** Per-socket packet or connection queues */
  234. union {
  235. struct k_fifo recv_q;
  236. struct k_fifo accept_q;
  237. };
  238. struct {
  239. /** Condition variable used when receiving data */
  240. struct k_condvar recv;
  241. /** Mutex used by condition variable */
  242. struct k_mutex *lock;
  243. } cond;
  244. #endif /* CONFIG_NET_SOCKETS */
  245. #if defined(CONFIG_NET_OFFLOAD)
  246. /** context for use by offload drivers */
  247. void *offload_context;
  248. #endif /* CONFIG_NET_OFFLOAD */
  249. #if defined(CONFIG_NET_SOCKETS_CAN)
  250. int can_filter_id;
  251. #endif /* CONFIG_NET_SOCKETS_CAN */
  252. /** Option values */
  253. struct {
  254. #if defined(CONFIG_NET_CONTEXT_PRIORITY)
  255. /** Priority of the network data sent via this net_context */
  256. uint8_t priority;
  257. #endif
  258. #if defined(CONFIG_NET_CONTEXT_TXTIME)
  259. bool txtime;
  260. #endif
  261. #if defined(CONFIG_SOCKS)
  262. struct {
  263. struct sockaddr addr;
  264. socklen_t addrlen;
  265. } proxy;
  266. #endif
  267. #if defined(CONFIG_NET_CONTEXT_RCVTIMEO)
  268. k_timeout_t rcvtimeo;
  269. #endif
  270. #if defined(CONFIG_NET_CONTEXT_SNDTIMEO)
  271. k_timeout_t sndtimeo;
  272. #endif
  273. } options;
  274. /** Protocol (UDP, TCP or IEEE 802.3 protocol value) */
  275. uint16_t proto;
  276. /** Flags for the context */
  277. uint16_t flags;
  278. /** Network interface assigned to this context */
  279. int8_t iface;
  280. /** IPv6 hop limit or IPv4 ttl for packets sent via this context. */
  281. union {
  282. uint8_t ipv6_hop_limit;
  283. uint8_t ipv4_ttl;
  284. };
  285. #if defined(CONFIG_SOCKS)
  286. bool proxy_enabled;
  287. #endif
  288. };
  289. static inline bool net_context_is_used(struct net_context *context)
  290. {
  291. NET_ASSERT(context);
  292. return context->flags & NET_CONTEXT_IN_USE;
  293. }
  294. static inline bool net_context_is_bound_to_iface(struct net_context *context)
  295. {
  296. NET_ASSERT(context);
  297. return context->flags & NET_CONTEXT_BOUND_TO_IFACE;
  298. }
  299. /**
  300. * @brief Is this context is accepting data now.
  301. *
  302. * @param context Network context.
  303. *
  304. * @return True if the context is accepting connections, False otherwise.
  305. */
  306. static inline bool net_context_is_accepting(struct net_context *context)
  307. {
  308. NET_ASSERT(context);
  309. return context->flags & NET_CONTEXT_ACCEPTING_SOCK;
  310. }
  311. /**
  312. * @brief Set this context to accept data now.
  313. *
  314. * @param context Network context.
  315. * @param accepting True if accepting, False if not
  316. */
  317. static inline void net_context_set_accepting(struct net_context *context,
  318. bool accepting)
  319. {
  320. NET_ASSERT(context);
  321. if (accepting) {
  322. context->flags |= NET_CONTEXT_ACCEPTING_SOCK;
  323. } else {
  324. context->flags &= ~NET_CONTEXT_ACCEPTING_SOCK;
  325. }
  326. }
  327. /**
  328. * @brief Is this context closing.
  329. *
  330. * @param context Network context.
  331. *
  332. * @return True if the context is closing, False otherwise.
  333. */
  334. static inline bool net_context_is_closing(struct net_context *context)
  335. {
  336. NET_ASSERT(context);
  337. return context->flags & NET_CONTEXT_CLOSING_SOCK;
  338. }
  339. /**
  340. * @brief Set this context to closing.
  341. *
  342. * @param context Network context.
  343. * @param closing True if closing, False if not
  344. */
  345. static inline void net_context_set_closing(struct net_context *context,
  346. bool closing)
  347. {
  348. NET_ASSERT(context);
  349. if (closing) {
  350. context->flags |= NET_CONTEXT_CLOSING_SOCK;
  351. } else {
  352. context->flags &= ~NET_CONTEXT_CLOSING_SOCK;
  353. }
  354. }
  355. #define NET_CONTEXT_STATE_SHIFT 1
  356. #define NET_CONTEXT_STATE_MASK 0x03
  357. /**
  358. * @brief Get state for this network context.
  359. *
  360. * @details This function returns the state of the context.
  361. *
  362. * @param context Network context.
  363. *
  364. * @return Network state.
  365. */
  366. static inline
  367. enum net_context_state net_context_get_state(struct net_context *context)
  368. {
  369. NET_ASSERT(context);
  370. return (enum net_context_state)
  371. ((context->flags >> NET_CONTEXT_STATE_SHIFT) &
  372. NET_CONTEXT_STATE_MASK);
  373. }
  374. /**
  375. * @brief Set state for this network context.
  376. *
  377. * @details This function sets the state of the context.
  378. *
  379. * @param context Network context.
  380. * @param state New network context state.
  381. */
  382. static inline void net_context_set_state(struct net_context *context,
  383. enum net_context_state state)
  384. {
  385. NET_ASSERT(context);
  386. context->flags &= ~(NET_CONTEXT_STATE_MASK << NET_CONTEXT_STATE_SHIFT);
  387. context->flags |= ((state & NET_CONTEXT_STATE_MASK) <<
  388. NET_CONTEXT_STATE_SHIFT);
  389. }
  390. /**
  391. * @brief Get address family for this network context.
  392. *
  393. * @details This function returns the address family (IPv4 or IPv6)
  394. * of the context.
  395. *
  396. * @param context Network context.
  397. *
  398. * @return Network state.
  399. */
  400. static inline sa_family_t net_context_get_family(struct net_context *context)
  401. {
  402. NET_ASSERT(context);
  403. return ((context->flags & NET_CONTEXT_FAMILY) >> 3);
  404. }
  405. /**
  406. * @brief Set address family for this network context.
  407. *
  408. * @details This function sets the address family (IPv4, IPv6 or AF_PACKET)
  409. * of the context.
  410. *
  411. * @param context Network context.
  412. * @param family Address family (AF_INET, AF_INET6, AF_PACKET, AF_CAN)
  413. */
  414. static inline void net_context_set_family(struct net_context *context,
  415. sa_family_t family)
  416. {
  417. uint8_t flag = 0U;
  418. NET_ASSERT(context);
  419. if (family == AF_UNSPEC || family == AF_INET || family == AF_INET6 ||
  420. family == AF_PACKET || family == AF_CAN) {
  421. /* Family is in BIT(4), BIT(5) and BIT(6) */
  422. flag = family << 3;
  423. }
  424. context->flags |= flag;
  425. }
  426. /**
  427. * @brief Get context type for this network context.
  428. *
  429. * @details This function returns the context type (stream, datagram or raw)
  430. * of the context.
  431. *
  432. * @param context Network context.
  433. *
  434. * @return Network context type.
  435. */
  436. static inline
  437. enum net_sock_type net_context_get_type(struct net_context *context)
  438. {
  439. NET_ASSERT(context);
  440. return (enum net_sock_type)((context->flags & NET_CONTEXT_TYPE) >> 6);
  441. }
  442. /**
  443. * @brief Set context type for this network context.
  444. *
  445. * @details This function sets the context type (stream or datagram)
  446. * of the context.
  447. *
  448. * @param context Network context.
  449. * @param type Context type (SOCK_STREAM or SOCK_DGRAM)
  450. */
  451. static inline void net_context_set_type(struct net_context *context,
  452. enum net_sock_type type)
  453. {
  454. uint16_t flag = 0U;
  455. NET_ASSERT(context);
  456. if (type == SOCK_DGRAM || type == SOCK_STREAM || type == SOCK_RAW) {
  457. /* Type is in BIT(6) and BIT(7)*/
  458. flag = type << 6;
  459. }
  460. context->flags |= flag;
  461. }
  462. /**
  463. * @brief Set CAN filter id for this network context.
  464. *
  465. * @details This function sets the CAN filter id of the context.
  466. *
  467. * @param context Network context.
  468. * @param filter_id CAN filter id
  469. */
  470. #if defined(CONFIG_NET_SOCKETS_CAN)
  471. static inline void net_context_set_filter_id(struct net_context *context,
  472. int filter_id)
  473. {
  474. NET_ASSERT(context);
  475. context->can_filter_id = filter_id;
  476. }
  477. #else
  478. static inline void net_context_set_filter_id(struct net_context *context,
  479. int filter_id)
  480. {
  481. ARG_UNUSED(context);
  482. ARG_UNUSED(filter_id);
  483. }
  484. #endif
  485. /**
  486. * @brief Get CAN filter id for this network context.
  487. *
  488. * @details This function gets the CAN filter id of the context.
  489. *
  490. * @param context Network context.
  491. *
  492. * @return Filter id of this network context
  493. */
  494. #if defined(CONFIG_NET_SOCKETS_CAN)
  495. static inline int net_context_get_filter_id(struct net_context *context)
  496. {
  497. NET_ASSERT(context);
  498. return context->can_filter_id;
  499. }
  500. #else
  501. static inline int net_context_get_filter_id(struct net_context *context)
  502. {
  503. ARG_UNUSED(context);
  504. return -1;
  505. }
  506. #endif
  507. /**
  508. * @brief Get context IP protocol for this network context.
  509. *
  510. * @details This function returns the IP protocol (UDP / TCP /
  511. * IEEE 802.3 protocol value) of the context.
  512. *
  513. * @param context Network context.
  514. *
  515. * @return Network context IP protocol.
  516. */
  517. static inline uint16_t net_context_get_ip_proto(struct net_context *context)
  518. {
  519. return context->proto;
  520. }
  521. /**
  522. * @brief Set context IP protocol for this network context.
  523. *
  524. * @details This function sets the context IP protocol (UDP / TCP)
  525. * of the context.
  526. *
  527. * @param context Network context.
  528. * @param proto Context IP protocol (IPPROTO_UDP, IPPROTO_TCP or IEEE 802.3
  529. * protocol value)
  530. */
  531. static inline void net_context_set_ip_proto(struct net_context *context,
  532. uint16_t proto)
  533. {
  534. context->proto = proto;
  535. }
  536. /**
  537. * @brief Get network interface for this context.
  538. *
  539. * @details This function returns the used network interface.
  540. *
  541. * @param context Network context.
  542. *
  543. * @return Context network interface if context is bind to interface,
  544. * NULL otherwise.
  545. */
  546. static inline
  547. struct net_if *net_context_get_iface(struct net_context *context)
  548. {
  549. NET_ASSERT(context);
  550. return net_if_get_by_index(context->iface);
  551. }
  552. /**
  553. * @brief Set network interface for this context.
  554. *
  555. * @details This function binds network interface to this context.
  556. *
  557. * @param context Network context.
  558. * @param iface Network interface.
  559. */
  560. static inline void net_context_set_iface(struct net_context *context,
  561. struct net_if *iface)
  562. {
  563. NET_ASSERT(iface);
  564. context->iface = net_if_get_by_iface(iface);
  565. }
  566. static inline uint8_t net_context_get_ipv4_ttl(struct net_context *context)
  567. {
  568. return context->ipv4_ttl;
  569. }
  570. static inline void net_context_set_ipv4_ttl(struct net_context *context,
  571. uint8_t ttl)
  572. {
  573. context->ipv4_ttl = ttl;
  574. }
  575. static inline uint8_t net_context_get_ipv6_hop_limit(struct net_context *context)
  576. {
  577. return context->ipv6_hop_limit;
  578. }
  579. static inline void net_context_set_ipv6_hop_limit(struct net_context *context,
  580. uint8_t hop_limit)
  581. {
  582. context->ipv6_hop_limit = hop_limit;
  583. }
  584. #if defined(CONFIG_SOCKS)
  585. static inline void net_context_set_proxy_enabled(struct net_context *context,
  586. bool enable)
  587. {
  588. context->proxy_enabled = enable;
  589. }
  590. static inline bool net_context_is_proxy_enabled(struct net_context *context)
  591. {
  592. return context->proxy_enabled;
  593. }
  594. #else
  595. static inline void net_context_set_proxy_enabled(struct net_context *context,
  596. bool enable)
  597. {
  598. ARG_UNUSED(context);
  599. ARG_UNUSED(enable);
  600. }
  601. static inline bool net_context_is_proxy_enabled(struct net_context *context)
  602. {
  603. return false;
  604. }
  605. #endif
  606. /**
  607. * @brief Get network context.
  608. *
  609. * @details Network context is used to define the connection 5-tuple
  610. * (protocol, remote address, remote port, source address and source
  611. * port). Random free port number will be assigned to source port when
  612. * context is created. This is similar as BSD socket() function.
  613. * The context will be created with a reference count of 1.
  614. *
  615. * @param family IP address family (AF_INET or AF_INET6)
  616. * @param type Type of the socket, SOCK_STREAM or SOCK_DGRAM
  617. * @param ip_proto IP protocol, IPPROTO_UDP or IPPROTO_TCP. For raw socket
  618. * access, the value is the L2 protocol value from IEEE 802.3 (see ethernet.h)
  619. * @param context The allocated context is returned to the caller.
  620. *
  621. * @return 0 if ok, < 0 if error
  622. */
  623. int net_context_get(sa_family_t family,
  624. enum net_sock_type type,
  625. uint16_t ip_proto,
  626. struct net_context **context);
  627. /**
  628. * @brief Close and unref a network context.
  629. *
  630. * @details This releases the context. It is not possible to send or
  631. * receive data via this context after this call. This is similar as
  632. * BSD shutdown() function. For legacy compatibility, this function
  633. * will implicitly decrement the reference count and possibly destroy
  634. * the context either now or when it reaches a final state.
  635. *
  636. * @param context The context to be closed.
  637. *
  638. * @return 0 if ok, < 0 if error
  639. */
  640. int net_context_put(struct net_context *context);
  641. /**
  642. * @brief Take a reference count to a net_context, preventing destruction
  643. *
  644. * @details Network contexts are not recycled until their reference
  645. * count reaches zero. Note that this does not prevent any "close"
  646. * behavior that results from errors or net_context_put. It simply
  647. * prevents the context from being recycled for further use.
  648. *
  649. * @param context The context on which to increment the reference count
  650. *
  651. * @return The new reference count
  652. */
  653. int net_context_ref(struct net_context *context);
  654. /**
  655. * @brief Decrement the reference count to a network context
  656. *
  657. * @details Decrements the refcount. If it reaches zero, the context
  658. * will be recycled. Note that this does not cause any
  659. * network-visible "close" behavior (i.e. future packets to this
  660. * connection may see TCP RST or ICMP port unreachable responses). See
  661. * net_context_put() for that.
  662. *
  663. * @param context The context on which to decrement the reference count
  664. *
  665. * @return The new reference count, zero if the context was destroyed
  666. */
  667. int net_context_unref(struct net_context *context);
  668. /**
  669. * @brief Create IPv4 packet in provided net_pkt from context
  670. *
  671. * @param context Network context for a connection
  672. * @param pkt Network packet
  673. * @param src Source address, or NULL to choose a default
  674. * @param dst Destination IPv4 address
  675. *
  676. * @return Return 0 on success, negative errno otherwise.
  677. */
  678. #if defined(CONFIG_NET_IPV4)
  679. int net_context_create_ipv4_new(struct net_context *context,
  680. struct net_pkt *pkt,
  681. const struct in_addr *src,
  682. const struct in_addr *dst);
  683. #else
  684. static inline int net_context_create_ipv4_new(struct net_context *context,
  685. struct net_pkt *pkt,
  686. const struct in_addr *src,
  687. const struct in_addr *dst)
  688. {
  689. return -1;
  690. }
  691. #endif /* CONFIG_NET_IPV4 */
  692. /**
  693. * @brief Create IPv6 packet in provided net_pkt from context
  694. *
  695. * @param context Network context for a connection
  696. * @param pkt Network packet
  697. * @param src Source address, or NULL to choose a default from context
  698. * @param dst Destination IPv6 address
  699. *
  700. * @return Return 0 on success, negative errno otherwise.
  701. */
  702. #if defined(CONFIG_NET_IPV6)
  703. int net_context_create_ipv6_new(struct net_context *context,
  704. struct net_pkt *pkt,
  705. const struct in6_addr *src,
  706. const struct in6_addr *dst);
  707. #else
  708. static inline int net_context_create_ipv6_new(struct net_context *context,
  709. struct net_pkt *pkt,
  710. const struct in6_addr *src,
  711. const struct in6_addr *dst)
  712. {
  713. return -1;
  714. }
  715. #endif /* CONFIG_NET_IPV6 */
  716. /**
  717. * @brief Assign a socket a local address.
  718. *
  719. * @details This is similar as BSD bind() function.
  720. *
  721. * @param context The context to be assigned.
  722. * @param addr Address to assigned.
  723. * @param addrlen Length of the address.
  724. *
  725. * @return 0 if ok, < 0 if error
  726. */
  727. int net_context_bind(struct net_context *context,
  728. const struct sockaddr *addr,
  729. socklen_t addrlen);
  730. /**
  731. * @brief Mark the context as a listening one.
  732. *
  733. * @details This is similar as BSD listen() function.
  734. *
  735. * @param context The context to use.
  736. * @param backlog The size of the pending connections backlog.
  737. *
  738. * @return 0 if ok, < 0 if error
  739. */
  740. int net_context_listen(struct net_context *context,
  741. int backlog);
  742. /**
  743. * @brief Create a network connection.
  744. *
  745. * @details The net_context_connect function creates a network
  746. * connection to the host specified by addr. After the
  747. * connection is established, the user-supplied callback (cb)
  748. * is executed. cb is called even if the timeout was set to
  749. * K_FOREVER. cb is not called if the timeout expires.
  750. * For datagram sockets (SOCK_DGRAM), this function only sets
  751. * the peer address.
  752. * This function is similar to the BSD connect() function.
  753. *
  754. * @param context The network context.
  755. * @param addr The peer address to connect to.
  756. * @param addrlen Peer address length.
  757. * @param cb Callback function. Set to NULL if not required.
  758. * @param timeout The timeout value for the connection. Possible values:
  759. * * K_NO_WAIT: this function will return immediately,
  760. * * K_FOREVER: this function will block until the
  761. * connection is established,
  762. * * >0: this function will wait the specified ms.
  763. * @param user_data Data passed to the callback function.
  764. *
  765. * @return 0 on success.
  766. * @return -EINVAL if an invalid parameter is passed as an argument.
  767. * @return -ENOTSUP if the operation is not supported or implemented.
  768. * @return -ETIMEDOUT if the connect operation times out.
  769. */
  770. int net_context_connect(struct net_context *context,
  771. const struct sockaddr *addr,
  772. socklen_t addrlen,
  773. net_context_connect_cb_t cb,
  774. k_timeout_t timeout,
  775. void *user_data);
  776. /**
  777. * @brief Accept a network connection attempt.
  778. *
  779. * @details Accept a connection being established. This function
  780. * will return immediately if the timeout is set to K_NO_WAIT.
  781. * In this case the context will call the supplied callback when ever
  782. * there is a connection established to this context. This is "a register
  783. * handler and forget" type of call (async).
  784. * If the timeout is set to K_FOREVER, the function will wait
  785. * until the connection is established. Timeout value > 0, will wait as
  786. * many ms.
  787. * After the connection is established a caller-supplied callback is called.
  788. * The callback is called even if timeout was set to K_FOREVER, the
  789. * callback is called before this function will return in this case.
  790. * The callback is not called if the timeout expires.
  791. * This is similar as BSD accept() function.
  792. *
  793. * @param context The context to use.
  794. * @param cb Caller-supplied callback function.
  795. * @param timeout Timeout for the connection. Possible values
  796. * are K_FOREVER, K_NO_WAIT, >0.
  797. * @param user_data Caller-supplied user data.
  798. *
  799. * @return 0 if ok, < 0 if error
  800. */
  801. int net_context_accept(struct net_context *context,
  802. net_tcp_accept_cb_t cb,
  803. k_timeout_t timeout,
  804. void *user_data);
  805. /**
  806. * @brief Send data to a peer.
  807. *
  808. * @details This function can be used to send network data to a peer
  809. * connection. After the network buffer is sent, a caller-supplied
  810. * callback is called. Note that the callback might be called after this
  811. * function has returned. For context of type SOCK_DGRAM, the destination
  812. * address must have been set by the call to net_context_connect().
  813. * This is similar as BSD send() function.
  814. *
  815. * @param context The network context to use.
  816. * @param buf The data buffer to send
  817. * @param len Length of the buffer
  818. * @param cb Caller-supplied callback function.
  819. * @param timeout Currently this value is not used.
  820. * @param user_data Caller-supplied user data.
  821. *
  822. * @return 0 if ok, < 0 if error
  823. */
  824. int net_context_send(struct net_context *context,
  825. const void *buf,
  826. size_t len,
  827. net_context_send_cb_t cb,
  828. k_timeout_t timeout,
  829. void *user_data);
  830. /**
  831. * @brief Send data to a peer specified by address.
  832. *
  833. * @details This function can be used to send network data to a peer
  834. * specified by address. This variant can only be used for datagram
  835. * connections of type SOCK_DGRAM. After the network buffer is sent,
  836. * a caller-supplied callback is called. Note that the callback might be
  837. * called after this function has returned.
  838. * This is similar as BSD sendto() function.
  839. *
  840. * @param context The network context to use.
  841. * @param buf The data buffer to send
  842. * @param len Length of the buffer
  843. * @param dst_addr Destination address.
  844. * @param addrlen Length of the address.
  845. * @param cb Caller-supplied callback function.
  846. * @param timeout Currently this value is not used.
  847. * @param user_data Caller-supplied user data.
  848. *
  849. * @return numbers of bytes sent on success, a negative errno otherwise
  850. */
  851. int net_context_sendto(struct net_context *context,
  852. const void *buf,
  853. size_t len,
  854. const struct sockaddr *dst_addr,
  855. socklen_t addrlen,
  856. net_context_send_cb_t cb,
  857. k_timeout_t timeout,
  858. void *user_data);
  859. /**
  860. * @brief Send data in iovec to a peer specified in msghdr struct.
  861. *
  862. * @details This function has similar semantics as Posix sendmsg() call.
  863. * For unconnected socket, the msg_name field in msghdr must be set. For
  864. * connected socket the msg_name should be set to NULL, and msg_namelen to 0.
  865. * After the network buffer is sent, a caller-supplied callback is called.
  866. * Note that the callback might be called after this function has returned.
  867. *
  868. * @param context The network context to use.
  869. * @param msghdr The data to send
  870. * @param flags Flags for the sending.
  871. * @param cb Caller-supplied callback function.
  872. * @param timeout Currently this value is not used.
  873. * @param user_data Caller-supplied user data.
  874. *
  875. * @return numbers of bytes sent on success, a negative errno otherwise
  876. */
  877. int net_context_sendmsg(struct net_context *context,
  878. const struct msghdr *msghdr,
  879. int flags,
  880. net_context_send_cb_t cb,
  881. k_timeout_t timeout,
  882. void *user_data);
  883. /**
  884. * @brief Receive network data from a peer specified by context.
  885. *
  886. * @details This function can be used to register a callback function
  887. * that is called by the network stack when network data has been received
  888. * for this context. As this function registers a callback, then there
  889. * is no need to call this function multiple times if timeout is set to
  890. * K_NO_WAIT.
  891. * If callback function or user data changes, then the function can be called
  892. * multiple times to register new values.
  893. * This function will return immediately if the timeout is set to K_NO_WAIT.
  894. * If the timeout is set to K_FOREVER, the function will wait until the
  895. * network buffer is received. Timeout value > 0 will wait as many ms.
  896. * After the network buffer is received, a caller-supplied callback is
  897. * called. The callback is called even if timeout was set to K_FOREVER,
  898. * the callback is called before this function will return in this case.
  899. * The callback is not called if the timeout expires. The timeout functionality
  900. * can be compiled out if synchronous behavior is not needed. The sync call
  901. * logic requires some memory that can be saved if only async way of call is
  902. * used. If CONFIG_NET_CONTEXT_SYNC_RECV is not set, then the timeout parameter
  903. * value is ignored.
  904. * This is similar as BSD recv() function.
  905. * Note that net_context_bind() should be called before net_context_recv().
  906. * Default random port number is assigned to local port. Only bind() will
  907. * update connection information from context. If recv() is called before
  908. * bind() call, it may refuse to bind to a context which already has
  909. * a connection associated.
  910. *
  911. * @param context The network context to use.
  912. * @param cb Caller-supplied callback function.
  913. * @param timeout Caller-supplied timeout. Possible values
  914. * are K_FOREVER, K_NO_WAIT, >0.
  915. * @param user_data Caller-supplied user data.
  916. *
  917. * @return 0 if ok, < 0 if error
  918. */
  919. int net_context_recv(struct net_context *context,
  920. net_context_recv_cb_t cb,
  921. k_timeout_t timeout,
  922. void *user_data);
  923. /**
  924. * @brief Update TCP receive window for context.
  925. *
  926. * @details This function should be used by an application which
  927. * doesn't fully process incoming data in its receive callback,
  928. * but for example, queues it. In this case, receive callback
  929. * should decrease the window (call this function with a negative
  930. * value) by the size of queued data, and function(s) which dequeue
  931. * data - with positive value corresponding to the dequeued size.
  932. * For example, if receive callback gets a packet with the data
  933. * size of 256 and queues it, it should call this function with
  934. * delta of -256. If a function extracts 10 bytes of the queued
  935. * data, it should call it with delta of 10.
  936. *
  937. * @param context The TCP network context to use.
  938. * @param delta Size, in bytes, by which to increase TCP receive
  939. * window (negative value to decrease).
  940. *
  941. * @return 0 if ok, < 0 if error
  942. */
  943. int net_context_update_recv_wnd(struct net_context *context,
  944. int32_t delta);
  945. enum net_context_option {
  946. NET_OPT_PRIORITY = 1,
  947. NET_OPT_TXTIME = 2,
  948. NET_OPT_SOCKS5 = 3,
  949. NET_OPT_RCVTIMEO = 4,
  950. NET_OPT_SNDTIMEO = 5,
  951. };
  952. /**
  953. * @brief Set an connection option for this context.
  954. *
  955. * @param context The network context to use.
  956. * @param option Option to set
  957. * @param value Option value
  958. * @param len Option length
  959. *
  960. * @return 0 if ok, <0 if error
  961. */
  962. int net_context_set_option(struct net_context *context,
  963. enum net_context_option option,
  964. const void *value, size_t len);
  965. /**
  966. * @brief Get connection option value for this context.
  967. *
  968. * @param context The network context to use.
  969. * @param option Option to set
  970. * @param value Option value
  971. * @param len Option length (returned to caller)
  972. *
  973. * @return 0 if ok, <0 if error
  974. */
  975. int net_context_get_option(struct net_context *context,
  976. enum net_context_option option,
  977. void *value, size_t *len);
  978. /**
  979. * @typedef net_context_cb_t
  980. * @brief Callback used while iterating over network contexts
  981. *
  982. * @param context A valid pointer on current network context
  983. * @param user_data A valid pointer on some user data or NULL
  984. */
  985. typedef void (*net_context_cb_t)(struct net_context *context, void *user_data);
  986. /**
  987. * @brief Go through all the network connections and call callback
  988. * for each network context.
  989. *
  990. * @param cb User-supplied callback function to call.
  991. * @param user_data User specified data.
  992. */
  993. void net_context_foreach(net_context_cb_t cb, void *user_data);
  994. /**
  995. * @brief Set custom network buffer pools for context send operations
  996. *
  997. * Set custom network buffer pools used by the IP stack to allocate
  998. * network buffers used by the context when sending data to the
  999. * network. Using dedicated buffers may help make send operations on
  1000. * a given context more reliable, e.g. not be subject to buffer
  1001. * starvation due to operations on other network contexts. Buffer pools
  1002. * are set per context, but several contexts may share the same buffers.
  1003. * Note that there's no support for per-context custom receive packet
  1004. * pools.
  1005. *
  1006. * @param context Context that will use the given net_buf pools.
  1007. * @param tx_pool Pointer to the function that will return TX pool
  1008. * to the caller. The TX pool is used when sending data to network.
  1009. * There is one TX net_pkt for each network packet that is sent.
  1010. * @param data_pool Pointer to the function that will return DATA pool
  1011. * to the caller. The DATA pool is used to store data that is sent to
  1012. * the network.
  1013. */
  1014. #if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
  1015. static inline void net_context_setup_pools(struct net_context *context,
  1016. net_pkt_get_slab_func_t tx_slab,
  1017. net_pkt_get_pool_func_t data_pool)
  1018. {
  1019. NET_ASSERT(context);
  1020. context->tx_slab = tx_slab;
  1021. context->data_pool = data_pool;
  1022. }
  1023. #else
  1024. #define net_context_setup_pools(context, tx_pool, data_pool)
  1025. #endif
  1026. /**
  1027. * @brief Check if a port is in use (bound)
  1028. *
  1029. * This function checks if a port is bound with respect to the specified
  1030. * @p ip_proto and @p local_addr.
  1031. *
  1032. * @param ip_proto the IP protocol
  1033. * @param local_port the port to check
  1034. * @param local_addr the network address
  1035. *
  1036. * @return true if the port is bound
  1037. * @return false if the port is not bound
  1038. */
  1039. bool net_context_port_in_use(enum net_ip_protocol ip_proto,
  1040. uint16_t local_port, const struct sockaddr *local_addr);
  1041. #ifdef __cplusplus
  1042. }
  1043. #endif
  1044. /**
  1045. * @}
  1046. */
  1047. #endif /* ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_ */