net_ip.h 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556
  1. /** @file
  2. * @brief IPv6 and IPv4 definitions
  3. *
  4. * Generic IPv6 and IPv4 address definitions.
  5. */
  6. /*
  7. * Copyright (c) 2016 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_NET_IP_H_
  12. #define ZEPHYR_INCLUDE_NET_NET_IP_H_
  13. /**
  14. * @brief IPv4/IPv6 primitives and helpers
  15. * @defgroup ip_4_6 IPv4/IPv6 primitives and helpers
  16. * @ingroup networking
  17. * @{
  18. */
  19. #include <string.h>
  20. #include <zephyr/types.h>
  21. #include <stdbool.h>
  22. #include <sys/util.h>
  23. #include <sys/byteorder.h>
  24. #include <toolchain.h>
  25. #include <net/net_linkaddr.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /** @cond INTERNAL_HIDDEN */
  30. /* Specifying VLAN tag here in order to avoid circular dependencies */
  31. #define NET_VLAN_TAG_UNSPEC 0x0fff
  32. /** @endcond */
  33. /* Protocol families. */
  34. #define PF_UNSPEC 0 /**< Unspecified protocol family. */
  35. #define PF_INET 1 /**< IP protocol family version 4. */
  36. #define PF_INET6 2 /**< IP protocol family version 6. */
  37. #define PF_PACKET 3 /**< Packet family. */
  38. #define PF_CAN 4 /**< Controller Area Network. */
  39. #define PF_NET_MGMT 5 /**< Network management info. */
  40. #define PF_LOCAL 6 /**< Inter-process communication */
  41. #define PF_UNIX PF_LOCAL /**< Inter-process communication */
  42. /* Address families. */
  43. #define AF_UNSPEC PF_UNSPEC /**< Unspecified address family. */
  44. #define AF_INET PF_INET /**< IP protocol family version 4. */
  45. #define AF_INET6 PF_INET6 /**< IP protocol family version 6. */
  46. #define AF_PACKET PF_PACKET /**< Packet family. */
  47. #define AF_CAN PF_CAN /**< Controller Area Network. */
  48. #define AF_NET_MGMT PF_NET_MGMT /**< Network management info. */
  49. #define AF_LOCAL PF_LOCAL /**< Inter-process communication */
  50. #define AF_UNIX PF_UNIX /**< Inter-process communication */
  51. /** Protocol numbers from IANA/BSD */
  52. enum net_ip_protocol {
  53. IPPROTO_IP = 0, /**< IP protocol (pseudo-val for setsockopt() */
  54. IPPROTO_ICMP = 1, /**< ICMP protocol */
  55. IPPROTO_IGMP = 2, /**< IGMP protocol */
  56. IPPROTO_IPIP = 4, /**< IPIP tunnels */
  57. IPPROTO_TCP = 6, /**< TCP protocol */
  58. IPPROTO_UDP = 17, /**< UDP protocol */
  59. IPPROTO_IPV6 = 41, /**< IPv6 protocol */
  60. IPPROTO_ICMPV6 = 58, /**< ICMPv6 protocol */
  61. IPPROTO_RAW = 255, /**< RAW IP packets */
  62. };
  63. /** Protocol numbers for TLS protocols */
  64. enum net_ip_protocol_secure {
  65. IPPROTO_TLS_1_0 = 256, /**< TLS 1.0 protocol */
  66. IPPROTO_TLS_1_1 = 257, /**< TLS 1.1 protocol */
  67. IPPROTO_TLS_1_2 = 258, /**< TLS 1.2 protocol */
  68. IPPROTO_DTLS_1_0 = 272, /**< DTLS 1.0 protocol */
  69. IPPROTO_DTLS_1_2 = 273, /**< DTLS 1.2 protocol */
  70. };
  71. /** Socket type */
  72. enum net_sock_type {
  73. SOCK_STREAM = 1, /**< Stream socket type */
  74. SOCK_DGRAM, /**< Datagram socket type */
  75. SOCK_RAW /**< RAW socket type */
  76. };
  77. /** @brief Convert 16-bit value from network to host byte order.
  78. *
  79. * @param x The network byte order value to convert.
  80. *
  81. * @return Host byte order value.
  82. */
  83. #define ntohs(x) sys_be16_to_cpu(x)
  84. /** @brief Convert 32-bit value from network to host byte order.
  85. *
  86. * @param x The network byte order value to convert.
  87. *
  88. * @return Host byte order value.
  89. */
  90. #define ntohl(x) sys_be32_to_cpu(x)
  91. /** @brief Convert 64-bit value from network to host byte order.
  92. *
  93. * @param x The network byte order value to convert.
  94. *
  95. * @return Host byte order value.
  96. */
  97. #define ntohll(x) sys_be64_to_cpu(x)
  98. /** @brief Convert 16-bit value from host to network byte order.
  99. *
  100. * @param x The host byte order value to convert.
  101. *
  102. * @return Network byte order value.
  103. */
  104. #define htons(x) sys_cpu_to_be16(x)
  105. /** @brief Convert 32-bit value from host to network byte order.
  106. *
  107. * @param x The host byte order value to convert.
  108. *
  109. * @return Network byte order value.
  110. */
  111. #define htonl(x) sys_cpu_to_be32(x)
  112. /** @brief Convert 64-bit value from host to network byte order.
  113. *
  114. * @param x The host byte order value to convert.
  115. *
  116. * @return Network byte order value.
  117. */
  118. #define htonll(x) sys_cpu_to_be64(x)
  119. /** IPv6 address struct */
  120. struct in6_addr {
  121. union {
  122. uint8_t s6_addr[16];
  123. uint16_t s6_addr16[8]; /* In big endian */
  124. uint32_t s6_addr32[4]; /* In big endian */
  125. };
  126. };
  127. /** IPv4 address struct */
  128. struct in_addr {
  129. union {
  130. uint8_t s4_addr[4];
  131. uint16_t s4_addr16[2]; /* In big endian */
  132. uint32_t s4_addr32[1]; /* In big endian */
  133. uint32_t s_addr; /* In big endian, for POSIX compatibility. */
  134. };
  135. };
  136. /** Socket address family type */
  137. typedef unsigned short int sa_family_t;
  138. /** Length of a socket address */
  139. typedef size_t socklen_t;
  140. /*
  141. * Note that the sin_port and sin6_port are in network byte order
  142. * in various sockaddr* structs.
  143. */
  144. /** Socket address struct for IPv6. */
  145. struct sockaddr_in6 {
  146. sa_family_t sin6_family; /* AF_INET6 */
  147. uint16_t sin6_port; /* Port number */
  148. struct in6_addr sin6_addr; /* IPv6 address */
  149. uint8_t sin6_scope_id; /* interfaces for a scope */
  150. };
  151. struct sockaddr_in6_ptr {
  152. sa_family_t sin6_family; /* AF_INET6 */
  153. uint16_t sin6_port; /* Port number */
  154. struct in6_addr *sin6_addr; /* IPv6 address */
  155. uint8_t sin6_scope_id; /* interfaces for a scope */
  156. };
  157. /** Socket address struct for IPv4. */
  158. struct sockaddr_in {
  159. sa_family_t sin_family; /* AF_INET */
  160. uint16_t sin_port; /* Port number */
  161. struct in_addr sin_addr; /* IPv4 address */
  162. };
  163. struct sockaddr_in_ptr {
  164. sa_family_t sin_family; /* AF_INET */
  165. uint16_t sin_port; /* Port number */
  166. struct in_addr *sin_addr; /* IPv4 address */
  167. };
  168. /** Socket address struct for packet socket. */
  169. struct sockaddr_ll {
  170. sa_family_t sll_family; /* Always AF_PACKET */
  171. uint16_t sll_protocol; /* Physical-layer protocol */
  172. int sll_ifindex; /* Interface number */
  173. uint16_t sll_hatype; /* ARP hardware type */
  174. uint8_t sll_pkttype; /* Packet type */
  175. uint8_t sll_halen; /* Length of address */
  176. uint8_t sll_addr[8]; /* Physical-layer address */
  177. };
  178. struct sockaddr_ll_ptr {
  179. sa_family_t sll_family; /* Always AF_PACKET */
  180. uint16_t sll_protocol; /* Physical-layer protocol */
  181. int sll_ifindex; /* Interface number */
  182. uint16_t sll_hatype; /* ARP hardware type */
  183. uint8_t sll_pkttype; /* Packet type */
  184. uint8_t sll_halen; /* Length of address */
  185. uint8_t *sll_addr; /* Physical-layer address */
  186. };
  187. struct sockaddr_can_ptr {
  188. sa_family_t can_family;
  189. int can_ifindex;
  190. };
  191. #if !defined(HAVE_IOVEC)
  192. struct iovec {
  193. void *iov_base;
  194. size_t iov_len;
  195. };
  196. #endif
  197. struct msghdr {
  198. void *msg_name; /* optional socket address */
  199. socklen_t msg_namelen; /* size of socket address */
  200. struct iovec *msg_iov; /* scatter/gather array */
  201. size_t msg_iovlen; /* number of elements in msg_iov */
  202. void *msg_control; /* ancillary data */
  203. size_t msg_controllen; /* ancillary data buffer len */
  204. int msg_flags; /* flags on received message */
  205. };
  206. struct cmsghdr {
  207. socklen_t cmsg_len; /* Number of bytes, including header */
  208. int cmsg_level; /* Originating protocol */
  209. int cmsg_type; /* Protocol-specific type */
  210. /* Flexible array member to force alignment of cmsghdr */
  211. z_max_align_t cmsg_data[];
  212. };
  213. /* Alignment for headers and data. These are arch specific but define
  214. * them here atm if not found alredy.
  215. */
  216. #if !defined(ALIGN_H)
  217. #define ALIGN_H(x) ROUND_UP(x, __alignof__(struct cmsghdr))
  218. #endif
  219. #if !defined(ALIGN_D)
  220. #define ALIGN_D(x) ROUND_UP(x, __alignof__(z_max_align_t))
  221. #endif
  222. #if !defined(CMSG_FIRSTHDR)
  223. #define CMSG_FIRSTHDR(msghdr) \
  224. ((msghdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
  225. (struct cmsghdr *)((msghdr)->msg_control) : NULL)
  226. #endif
  227. #if !defined(CMSG_NXTHDR)
  228. #define CMSG_NXTHDR(msghdr, cmsg) \
  229. (((cmsg) == NULL) ? CMSG_FIRSTHDR(msghdr) : \
  230. (((uint8_t *)(cmsg) + ALIGN_H((cmsg)->cmsg_len) + \
  231. ALIGN_D(sizeof(struct cmsghdr)) > \
  232. (uint8_t *)((msghdr)->msg_control) + (msghdr)->msg_controllen) ? \
  233. NULL : \
  234. (struct cmsghdr *)((uint8_t *)(cmsg) + \
  235. ALIGN_H((cmsg)->cmsg_len))))
  236. #endif
  237. #if !defined(CMSG_DATA)
  238. #define CMSG_DATA(cmsg) ((uint8_t *)(cmsg) + ALIGN_D(sizeof(struct cmsghdr)))
  239. #endif
  240. #if !defined(CMSG_SPACE)
  241. #define CMSG_SPACE(length) (ALIGN_D(sizeof(struct cmsghdr)) + ALIGN_H(length))
  242. #endif
  243. #if !defined(CMSG_LEN)
  244. #define CMSG_LEN(length) (ALIGN_D(sizeof(struct cmsghdr)) + length)
  245. #endif
  246. /** @cond INTERNAL_HIDDEN */
  247. /* Packet types. */
  248. #define PACKET_HOST 0 /* To us */
  249. #define PACKET_BROADCAST 1 /* To all */
  250. #define PACKET_MULTICAST 2 /* To group */
  251. #define PACKET_OTHERHOST 3 /* To someone else */
  252. #define PACKET_OUTGOING 4 /* Originated by us */
  253. #define PACKET_LOOPBACK 5
  254. #define PACKET_FASTROUTE 6
  255. /* Note: These macros are defined in a specific order.
  256. * The largest sockaddr size is the last one.
  257. */
  258. #if defined(CONFIG_NET_IPV4)
  259. #undef NET_SOCKADDR_MAX_SIZE
  260. #undef NET_SOCKADDR_PTR_MAX_SIZE
  261. #define NET_SOCKADDR_MAX_SIZE (sizeof(struct sockaddr_in))
  262. #define NET_SOCKADDR_PTR_MAX_SIZE (sizeof(struct sockaddr_in_ptr))
  263. #endif
  264. #if defined(CONFIG_NET_SOCKETS_PACKET)
  265. #undef NET_SOCKADDR_MAX_SIZE
  266. #undef NET_SOCKADDR_PTR_MAX_SIZE
  267. #define NET_SOCKADDR_MAX_SIZE (sizeof(struct sockaddr_ll))
  268. #define NET_SOCKADDR_PTR_MAX_SIZE (sizeof(struct sockaddr_ll_ptr))
  269. #endif
  270. #if defined(CONFIG_NET_IPV6)
  271. #undef NET_SOCKADDR_MAX_SIZE
  272. #define NET_SOCKADDR_MAX_SIZE (sizeof(struct sockaddr_in6))
  273. #if !defined(CONFIG_NET_SOCKETS_PACKET)
  274. #undef NET_SOCKADDR_PTR_MAX_SIZE
  275. #define NET_SOCKADDR_PTR_MAX_SIZE (sizeof(struct sockaddr_in6_ptr))
  276. #endif
  277. #endif
  278. #if !defined(CONFIG_NET_IPV4)
  279. #if !defined(CONFIG_NET_IPV6)
  280. #if !defined(CONFIG_NET_SOCKETS_PACKET)
  281. #define NET_SOCKADDR_MAX_SIZE (sizeof(struct sockaddr_in6))
  282. #define NET_SOCKADDR_PTR_MAX_SIZE (sizeof(struct sockaddr_in6_ptr))
  283. #endif
  284. #endif
  285. #endif
  286. /** @endcond */
  287. /** Generic sockaddr struct. Must be cast to proper type. */
  288. struct sockaddr {
  289. sa_family_t sa_family;
  290. char data[NET_SOCKADDR_MAX_SIZE - sizeof(sa_family_t)];
  291. };
  292. /** @cond INTERNAL_HIDDEN */
  293. struct sockaddr_ptr {
  294. sa_family_t family;
  295. char data[NET_SOCKADDR_PTR_MAX_SIZE - sizeof(sa_family_t)];
  296. };
  297. /* Same as sockaddr in our case */
  298. struct sockaddr_storage {
  299. sa_family_t ss_family;
  300. char data[NET_SOCKADDR_MAX_SIZE - sizeof(sa_family_t)];
  301. };
  302. /* Socket address struct for UNIX domain sockets */
  303. struct sockaddr_un {
  304. sa_family_t sun_family; /* AF_UNIX */
  305. char sun_path[NET_SOCKADDR_MAX_SIZE - sizeof(sa_family_t)];
  306. };
  307. struct net_addr {
  308. sa_family_t family;
  309. union {
  310. struct in6_addr in6_addr;
  311. struct in_addr in_addr;
  312. };
  313. };
  314. #define IN6ADDR_ANY_INIT { { { 0, 0, 0, 0, 0, 0, 0, 0, 0, \
  315. 0, 0, 0, 0, 0, 0, 0 } } }
  316. #define IN6ADDR_LOOPBACK_INIT { { { 0, 0, 0, 0, 0, 0, 0, \
  317. 0, 0, 0, 0, 0, 0, 0, 0, 1 } } }
  318. extern const struct in6_addr in6addr_any;
  319. extern const struct in6_addr in6addr_loopback;
  320. /** @endcond */
  321. /** Max length of the IPv4 address as a string. Defined by POSIX. */
  322. #define INET_ADDRSTRLEN 16
  323. /** Max length of the IPv6 address as a string. Takes into account possible
  324. * mapped IPv4 addresses.
  325. */
  326. #define INET6_ADDRSTRLEN 46
  327. /** @cond INTERNAL_HIDDEN */
  328. /* These are for internal usage of the stack */
  329. #define NET_IPV6_ADDR_LEN sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx")
  330. #define NET_IPV4_ADDR_LEN sizeof("xxx.xxx.xxx.xxx")
  331. #define INADDR_ANY 0
  332. #define INADDR_ANY_INIT { { { INADDR_ANY } } }
  333. /** @endcond */
  334. enum net_ip_mtu {
  335. /** IPv6 MTU length. We must be able to receive this size IPv6 packet
  336. * without fragmentation.
  337. */
  338. NET_IPV6_MTU = 1280,
  339. /** IPv4 MTU length. We must be able to receive this size IPv4 packet
  340. * without fragmentation.
  341. */
  342. NET_IPV4_MTU = 576,
  343. };
  344. /** Network packet priority settings described in IEEE 802.1Q Annex I.1 */
  345. enum net_priority {
  346. NET_PRIORITY_BK = 1, /**< Background (lowest) */
  347. NET_PRIORITY_BE = 0, /**< Best effort (default) */
  348. NET_PRIORITY_EE = 2, /**< Excellent effort */
  349. NET_PRIORITY_CA = 3, /**< Critical applications (highest) */
  350. NET_PRIORITY_VI = 4, /**< Video, < 100 ms latency and jitter */
  351. NET_PRIORITY_VO = 5, /**< Voice, < 10 ms latency and jitter */
  352. NET_PRIORITY_IC = 6, /**< Internetwork control */
  353. NET_PRIORITY_NC = 7 /**< Network control */
  354. } __packed;
  355. #define NET_MAX_PRIORITIES 8 /* How many priority values there are */
  356. /** IPv6/IPv4 network connection tuple */
  357. struct net_tuple {
  358. struct net_addr *remote_addr; /**< IPv6/IPv4 remote address */
  359. struct net_addr *local_addr; /**< IPv6/IPv4 local address */
  360. uint16_t remote_port; /**< UDP/TCP remote port */
  361. uint16_t local_port; /**< UDP/TCP local port */
  362. enum net_ip_protocol ip_proto; /**< IP protocol */
  363. };
  364. /** What is the current state of the network address */
  365. enum net_addr_state {
  366. NET_ADDR_ANY_STATE = -1, /**< Default (invalid) address type */
  367. NET_ADDR_TENTATIVE = 0, /**< Tentative address */
  368. NET_ADDR_PREFERRED, /**< Preferred address */
  369. NET_ADDR_DEPRECATED, /**< Deprecated address */
  370. } __packed;
  371. /** How the network address is assigned to network interface */
  372. enum net_addr_type {
  373. /** Default value. This is not a valid value. */
  374. NET_ADDR_ANY = 0,
  375. /** Auto configured address */
  376. NET_ADDR_AUTOCONF,
  377. /** Address is from DHCP */
  378. NET_ADDR_DHCP,
  379. /** Manually set address */
  380. NET_ADDR_MANUAL,
  381. /** Manually set address which is overridable by DHCP */
  382. NET_ADDR_OVERRIDABLE,
  383. } __packed;
  384. /** @cond INTERNAL_HIDDEN */
  385. struct net_ipv6_hdr {
  386. uint8_t vtc;
  387. uint8_t tcflow;
  388. uint16_t flow;
  389. uint16_t len;
  390. uint8_t nexthdr;
  391. uint8_t hop_limit;
  392. struct in6_addr src;
  393. struct in6_addr dst;
  394. } __packed;
  395. struct net_ipv6_frag_hdr {
  396. uint8_t nexthdr;
  397. uint8_t reserved;
  398. uint16_t offset;
  399. uint32_t id;
  400. } __packed;
  401. struct net_ipv4_hdr {
  402. uint8_t vhl;
  403. uint8_t tos;
  404. uint16_t len;
  405. uint8_t id[2];
  406. uint8_t offset[2];
  407. uint8_t ttl;
  408. uint8_t proto;
  409. uint16_t chksum;
  410. struct in_addr src;
  411. struct in_addr dst;
  412. } __packed;
  413. struct net_icmp_hdr {
  414. uint8_t type;
  415. uint8_t code;
  416. uint16_t chksum;
  417. } __packed;
  418. struct net_udp_hdr {
  419. uint16_t src_port;
  420. uint16_t dst_port;
  421. uint16_t len;
  422. uint16_t chksum;
  423. } __packed;
  424. struct net_tcp_hdr {
  425. uint16_t src_port;
  426. uint16_t dst_port;
  427. uint8_t seq[4];
  428. uint8_t ack[4];
  429. uint8_t offset;
  430. uint8_t flags;
  431. uint8_t wnd[2];
  432. uint16_t chksum;
  433. uint8_t urg[2];
  434. uint8_t optdata[0];
  435. } __packed;
  436. static inline const char *net_addr_type2str(enum net_addr_type type)
  437. {
  438. switch (type) {
  439. case NET_ADDR_AUTOCONF:
  440. return "AUTO";
  441. case NET_ADDR_DHCP:
  442. return "DHCP";
  443. case NET_ADDR_MANUAL:
  444. return "MANUAL";
  445. case NET_ADDR_OVERRIDABLE:
  446. return "OVERRIDE";
  447. case NET_ADDR_ANY:
  448. default:
  449. break;
  450. }
  451. return "<unknown>";
  452. }
  453. /* IPv6 extension headers types */
  454. #define NET_IPV6_NEXTHDR_HBHO 0
  455. #define NET_IPV6_NEXTHDR_DESTO 60
  456. #define NET_IPV6_NEXTHDR_ROUTING 43
  457. #define NET_IPV6_NEXTHDR_FRAG 44
  458. #define NET_IPV6_NEXTHDR_NONE 59
  459. /**
  460. * This 2 unions are here temporarily, as long as net_context.h will
  461. * be still public and not part of the core only.
  462. */
  463. union net_ip_header {
  464. struct net_ipv4_hdr *ipv4;
  465. struct net_ipv6_hdr *ipv6;
  466. };
  467. union net_proto_header {
  468. struct net_udp_hdr *udp;
  469. struct net_tcp_hdr *tcp;
  470. };
  471. #define NET_UDPH_LEN 8 /* Size of UDP header */
  472. #define NET_TCPH_LEN 20 /* Size of TCP header */
  473. #define NET_ICMPH_LEN 4 /* Size of ICMP header */
  474. #define NET_IPV6H_LEN 40 /* Size of IPv6 header */
  475. #define NET_ICMPV6H_LEN NET_ICMPH_LEN /* Size of ICMPv6 header */
  476. #define NET_IPV6UDPH_LEN (NET_UDPH_LEN + NET_IPV6H_LEN) /* IPv6 + UDP */
  477. #define NET_IPV6TCPH_LEN (NET_TCPH_LEN + NET_IPV6H_LEN) /* IPv6 + TCP */
  478. #define NET_IPV6ICMPH_LEN (NET_IPV6H_LEN + NET_ICMPH_LEN) /* ICMPv6 + IPv6 */
  479. #define NET_IPV6_FRAGH_LEN 8
  480. #define NET_IPV4H_LEN 20 /* Size of IPv4 header */
  481. #define NET_ICMPV4H_LEN NET_ICMPH_LEN /* Size of ICMPv4 header */
  482. #define NET_IPV4UDPH_LEN (NET_UDPH_LEN + NET_IPV4H_LEN) /* IPv4 + UDP */
  483. #define NET_IPV4TCPH_LEN (NET_TCPH_LEN + NET_IPV4H_LEN) /* IPv4 + TCP */
  484. #define NET_IPV4ICMPH_LEN (NET_IPV4H_LEN + NET_ICMPH_LEN) /* ICMPv4 + IPv4 */
  485. #define NET_IPV6H_LENGTH_OFFSET 0x04 /* Offset of the Length field in the IPv6 header */
  486. #define NET_IPV6_FRAGH_OFFSET_MASK 0xfff8 /* Mask for the 13-bit Fragment Offset field */
  487. /** @endcond */
  488. /**
  489. * @brief Check if the IPv6 address is a loopback address (::1).
  490. *
  491. * @param addr IPv6 address
  492. *
  493. * @return True if address is a loopback address, False otherwise.
  494. */
  495. static inline bool net_ipv6_is_addr_loopback(struct in6_addr *addr)
  496. {
  497. return UNALIGNED_GET(&addr->s6_addr32[0]) == 0 &&
  498. UNALIGNED_GET(&addr->s6_addr32[1]) == 0 &&
  499. UNALIGNED_GET(&addr->s6_addr32[2]) == 0 &&
  500. ntohl(UNALIGNED_GET(&addr->s6_addr32[3])) == 1;
  501. }
  502. /**
  503. * @brief Check if the IPv6 address is a multicast address.
  504. *
  505. * @param addr IPv6 address
  506. *
  507. * @return True if address is multicast address, False otherwise.
  508. */
  509. static inline bool net_ipv6_is_addr_mcast(const struct in6_addr *addr)
  510. {
  511. return addr->s6_addr[0] == 0xFF;
  512. }
  513. struct net_if;
  514. struct net_if_config;
  515. extern struct net_if_addr *net_if_ipv6_addr_lookup(const struct in6_addr *addr,
  516. struct net_if **iface);
  517. /**
  518. * @brief Check if IPv6 address is found in one of the network interfaces.
  519. *
  520. * @param addr IPv6 address
  521. *
  522. * @return True if address was found, False otherwise.
  523. */
  524. static inline bool net_ipv6_is_my_addr(struct in6_addr *addr)
  525. {
  526. return net_if_ipv6_addr_lookup(addr, NULL) != NULL;
  527. }
  528. extern struct net_if_mcast_addr *net_if_ipv6_maddr_lookup(
  529. const struct in6_addr *addr, struct net_if **iface);
  530. /**
  531. * @brief Check if IPv6 multicast address is found in one of the
  532. * network interfaces.
  533. *
  534. * @param maddr Multicast IPv6 address
  535. *
  536. * @return True if address was found, False otherwise.
  537. */
  538. static inline bool net_ipv6_is_my_maddr(struct in6_addr *maddr)
  539. {
  540. return net_if_ipv6_maddr_lookup(maddr, NULL) != NULL;
  541. }
  542. /**
  543. * @brief Check if two IPv6 addresses are same when compared after prefix mask.
  544. *
  545. * @param addr1 First IPv6 address.
  546. * @param addr2 Second IPv6 address.
  547. * @param length Prefix length (max length is 128).
  548. *
  549. * @return True if IPv6 prefixes are the same, False otherwise.
  550. */
  551. static inline bool net_ipv6_is_prefix(const uint8_t *addr1,
  552. const uint8_t *addr2,
  553. uint8_t length)
  554. {
  555. uint8_t bits = 128 - length;
  556. uint8_t bytes = length / 8U;
  557. uint8_t remain = bits % 8;
  558. uint8_t mask;
  559. if (length > 128) {
  560. return false;
  561. }
  562. if (memcmp(addr1, addr2, bytes)) {
  563. return false;
  564. }
  565. if (!remain) {
  566. /* No remaining bits, the prefixes are the same as first
  567. * bytes are the same.
  568. */
  569. return true;
  570. }
  571. /* Create a mask that has remaining most significant bits set */
  572. mask = ((0xff << (8 - remain)) ^ 0xff) << remain;
  573. return (addr1[bytes] & mask) == (addr2[bytes] & mask);
  574. }
  575. /**
  576. * @brief Check if the IPv4 address is a loopback address (127.0.0.0/8).
  577. *
  578. * @param addr IPv4 address
  579. *
  580. * @return True if address is a loopback address, False otherwise.
  581. */
  582. static inline bool net_ipv4_is_addr_loopback(struct in_addr *addr)
  583. {
  584. return addr->s4_addr[0] == 127U;
  585. }
  586. /**
  587. * @brief Check if the IPv4 address is unspecified (all bits zero)
  588. *
  589. * @param addr IPv4 address.
  590. *
  591. * @return True if the address is unspecified, false otherwise.
  592. */
  593. static inline bool net_ipv4_is_addr_unspecified(const struct in_addr *addr)
  594. {
  595. return UNALIGNED_GET(&addr->s_addr) == 0;
  596. }
  597. /**
  598. * @brief Check if the IPv4 address is a multicast address.
  599. *
  600. * @param addr IPv4 address
  601. *
  602. * @return True if address is multicast address, False otherwise.
  603. */
  604. static inline bool net_ipv4_is_addr_mcast(const struct in_addr *addr)
  605. {
  606. return (ntohl(UNALIGNED_GET(&addr->s_addr)) & 0xF0000000) == 0xE0000000;
  607. }
  608. /**
  609. * @brief Check if the given IPv4 address is a link local address.
  610. *
  611. * @param addr A valid pointer on an IPv4 address
  612. *
  613. * @return True if it is, false otherwise.
  614. */
  615. static inline bool net_ipv4_is_ll_addr(const struct in_addr *addr)
  616. {
  617. return (ntohl(UNALIGNED_GET(&addr->s_addr)) & 0xA9FE0000) == 0xA9FE0000;
  618. }
  619. /**
  620. * @def net_ipaddr_copy
  621. * @brief Copy an IPv4 or IPv6 address
  622. *
  623. * @param dest Destination IP address.
  624. * @param src Source IP address.
  625. *
  626. * @return Destination address.
  627. */
  628. #define net_ipaddr_copy(dest, src) \
  629. UNALIGNED_PUT(UNALIGNED_GET(src), dest)
  630. /**
  631. * @brief Compare two IPv4 addresses
  632. *
  633. * @param addr1 Pointer to IPv4 address.
  634. * @param addr2 Pointer to IPv4 address.
  635. *
  636. * @return True if the addresses are the same, false otherwise.
  637. */
  638. static inline bool net_ipv4_addr_cmp(const struct in_addr *addr1,
  639. const struct in_addr *addr2)
  640. {
  641. return UNALIGNED_GET(&addr1->s_addr) == UNALIGNED_GET(&addr2->s_addr);
  642. }
  643. /**
  644. * @brief Compare two IPv6 addresses
  645. *
  646. * @param addr1 Pointer to IPv6 address.
  647. * @param addr2 Pointer to IPv6 address.
  648. *
  649. * @return True if the addresses are the same, false otherwise.
  650. */
  651. static inline bool net_ipv6_addr_cmp(const struct in6_addr *addr1,
  652. const struct in6_addr *addr2)
  653. {
  654. return !memcmp(addr1, addr2, sizeof(struct in6_addr));
  655. }
  656. /**
  657. * @brief Check if the given IPv6 address is a link local address.
  658. *
  659. * @param addr A valid pointer on an IPv6 address
  660. *
  661. * @return True if it is, false otherwise.
  662. */
  663. static inline bool net_ipv6_is_ll_addr(const struct in6_addr *addr)
  664. {
  665. return UNALIGNED_GET(&addr->s6_addr16[0]) == htons(0xFE80);
  666. }
  667. /**
  668. * @brief Check if the given IPv6 address is a unique local address.
  669. *
  670. * @param addr A valid pointer on an IPv6 address
  671. *
  672. * @return True if it is, false otherwise.
  673. */
  674. static inline bool net_ipv6_is_ula_addr(const struct in6_addr *addr)
  675. {
  676. return addr->s6_addr[0] == 0xFD;
  677. }
  678. /**
  679. * @brief Return pointer to any (all bits zeros) IPv6 address.
  680. *
  681. * @return Any IPv6 address.
  682. */
  683. const struct in6_addr *net_ipv6_unspecified_address(void);
  684. /**
  685. * @brief Return pointer to any (all bits zeros) IPv4 address.
  686. *
  687. * @return Any IPv4 address.
  688. */
  689. const struct in_addr *net_ipv4_unspecified_address(void);
  690. /**
  691. * @brief Return pointer to broadcast (all bits ones) IPv4 address.
  692. *
  693. * @return Broadcast IPv4 address.
  694. */
  695. const struct in_addr *net_ipv4_broadcast_address(void);
  696. struct net_if;
  697. extern bool net_if_ipv4_addr_mask_cmp(struct net_if *iface,
  698. const struct in_addr *addr);
  699. /**
  700. * @brief Check if the given address belongs to same subnet that
  701. * has been configured for the interface.
  702. *
  703. * @param iface A valid pointer on an interface
  704. * @param addr IPv4 address
  705. *
  706. * @return True if address is in same subnet, false otherwise.
  707. */
  708. static inline bool net_ipv4_addr_mask_cmp(struct net_if *iface,
  709. const struct in_addr *addr)
  710. {
  711. return net_if_ipv4_addr_mask_cmp(iface, addr);
  712. }
  713. extern bool net_if_ipv4_is_addr_bcast(struct net_if *iface,
  714. const struct in_addr *addr);
  715. /**
  716. * @brief Check if the given IPv4 address is a broadcast address.
  717. *
  718. * @param iface Interface to use. Must be a valid pointer to an interface.
  719. * @param addr IPv4 address
  720. *
  721. * @return True if address is a broadcast address, false otherwise.
  722. */
  723. #if defined(CONFIG_NET_NATIVE_IPV4)
  724. static inline bool net_ipv4_is_addr_bcast(struct net_if *iface,
  725. const struct in_addr *addr)
  726. {
  727. if (net_ipv4_addr_cmp(addr, net_ipv4_broadcast_address())) {
  728. return true;
  729. }
  730. return net_if_ipv4_is_addr_bcast(iface, addr);
  731. }
  732. #else
  733. static inline bool net_ipv4_is_addr_bcast(struct net_if *iface,
  734. const struct in_addr *addr)
  735. {
  736. ARG_UNUSED(iface);
  737. ARG_UNUSED(addr);
  738. return false;
  739. }
  740. #endif
  741. extern struct net_if_addr *net_if_ipv4_addr_lookup(const struct in_addr *addr,
  742. struct net_if **iface);
  743. /**
  744. * @brief Check if the IPv4 address is assigned to any network interface
  745. * in the system.
  746. *
  747. * @param addr A valid pointer on an IPv4 address
  748. *
  749. * @return True if IPv4 address is found in one of the network interfaces,
  750. * False otherwise.
  751. */
  752. static inline bool net_ipv4_is_my_addr(const struct in_addr *addr)
  753. {
  754. bool ret;
  755. ret = net_if_ipv4_addr_lookup(addr, NULL) != NULL;
  756. if (!ret) {
  757. ret = net_ipv4_is_addr_bcast(NULL, addr);
  758. }
  759. return ret;
  760. }
  761. /**
  762. * @brief Check if the IPv6 address is unspecified (all bits zero)
  763. *
  764. * @param addr IPv6 address.
  765. *
  766. * @return True if the address is unspecified, false otherwise.
  767. */
  768. static inline bool net_ipv6_is_addr_unspecified(const struct in6_addr *addr)
  769. {
  770. return UNALIGNED_GET(&addr->s6_addr32[0]) == 0 &&
  771. UNALIGNED_GET(&addr->s6_addr32[1]) == 0 &&
  772. UNALIGNED_GET(&addr->s6_addr32[2]) == 0 &&
  773. UNALIGNED_GET(&addr->s6_addr32[3]) == 0;
  774. }
  775. /**
  776. * @brief Check if the IPv6 address is solicited node multicast address
  777. * FF02:0:0:0:0:1:FFXX:XXXX defined in RFC 3513
  778. *
  779. * @param addr IPv6 address.
  780. *
  781. * @return True if the address is solicited node address, false otherwise.
  782. */
  783. static inline bool net_ipv6_is_addr_solicited_node(const struct in6_addr *addr)
  784. {
  785. return UNALIGNED_GET(&addr->s6_addr32[0]) == htonl(0xff020000) &&
  786. UNALIGNED_GET(&addr->s6_addr32[1]) == 0x00000000 &&
  787. UNALIGNED_GET(&addr->s6_addr32[2]) == htonl(0x00000001) &&
  788. ((UNALIGNED_GET(&addr->s6_addr32[3]) & htonl(0xff000000)) ==
  789. htonl(0xff000000));
  790. }
  791. /**
  792. * @brief Check if the IPv6 address is a given scope multicast
  793. * address (FFyx::).
  794. *
  795. * @param addr IPv6 address
  796. * @param scope Scope to check
  797. *
  798. * @return True if the address is in given scope multicast address,
  799. * false otherwise.
  800. */
  801. static inline bool net_ipv6_is_addr_mcast_scope(const struct in6_addr *addr,
  802. int scope)
  803. {
  804. return (addr->s6_addr[0] == 0xff) && (addr->s6_addr[1] == scope);
  805. }
  806. /**
  807. * @brief Check if the IPv6 addresses have the same multicast scope (FFyx::).
  808. *
  809. * @param addr_1 IPv6 address 1
  810. * @param addr_2 IPv6 address 2
  811. *
  812. * @return True if both addresses have same multicast scope,
  813. * false otherwise.
  814. */
  815. static inline bool net_ipv6_is_same_mcast_scope(const struct in6_addr *addr_1,
  816. const struct in6_addr *addr_2)
  817. {
  818. return (addr_1->s6_addr[0] == 0xff) && (addr_2->s6_addr[0] == 0xff) &&
  819. (addr_1->s6_addr[1] == addr_2->s6_addr[1]);
  820. }
  821. /**
  822. * @brief Check if the IPv6 address is a global multicast address (FFxE::/16).
  823. *
  824. * @param addr IPv6 address.
  825. *
  826. * @return True if the address is global multicast address, false otherwise.
  827. */
  828. static inline bool net_ipv6_is_addr_mcast_global(const struct in6_addr *addr)
  829. {
  830. return net_ipv6_is_addr_mcast_scope(addr, 0x0e);
  831. }
  832. /**
  833. * @brief Check if the IPv6 address is a interface scope multicast
  834. * address (FFx1::).
  835. *
  836. * @param addr IPv6 address.
  837. *
  838. * @return True if the address is a interface scope multicast address,
  839. * false otherwise.
  840. */
  841. static inline bool net_ipv6_is_addr_mcast_iface(const struct in6_addr *addr)
  842. {
  843. return net_ipv6_is_addr_mcast_scope(addr, 0x01);
  844. }
  845. /**
  846. * @brief Check if the IPv6 address is a link local scope multicast
  847. * address (FFx2::).
  848. *
  849. * @param addr IPv6 address.
  850. *
  851. * @return True if the address is a link local scope multicast address,
  852. * false otherwise.
  853. */
  854. static inline bool net_ipv6_is_addr_mcast_link(const struct in6_addr *addr)
  855. {
  856. return net_ipv6_is_addr_mcast_scope(addr, 0x02);
  857. }
  858. /**
  859. * @brief Check if the IPv6 address is a mesh-local scope multicast
  860. * address (FFx3::).
  861. *
  862. * @param addr IPv6 address.
  863. *
  864. * @return True if the address is a mesh-local scope multicast address,
  865. * false otherwise.
  866. */
  867. static inline bool net_ipv6_is_addr_mcast_mesh(const struct in6_addr *addr)
  868. {
  869. return net_ipv6_is_addr_mcast_scope(addr, 0x03);
  870. }
  871. /**
  872. * @brief Check if the IPv6 address is a site scope multicast
  873. * address (FFx5::).
  874. *
  875. * @param addr IPv6 address.
  876. *
  877. * @return True if the address is a site scope multicast address,
  878. * false otherwise.
  879. */
  880. static inline bool net_ipv6_is_addr_mcast_site(const struct in6_addr *addr)
  881. {
  882. return net_ipv6_is_addr_mcast_scope(addr, 0x05);
  883. }
  884. /**
  885. * @brief Check if the IPv6 address is an organization scope multicast
  886. * address (FFx8::).
  887. *
  888. * @param addr IPv6 address.
  889. *
  890. * @return True if the address is an organization scope multicast address,
  891. * false otherwise.
  892. */
  893. static inline bool net_ipv6_is_addr_mcast_org(const struct in6_addr *addr)
  894. {
  895. return net_ipv6_is_addr_mcast_scope(addr, 0x08);
  896. }
  897. /**
  898. * @brief Check if the IPv6 address belongs to certain multicast group
  899. *
  900. * @param addr IPv6 address.
  901. * @param group Group id IPv6 address, the values must be in network
  902. * byte order
  903. *
  904. * @return True if the IPv6 multicast address belongs to given multicast
  905. * group, false otherwise.
  906. */
  907. static inline bool net_ipv6_is_addr_mcast_group(const struct in6_addr *addr,
  908. const struct in6_addr *group)
  909. {
  910. return UNALIGNED_GET(&addr->s6_addr16[1]) == group->s6_addr16[1] &&
  911. UNALIGNED_GET(&addr->s6_addr16[2]) == group->s6_addr16[2] &&
  912. UNALIGNED_GET(&addr->s6_addr16[3]) == group->s6_addr16[3] &&
  913. UNALIGNED_GET(&addr->s6_addr32[1]) == group->s6_addr32[1] &&
  914. UNALIGNED_GET(&addr->s6_addr32[2]) == group->s6_addr32[1] &&
  915. UNALIGNED_GET(&addr->s6_addr32[3]) == group->s6_addr32[3];
  916. }
  917. /**
  918. * @brief Check if the IPv6 address belongs to the all nodes multicast group
  919. *
  920. * @param addr IPv6 address
  921. *
  922. * @return True if the IPv6 multicast address belongs to the all nodes multicast
  923. * group, false otherwise
  924. */
  925. static inline bool
  926. net_ipv6_is_addr_mcast_all_nodes_group(const struct in6_addr *addr)
  927. {
  928. static const struct in6_addr all_nodes_mcast_group = {
  929. { { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  930. 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 } }
  931. };
  932. return net_ipv6_is_addr_mcast_group(addr, &all_nodes_mcast_group);
  933. }
  934. /**
  935. * @brief Check if the IPv6 address is a interface scope all nodes multicast
  936. * address (FF01::1).
  937. *
  938. * @param addr IPv6 address.
  939. *
  940. * @return True if the address is a interface scope all nodes multicast address,
  941. * false otherwise.
  942. */
  943. static inline bool
  944. net_ipv6_is_addr_mcast_iface_all_nodes(const struct in6_addr *addr)
  945. {
  946. return net_ipv6_is_addr_mcast_iface(addr) &&
  947. net_ipv6_is_addr_mcast_all_nodes_group(addr);
  948. }
  949. /**
  950. * @brief Check if the IPv6 address is a link local scope all nodes multicast
  951. * address (FF02::1).
  952. *
  953. * @param addr IPv6 address.
  954. *
  955. * @return True if the address is a link local scope all nodes multicast
  956. * address, false otherwise.
  957. */
  958. static inline bool
  959. net_ipv6_is_addr_mcast_link_all_nodes(const struct in6_addr *addr)
  960. {
  961. return net_ipv6_is_addr_mcast_link(addr) &&
  962. net_ipv6_is_addr_mcast_all_nodes_group(addr);
  963. }
  964. /**
  965. * @brief Create solicited node IPv6 multicast address
  966. * FF02:0:0:0:0:1:FFXX:XXXX defined in RFC 3513
  967. *
  968. * @param src IPv6 address.
  969. * @param dst IPv6 address.
  970. */
  971. static inline
  972. void net_ipv6_addr_create_solicited_node(const struct in6_addr *src,
  973. struct in6_addr *dst)
  974. {
  975. dst->s6_addr[0] = 0xFF;
  976. dst->s6_addr[1] = 0x02;
  977. UNALIGNED_PUT(0, &dst->s6_addr16[1]);
  978. UNALIGNED_PUT(0, &dst->s6_addr16[2]);
  979. UNALIGNED_PUT(0, &dst->s6_addr16[3]);
  980. UNALIGNED_PUT(0, &dst->s6_addr16[4]);
  981. dst->s6_addr[10] = 0U;
  982. dst->s6_addr[11] = 0x01;
  983. dst->s6_addr[12] = 0xFF;
  984. dst->s6_addr[13] = src->s6_addr[13];
  985. UNALIGNED_PUT(UNALIGNED_GET(&src->s6_addr16[7]), &dst->s6_addr16[7]);
  986. }
  987. /** @brief Construct an IPv6 address from eight 16-bit words.
  988. *
  989. * @param addr IPv6 address
  990. * @param addr0 16-bit word which is part of the address
  991. * @param addr1 16-bit word which is part of the address
  992. * @param addr2 16-bit word which is part of the address
  993. * @param addr3 16-bit word which is part of the address
  994. * @param addr4 16-bit word which is part of the address
  995. * @param addr5 16-bit word which is part of the address
  996. * @param addr6 16-bit word which is part of the address
  997. * @param addr7 16-bit word which is part of the address
  998. */
  999. static inline void net_ipv6_addr_create(struct in6_addr *addr,
  1000. uint16_t addr0, uint16_t addr1,
  1001. uint16_t addr2, uint16_t addr3,
  1002. uint16_t addr4, uint16_t addr5,
  1003. uint16_t addr6, uint16_t addr7)
  1004. {
  1005. UNALIGNED_PUT(htons(addr0), &addr->s6_addr16[0]);
  1006. UNALIGNED_PUT(htons(addr1), &addr->s6_addr16[1]);
  1007. UNALIGNED_PUT(htons(addr2), &addr->s6_addr16[2]);
  1008. UNALIGNED_PUT(htons(addr3), &addr->s6_addr16[3]);
  1009. UNALIGNED_PUT(htons(addr4), &addr->s6_addr16[4]);
  1010. UNALIGNED_PUT(htons(addr5), &addr->s6_addr16[5]);
  1011. UNALIGNED_PUT(htons(addr6), &addr->s6_addr16[6]);
  1012. UNALIGNED_PUT(htons(addr7), &addr->s6_addr16[7]);
  1013. }
  1014. /**
  1015. * @brief Create link local allnodes multicast IPv6 address
  1016. *
  1017. * @param addr IPv6 address
  1018. */
  1019. static inline void net_ipv6_addr_create_ll_allnodes_mcast(struct in6_addr *addr)
  1020. {
  1021. net_ipv6_addr_create(addr, 0xff02, 0, 0, 0, 0, 0, 0, 0x0001);
  1022. }
  1023. /**
  1024. * @brief Create link local allrouters multicast IPv6 address
  1025. *
  1026. * @param addr IPv6 address
  1027. */
  1028. static inline void net_ipv6_addr_create_ll_allrouters_mcast(struct in6_addr *addr)
  1029. {
  1030. net_ipv6_addr_create(addr, 0xff02, 0, 0, 0, 0, 0, 0, 0x0002);
  1031. }
  1032. /**
  1033. * @brief Create IPv6 address interface identifier
  1034. *
  1035. * @param addr IPv6 address
  1036. * @param lladdr Link local address
  1037. */
  1038. static inline void net_ipv6_addr_create_iid(struct in6_addr *addr,
  1039. struct net_linkaddr *lladdr)
  1040. {
  1041. UNALIGNED_PUT(htonl(0xfe800000), &addr->s6_addr32[0]);
  1042. UNALIGNED_PUT(0, &addr->s6_addr32[1]);
  1043. switch (lladdr->len) {
  1044. case 2:
  1045. /* The generated IPv6 shall not toggle the
  1046. * Universal/Local bit. RFC 6282 ch 3.2.2
  1047. */
  1048. if (lladdr->type == NET_LINK_IEEE802154 ||
  1049. lladdr->type == NET_LINK_CANBUS) {
  1050. UNALIGNED_PUT(0, &addr->s6_addr32[2]);
  1051. addr->s6_addr[11] = 0xff;
  1052. addr->s6_addr[12] = 0xfe;
  1053. addr->s6_addr[13] = 0U;
  1054. addr->s6_addr[14] = lladdr->addr[0];
  1055. addr->s6_addr[15] = lladdr->addr[1];
  1056. }
  1057. break;
  1058. case 6:
  1059. /* We do not toggle the Universal/Local bit
  1060. * in Bluetooth. See RFC 7668 ch 3.2.2
  1061. */
  1062. memcpy(&addr->s6_addr[8], lladdr->addr, 3);
  1063. addr->s6_addr[11] = 0xff;
  1064. addr->s6_addr[12] = 0xfe;
  1065. memcpy(&addr->s6_addr[13], lladdr->addr + 3, 3);
  1066. #if defined(CONFIG_NET_L2_BT_ZEP1656)
  1067. /* Workaround against older Linux kernel BT IPSP code.
  1068. * This will be removed eventually.
  1069. */
  1070. if (lladdr->type == NET_LINK_BLUETOOTH) {
  1071. addr->s6_addr[8] ^= 0x02;
  1072. }
  1073. #endif
  1074. if (lladdr->type == NET_LINK_ETHERNET) {
  1075. addr->s6_addr[8] ^= 0x02;
  1076. }
  1077. break;
  1078. case 8:
  1079. memcpy(&addr->s6_addr[8], lladdr->addr, lladdr->len);
  1080. addr->s6_addr[8] ^= 0x02;
  1081. break;
  1082. }
  1083. }
  1084. /**
  1085. * @brief Check if given address is based on link layer address
  1086. *
  1087. * @return True if it is, False otherwise
  1088. */
  1089. static inline bool net_ipv6_addr_based_on_ll(const struct in6_addr *addr,
  1090. const struct net_linkaddr *lladdr)
  1091. {
  1092. if (!addr || !lladdr) {
  1093. return false;
  1094. }
  1095. switch (lladdr->len) {
  1096. case 2:
  1097. if (!memcmp(&addr->s6_addr[14], lladdr->addr, lladdr->len) &&
  1098. addr->s6_addr[8] == 0U &&
  1099. addr->s6_addr[9] == 0U &&
  1100. addr->s6_addr[10] == 0U &&
  1101. addr->s6_addr[11] == 0xff &&
  1102. addr->s6_addr[12] == 0xfe) {
  1103. return true;
  1104. }
  1105. break;
  1106. case 6:
  1107. if (lladdr->type == NET_LINK_ETHERNET) {
  1108. if (!memcmp(&addr->s6_addr[9], &lladdr->addr[1], 2) &&
  1109. !memcmp(&addr->s6_addr[13], &lladdr->addr[3], 3) &&
  1110. addr->s6_addr[11] == 0xff &&
  1111. addr->s6_addr[12] == 0xfe &&
  1112. (addr->s6_addr[8] ^ 0x02) == lladdr->addr[0]) {
  1113. return true;
  1114. }
  1115. } else if (lladdr->type == NET_LINK_BLUETOOTH) {
  1116. if (!memcmp(&addr->s6_addr[9], &lladdr->addr[1], 2) &&
  1117. !memcmp(&addr->s6_addr[13], &lladdr->addr[3], 3) &&
  1118. addr->s6_addr[11] == 0xff &&
  1119. addr->s6_addr[12] == 0xfe
  1120. #if defined(CONFIG_NET_L2_BT_ZEP1656)
  1121. /* Workaround against older Linux kernel BT IPSP
  1122. * code. This will be removed eventually.
  1123. */
  1124. && (addr->s6_addr[8] ^ 0x02) == lladdr->addr[0]
  1125. #endif
  1126. ) {
  1127. return true;
  1128. }
  1129. }
  1130. break;
  1131. case 8:
  1132. if (!memcmp(&addr->s6_addr[9], &lladdr->addr[1],
  1133. lladdr->len - 1) &&
  1134. (addr->s6_addr[8] ^ 0x02) == lladdr->addr[0]) {
  1135. return true;
  1136. }
  1137. break;
  1138. }
  1139. return false;
  1140. }
  1141. /**
  1142. * @brief Get sockaddr_in6 from sockaddr. This is a helper so that
  1143. * the code calling this function can be made shorter.
  1144. *
  1145. * @param addr Socket address
  1146. *
  1147. * @return Pointer to IPv6 socket address
  1148. */
  1149. static inline struct sockaddr_in6 *net_sin6(const struct sockaddr *addr)
  1150. {
  1151. return (struct sockaddr_in6 *)addr;
  1152. }
  1153. /**
  1154. * @brief Get sockaddr_in from sockaddr. This is a helper so that
  1155. * the code calling this function can be made shorter.
  1156. *
  1157. * @param addr Socket address
  1158. *
  1159. * @return Pointer to IPv4 socket address
  1160. */
  1161. static inline struct sockaddr_in *net_sin(const struct sockaddr *addr)
  1162. {
  1163. return (struct sockaddr_in *)addr;
  1164. }
  1165. /**
  1166. * @brief Get sockaddr_in6_ptr from sockaddr_ptr. This is a helper so that
  1167. * the code calling this function can be made shorter.
  1168. *
  1169. * @param addr Socket address
  1170. *
  1171. * @return Pointer to IPv6 socket address
  1172. */
  1173. static inline
  1174. struct sockaddr_in6_ptr *net_sin6_ptr(const struct sockaddr_ptr *addr)
  1175. {
  1176. return (struct sockaddr_in6_ptr *)addr;
  1177. }
  1178. /**
  1179. * @brief Get sockaddr_in_ptr from sockaddr_ptr. This is a helper so that
  1180. * the code calling this function can be made shorter.
  1181. *
  1182. * @param addr Socket address
  1183. *
  1184. * @return Pointer to IPv4 socket address
  1185. */
  1186. static inline
  1187. struct sockaddr_in_ptr *net_sin_ptr(const struct sockaddr_ptr *addr)
  1188. {
  1189. return (struct sockaddr_in_ptr *)addr;
  1190. }
  1191. /**
  1192. * @brief Get sockaddr_ll_ptr from sockaddr_ptr. This is a helper so that
  1193. * the code calling this function can be made shorter.
  1194. *
  1195. * @param addr Socket address
  1196. *
  1197. * @return Pointer to linklayer socket address
  1198. */
  1199. static inline
  1200. struct sockaddr_ll_ptr *net_sll_ptr(const struct sockaddr_ptr *addr)
  1201. {
  1202. return (struct sockaddr_ll_ptr *)addr;
  1203. }
  1204. /**
  1205. * @brief Get sockaddr_can_ptr from sockaddr_ptr. This is a helper so that
  1206. * the code needing this functionality can be made shorter.
  1207. *
  1208. * @param addr Socket address
  1209. *
  1210. * @return Pointer to CAN socket address
  1211. */
  1212. static inline
  1213. struct sockaddr_can_ptr *net_can_ptr(const struct sockaddr_ptr *addr)
  1214. {
  1215. return (struct sockaddr_can_ptr *)addr;
  1216. }
  1217. /**
  1218. * @brief Convert a string to IP address.
  1219. *
  1220. * @param family IP address family (AF_INET or AF_INET6)
  1221. * @param src IP address in a null terminated string
  1222. * @param dst Pointer to struct in_addr if family is AF_INET or
  1223. * pointer to struct in6_addr if family is AF_INET6
  1224. *
  1225. * @note This function doesn't do precise error checking,
  1226. * do not use for untrusted strings.
  1227. *
  1228. * @return 0 if ok, < 0 if error
  1229. */
  1230. __syscall int net_addr_pton(sa_family_t family, const char *src, void *dst);
  1231. /**
  1232. * @brief Convert IP address to string form.
  1233. *
  1234. * @param family IP address family (AF_INET or AF_INET6)
  1235. * @param src Pointer to struct in_addr if family is AF_INET or
  1236. * pointer to struct in6_addr if family is AF_INET6
  1237. * @param dst Buffer for IP address as a null terminated string
  1238. * @param size Number of bytes available in the buffer
  1239. *
  1240. * @return dst pointer if ok, NULL if error
  1241. */
  1242. __syscall char *net_addr_ntop(sa_family_t family, const void *src,
  1243. char *dst, size_t size);
  1244. /**
  1245. * @brief Parse a string that contains either IPv4 or IPv6 address
  1246. * and optional port, and store the information in user supplied
  1247. * sockaddr struct.
  1248. *
  1249. * @details Syntax of the IP address string:
  1250. * 192.0.2.1:80
  1251. * 192.0.2.42
  1252. * [2001:db8::1]:8080
  1253. * [2001:db8::2]
  1254. * 2001:db::42
  1255. * Note that the str_len parameter is used to restrict the amount of
  1256. * characters that are checked. If the string does not contain port
  1257. * number, then the port number in sockaddr is not modified.
  1258. *
  1259. * @param str String that contains the IP address.
  1260. * @param str_len Length of the string to be parsed.
  1261. * @param addr Pointer to user supplied struct sockaddr.
  1262. *
  1263. * @return True if parsing could be done, false otherwise.
  1264. */
  1265. bool net_ipaddr_parse(const char *str, size_t str_len,
  1266. struct sockaddr *addr);
  1267. /**
  1268. * @brief Compare TCP sequence numbers.
  1269. *
  1270. * @details This function compares TCP sequence numbers,
  1271. * accounting for wraparound effects.
  1272. *
  1273. * @param seq1 First sequence number
  1274. * @param seq2 Seconds sequence number
  1275. *
  1276. * @return < 0 if seq1 < seq2, 0 if seq1 == seq2, > 0 if seq > seq2
  1277. */
  1278. static inline int32_t net_tcp_seq_cmp(uint32_t seq1, uint32_t seq2)
  1279. {
  1280. return (int32_t)(seq1 - seq2);
  1281. }
  1282. /**
  1283. * @brief Check that one TCP sequence number is greater.
  1284. *
  1285. * @details This is convenience function on top of net_tcp_seq_cmp().
  1286. *
  1287. * @param seq1 First sequence number
  1288. * @param seq2 Seconds sequence number
  1289. *
  1290. * @return True if seq > seq2
  1291. */
  1292. static inline bool net_tcp_seq_greater(uint32_t seq1, uint32_t seq2)
  1293. {
  1294. return net_tcp_seq_cmp(seq1, seq2) > 0;
  1295. }
  1296. /**
  1297. * @brief Convert a string of hex values to array of bytes.
  1298. *
  1299. * @details The syntax of the string is "ab:02:98:fa:42:01"
  1300. *
  1301. * @param buf Pointer to memory where the bytes are written.
  1302. * @param buf_len Length of the memory area.
  1303. * @param src String of bytes.
  1304. *
  1305. * @return 0 if ok, <0 if error
  1306. */
  1307. int net_bytes_from_str(uint8_t *buf, int buf_len, const char *src);
  1308. /**
  1309. * @brief Convert Tx network packet priority to traffic class so we can place
  1310. * the packet into correct Tx queue.
  1311. *
  1312. * @param prio Network priority
  1313. *
  1314. * @return Tx traffic class that handles that priority network traffic.
  1315. */
  1316. int net_tx_priority2tc(enum net_priority prio);
  1317. /**
  1318. * @brief Convert Rx network packet priority to traffic class so we can place
  1319. * the packet into correct Rx queue.
  1320. *
  1321. * @param prio Network priority
  1322. *
  1323. * @return Rx traffic class that handles that priority network traffic.
  1324. */
  1325. int net_rx_priority2tc(enum net_priority prio);
  1326. /**
  1327. * @brief Convert network packet VLAN priority to network packet priority so we
  1328. * can place the packet into correct queue.
  1329. *
  1330. * @param priority VLAN priority
  1331. *
  1332. * @return Network priority
  1333. */
  1334. static inline enum net_priority net_vlan2priority(uint8_t priority)
  1335. {
  1336. /* Map according to IEEE 802.1Q */
  1337. static const uint8_t vlan2priority[] = {
  1338. NET_PRIORITY_BE,
  1339. NET_PRIORITY_BK,
  1340. NET_PRIORITY_EE,
  1341. NET_PRIORITY_CA,
  1342. NET_PRIORITY_VI,
  1343. NET_PRIORITY_VO,
  1344. NET_PRIORITY_IC,
  1345. NET_PRIORITY_NC
  1346. };
  1347. if (priority >= ARRAY_SIZE(vlan2priority)) {
  1348. /* Use Best Effort as the default priority */
  1349. return NET_PRIORITY_BE;
  1350. }
  1351. return (enum net_priority)vlan2priority[priority];
  1352. }
  1353. /**
  1354. * @brief Convert network packet priority to network packet VLAN priority.
  1355. *
  1356. * @param priority Packet priority
  1357. *
  1358. * @return VLAN priority (PCP)
  1359. */
  1360. static inline uint8_t net_priority2vlan(enum net_priority priority)
  1361. {
  1362. /* The conversion works both ways */
  1363. return (uint8_t)net_vlan2priority(priority);
  1364. }
  1365. /**
  1366. * @brief Return network address family value as a string. This is only usable
  1367. * for debugging.
  1368. *
  1369. * @param family Network address family code
  1370. *
  1371. * @return Network address family as a string, or NULL if family is unknown.
  1372. */
  1373. const char *net_family2str(sa_family_t family);
  1374. #ifdef __cplusplus
  1375. }
  1376. #endif
  1377. #include <syscalls/net_ip.h>
  1378. /**
  1379. * @}
  1380. */
  1381. #endif /* ZEPHYR_INCLUDE_NET_NET_IP_H_ */