6lowpan.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. /*
  2. * Copyright 2011, Siemens AG
  3. * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
  4. */
  5. /*
  6. * Based on patches from Jon Smirl <jonsmirl@gmail.com>
  7. * Copyright (c) 2011 Jon Smirl <jonsmirl@gmail.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  21. */
  22. /* Jon's code is based on 6lowpan implementation for Contiki which is:
  23. * Copyright (c) 2008, Swedish Institute of Computer Science.
  24. * All rights reserved.
  25. *
  26. * Redistribution and use in source and binary forms, with or without
  27. * modification, are permitted provided that the following conditions
  28. * are met:
  29. * 1. Redistributions of source code must retain the above copyright
  30. * notice, this list of conditions and the following disclaimer.
  31. * 2. Redistributions in binary form must reproduce the above copyright
  32. * notice, this list of conditions and the following disclaimer in the
  33. * documentation and/or other materials provided with the distribution.
  34. * 3. Neither the name of the Institute nor the names of its contributors
  35. * may be used to endorse or promote products derived from this software
  36. * without specific prior written permission.
  37. *
  38. * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
  39. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  40. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  41. * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
  42. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  43. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  44. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  45. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  46. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  47. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48. * SUCH DAMAGE.
  49. */
  50. #ifndef __6LOWPAN_H__
  51. #define __6LOWPAN_H__
  52. #include <net/ipv6.h>
  53. #include <net/net_namespace.h>
  54. #define UIP_802154_SHORTADDR_LEN 2 /* compressed ipv6 address length */
  55. #define UIP_IPH_LEN 40 /* ipv6 fixed header size */
  56. #define UIP_PROTO_UDP 17 /* ipv6 next header value for UDP */
  57. #define UIP_FRAGH_LEN 8 /* ipv6 fragment header size */
  58. #define EUI64_ADDR_LEN 8
  59. #define LOWPAN_NHC_MAX_ID_LEN 1
  60. /* Maximum next header compression length which we currently support inclusive
  61. * possible inline data.
  62. */
  63. #define LOWPAN_NHC_MAX_HDR_LEN (sizeof(struct udphdr))
  64. /* Max IPHC Header len without IPv6 hdr specific inline data.
  65. * Useful for getting the "extra" bytes we need at worst case compression.
  66. *
  67. * LOWPAN_IPHC + CID + LOWPAN_NHC_MAX_ID_LEN
  68. */
  69. #define LOWPAN_IPHC_MAX_HEADER_LEN (2 + 1 + LOWPAN_NHC_MAX_ID_LEN)
  70. /* Maximum worst case IPHC header buffer size */
  71. #define LOWPAN_IPHC_MAX_HC_BUF_LEN (sizeof(struct ipv6hdr) + \
  72. LOWPAN_IPHC_MAX_HEADER_LEN + \
  73. LOWPAN_NHC_MAX_HDR_LEN)
  74. /*
  75. * ipv6 address based on mac
  76. * second bit-flip (Universe/Local) is done according RFC2464
  77. */
  78. #define is_addr_mac_addr_based(a, m) \
  79. ((((a)->s6_addr[8]) == (((m)[0]) ^ 0x02)) && \
  80. (((a)->s6_addr[9]) == (m)[1]) && \
  81. (((a)->s6_addr[10]) == (m)[2]) && \
  82. (((a)->s6_addr[11]) == (m)[3]) && \
  83. (((a)->s6_addr[12]) == (m)[4]) && \
  84. (((a)->s6_addr[13]) == (m)[5]) && \
  85. (((a)->s6_addr[14]) == (m)[6]) && \
  86. (((a)->s6_addr[15]) == (m)[7]))
  87. /*
  88. * check whether we can compress the IID to 16 bits,
  89. * it's possible for unicast adresses with first 49 bits are zero only.
  90. */
  91. #define lowpan_is_iid_16_bit_compressable(a) \
  92. ((((a)->s6_addr16[4]) == 0) && \
  93. (((a)->s6_addr[10]) == 0) && \
  94. (((a)->s6_addr[11]) == 0xff) && \
  95. (((a)->s6_addr[12]) == 0xfe) && \
  96. (((a)->s6_addr[13]) == 0))
  97. /* check whether the 112-bit gid of the multicast address is mappable to: */
  98. /* 48 bits, FFXX::00XX:XXXX:XXXX */
  99. #define lowpan_is_mcast_addr_compressable48(a) \
  100. ((((a)->s6_addr16[1]) == 0) && \
  101. (((a)->s6_addr16[2]) == 0) && \
  102. (((a)->s6_addr16[3]) == 0) && \
  103. (((a)->s6_addr16[4]) == 0) && \
  104. (((a)->s6_addr[10]) == 0))
  105. /* 32 bits, FFXX::00XX:XXXX */
  106. #define lowpan_is_mcast_addr_compressable32(a) \
  107. ((((a)->s6_addr16[1]) == 0) && \
  108. (((a)->s6_addr16[2]) == 0) && \
  109. (((a)->s6_addr16[3]) == 0) && \
  110. (((a)->s6_addr16[4]) == 0) && \
  111. (((a)->s6_addr16[5]) == 0) && \
  112. (((a)->s6_addr[12]) == 0))
  113. /* 8 bits, FF02::00XX */
  114. #define lowpan_is_mcast_addr_compressable8(a) \
  115. ((((a)->s6_addr[1]) == 2) && \
  116. (((a)->s6_addr16[1]) == 0) && \
  117. (((a)->s6_addr16[2]) == 0) && \
  118. (((a)->s6_addr16[3]) == 0) && \
  119. (((a)->s6_addr16[4]) == 0) && \
  120. (((a)->s6_addr16[5]) == 0) && \
  121. (((a)->s6_addr16[6]) == 0) && \
  122. (((a)->s6_addr[14]) == 0))
  123. #define lowpan_is_addr_broadcast(a) \
  124. ((((a)[0]) == 0xFF) && \
  125. (((a)[1]) == 0xFF) && \
  126. (((a)[2]) == 0xFF) && \
  127. (((a)[3]) == 0xFF) && \
  128. (((a)[4]) == 0xFF) && \
  129. (((a)[5]) == 0xFF) && \
  130. (((a)[6]) == 0xFF) && \
  131. (((a)[7]) == 0xFF))
  132. #define LOWPAN_DISPATCH_IPV6 0x41 /* 01000001 = 65 */
  133. #define LOWPAN_DISPATCH_IPHC 0x60 /* 011xxxxx = ... */
  134. #define LOWPAN_DISPATCH_IPHC_MASK 0xe0
  135. static inline bool lowpan_is_ipv6(u8 dispatch)
  136. {
  137. return dispatch == LOWPAN_DISPATCH_IPV6;
  138. }
  139. static inline bool lowpan_is_iphc(u8 dispatch)
  140. {
  141. return (dispatch & LOWPAN_DISPATCH_IPHC_MASK) == LOWPAN_DISPATCH_IPHC;
  142. }
  143. #define LOWPAN_FRAG_TIMEOUT (HZ * 60) /* time-out 60 sec */
  144. #define LOWPAN_FRAG1_HEAD_SIZE 0x4
  145. #define LOWPAN_FRAGN_HEAD_SIZE 0x5
  146. /*
  147. * Values of fields within the IPHC encoding first byte
  148. * (C stands for compressed and I for inline)
  149. */
  150. #define LOWPAN_IPHC_TF 0x18
  151. #define LOWPAN_IPHC_FL_C 0x10
  152. #define LOWPAN_IPHC_TC_C 0x08
  153. #define LOWPAN_IPHC_NH_C 0x04
  154. #define LOWPAN_IPHC_TTL_1 0x01
  155. #define LOWPAN_IPHC_TTL_64 0x02
  156. #define LOWPAN_IPHC_TTL_255 0x03
  157. #define LOWPAN_IPHC_TTL_I 0x00
  158. /* Values of fields within the IPHC encoding second byte */
  159. #define LOWPAN_IPHC_CID 0x80
  160. #define LOWPAN_IPHC_ADDR_00 0x00
  161. #define LOWPAN_IPHC_ADDR_01 0x01
  162. #define LOWPAN_IPHC_ADDR_02 0x02
  163. #define LOWPAN_IPHC_ADDR_03 0x03
  164. #define LOWPAN_IPHC_SAC 0x40
  165. #define LOWPAN_IPHC_SAM 0x30
  166. #define LOWPAN_IPHC_SAM_BIT 4
  167. #define LOWPAN_IPHC_M 0x08
  168. #define LOWPAN_IPHC_DAC 0x04
  169. #define LOWPAN_IPHC_DAM_00 0x00
  170. #define LOWPAN_IPHC_DAM_01 0x01
  171. #define LOWPAN_IPHC_DAM_10 0x02
  172. #define LOWPAN_IPHC_DAM_11 0x03
  173. #define LOWPAN_IPHC_DAM_BIT 0
  174. /*
  175. * LOWPAN_UDP encoding (works together with IPHC)
  176. */
  177. #define LOWPAN_NHC_UDP_MASK 0xF8
  178. #define LOWPAN_NHC_UDP_ID 0xF0
  179. #define LOWPAN_NHC_UDP_CHECKSUMC 0x04
  180. #define LOWPAN_NHC_UDP_CHECKSUMI 0x00
  181. #define LOWPAN_NHC_UDP_4BIT_PORT 0xF0B0
  182. #define LOWPAN_NHC_UDP_4BIT_MASK 0xFFF0
  183. #define LOWPAN_NHC_UDP_8BIT_PORT 0xF000
  184. #define LOWPAN_NHC_UDP_8BIT_MASK 0xFF00
  185. /* values for port compression, _with checksum_ ie bit 5 set to 0 */
  186. #define LOWPAN_NHC_UDP_CS_P_00 0xF0 /* all inline */
  187. #define LOWPAN_NHC_UDP_CS_P_01 0xF1 /* source 16bit inline,
  188. dest = 0xF0 + 8 bit inline */
  189. #define LOWPAN_NHC_UDP_CS_P_10 0xF2 /* source = 0xF0 + 8bit inline,
  190. dest = 16 bit inline */
  191. #define LOWPAN_NHC_UDP_CS_P_11 0xF3 /* source & dest = 0xF0B + 4bit inline */
  192. #define LOWPAN_NHC_UDP_CS_C 0x04 /* checksum elided */
  193. #define LOWPAN_PRIV_SIZE(llpriv_size) \
  194. (sizeof(struct lowpan_priv) + llpriv_size)
  195. enum lowpan_lltypes {
  196. LOWPAN_LLTYPE_BTLE,
  197. LOWPAN_LLTYPE_IEEE802154,
  198. };
  199. struct lowpan_priv {
  200. enum lowpan_lltypes lltype;
  201. /* must be last */
  202. u8 priv[0] __aligned(sizeof(void *));
  203. };
  204. static inline
  205. struct lowpan_priv *lowpan_priv(const struct net_device *dev)
  206. {
  207. return netdev_priv(dev);
  208. }
  209. struct lowpan_802154_cb {
  210. u16 d_tag;
  211. unsigned int d_size;
  212. u8 d_offset;
  213. };
  214. static inline
  215. struct lowpan_802154_cb *lowpan_802154_cb(const struct sk_buff *skb)
  216. {
  217. BUILD_BUG_ON(sizeof(struct lowpan_802154_cb) > sizeof(skb->cb));
  218. return (struct lowpan_802154_cb *)skb->cb;
  219. }
  220. #ifdef DEBUG
  221. /* print data in line */
  222. static inline void raw_dump_inline(const char *caller, char *msg,
  223. const unsigned char *buf, int len)
  224. {
  225. if (msg)
  226. pr_debug("%s():%s: ", caller, msg);
  227. print_hex_dump_debug("", DUMP_PREFIX_NONE, 16, 1, buf, len, false);
  228. }
  229. /* print data in a table format:
  230. *
  231. * addr: xx xx xx xx xx xx
  232. * addr: xx xx xx xx xx xx
  233. * ...
  234. */
  235. static inline void raw_dump_table(const char *caller, char *msg,
  236. const unsigned char *buf, int len)
  237. {
  238. if (msg)
  239. pr_debug("%s():%s:\n", caller, msg);
  240. print_hex_dump_debug("\t", DUMP_PREFIX_OFFSET, 16, 1, buf, len, false);
  241. }
  242. #else
  243. static inline void raw_dump_table(const char *caller, char *msg,
  244. const unsigned char *buf, int len) { }
  245. static inline void raw_dump_inline(const char *caller, char *msg,
  246. const unsigned char *buf, int len) { }
  247. #endif
  248. static inline int lowpan_fetch_skb_u8(struct sk_buff *skb, u8 *val)
  249. {
  250. if (unlikely(!pskb_may_pull(skb, 1)))
  251. return -EINVAL;
  252. *val = skb->data[0];
  253. skb_pull(skb, 1);
  254. return 0;
  255. }
  256. static inline bool lowpan_fetch_skb(struct sk_buff *skb,
  257. void *data, const unsigned int len)
  258. {
  259. if (unlikely(!pskb_may_pull(skb, len)))
  260. return true;
  261. skb_copy_from_linear_data(skb, data, len);
  262. skb_pull(skb, len);
  263. return false;
  264. }
  265. static inline void lowpan_push_hc_data(u8 **hc_ptr, const void *data,
  266. const size_t len)
  267. {
  268. memcpy(*hc_ptr, data, len);
  269. *hc_ptr += len;
  270. }
  271. void lowpan_netdev_setup(struct net_device *dev, enum lowpan_lltypes lltype);
  272. int
  273. lowpan_header_decompress(struct sk_buff *skb, struct net_device *dev,
  274. const u8 *saddr, const u8 saddr_type,
  275. const u8 saddr_len, const u8 *daddr,
  276. const u8 daddr_type, const u8 daddr_len,
  277. u8 iphc0, u8 iphc1);
  278. /**
  279. * lowpan_header_compress - replace IPv6 header with 6LoWPAN header
  280. *
  281. * This function replaces the IPv6 header which should be pointed at
  282. * skb->data and skb_network_header, with the IPHC 6LoWPAN header.
  283. * The caller need to be sure that the sk buffer is not shared and at have
  284. * at least a headroom which is smaller or equal LOWPAN_IPHC_MAX_HEADER_LEN,
  285. * which is the IPHC "more bytes than IPv6 header" at worst case.
  286. *
  287. * @skb: the buffer which should be manipulate.
  288. * @dev: the lowpan net device pointer.
  289. * @daddr: destination lladdr of mac header which is used for compression
  290. * methods.
  291. * @saddr: source lladdr of mac header which is used for compression
  292. * methods.
  293. */
  294. int lowpan_header_compress(struct sk_buff *skb, const struct net_device *dev,
  295. const void *daddr, const void *saddr);
  296. #endif /* __6LOWPAN_H__ */