blob: 35098411dbb4863767c022bb293af235399f62ae [file] [log] [blame]
Alexander Smirnov44331fe2011-08-24 19:34:42 -07001/*
2 * Copyright 2011, Siemens AG
3 * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
4 */
5
6/*
7 * Based on patches from Jon Smirl <jonsmirl@gmail.com>
8 * Copyright (c) 2011 Jon Smirl <jonsmirl@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24/* Jon's code is based on 6lowpan implementation for Contiki which is:
25 * Copyright (c) 2008, Swedish Institute of Computer Science.
26 * All rights reserved.
27 *
28 * Redistribution and use in source and binary forms, with or without
29 * modification, are permitted provided that the following conditions
30 * are met:
31 * 1. Redistributions of source code must retain the above copyright
32 * notice, this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright
34 * notice, this list of conditions and the following disclaimer in the
35 * documentation and/or other materials provided with the distribution.
36 * 3. Neither the name of the Institute nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 */
52
53#ifndef __6LOWPAN_H__
54#define __6LOWPAN_H__
55
Alexander Aring91c69222014-03-05 14:29:04 +010056#include <net/ipv6.h>
Luis R. Rodriguez17d8ecb2014-04-17 18:22:56 -070057#include <net/net_namespace.h>
Alexander Aring91c69222014-03-05 14:29:04 +010058
Alexander Smirnov44331fe2011-08-24 19:34:42 -070059#define UIP_802154_SHORTADDR_LEN 2 /* compressed ipv6 address length */
60#define UIP_IPH_LEN 40 /* ipv6 fixed header size */
61#define UIP_PROTO_UDP 17 /* ipv6 next header value for UDP */
62#define UIP_FRAGH_LEN 8 /* ipv6 fragment header size */
63
64/*
65 * ipv6 address based on mac
66 * second bit-flip (Universe/Local) is done according RFC2464
67 */
68#define is_addr_mac_addr_based(a, m) \
69 ((((a)->s6_addr[8]) == (((m)[0]) ^ 0x02)) && \
70 (((a)->s6_addr[9]) == (m)[1]) && \
71 (((a)->s6_addr[10]) == (m)[2]) && \
72 (((a)->s6_addr[11]) == (m)[3]) && \
73 (((a)->s6_addr[12]) == (m)[4]) && \
74 (((a)->s6_addr[13]) == (m)[5]) && \
75 (((a)->s6_addr[14]) == (m)[6]) && \
76 (((a)->s6_addr[15]) == (m)[7]))
77
Alexander Smirnov44331fe2011-08-24 19:34:42 -070078/*
79 * check whether we can compress the IID to 16 bits,
80 * it's possible for unicast adresses with first 49 bits are zero only.
81 */
82#define lowpan_is_iid_16_bit_compressable(a) \
83 ((((a)->s6_addr16[4]) == 0) && \
Tony Cheneau8d879a32013-03-25 17:59:21 +000084 (((a)->s6_addr[10]) == 0) && \
85 (((a)->s6_addr[11]) == 0xff) && \
86 (((a)->s6_addr[12]) == 0xfe) && \
87 (((a)->s6_addr[13]) == 0))
Alexander Smirnov44331fe2011-08-24 19:34:42 -070088
Alexander Smirnov44331fe2011-08-24 19:34:42 -070089/* check whether the 112-bit gid of the multicast address is mappable to: */
90
Alexander Smirnov44331fe2011-08-24 19:34:42 -070091/* 48 bits, FFXX::00XX:XXXX:XXXX */
92#define lowpan_is_mcast_addr_compressable48(a) \
93 ((((a)->s6_addr16[1]) == 0) && \
94 (((a)->s6_addr16[2]) == 0) && \
95 (((a)->s6_addr16[3]) == 0) && \
96 (((a)->s6_addr16[4]) == 0) && \
97 (((a)->s6_addr[10]) == 0))
98
99/* 32 bits, FFXX::00XX:XXXX */
100#define lowpan_is_mcast_addr_compressable32(a) \
101 ((((a)->s6_addr16[1]) == 0) && \
102 (((a)->s6_addr16[2]) == 0) && \
103 (((a)->s6_addr16[3]) == 0) && \
104 (((a)->s6_addr16[4]) == 0) && \
105 (((a)->s6_addr16[5]) == 0) && \
106 (((a)->s6_addr[12]) == 0))
107
108/* 8 bits, FF02::00XX */
109#define lowpan_is_mcast_addr_compressable8(a) \
110 ((((a)->s6_addr[1]) == 2) && \
111 (((a)->s6_addr16[1]) == 0) && \
112 (((a)->s6_addr16[2]) == 0) && \
113 (((a)->s6_addr16[3]) == 0) && \
114 (((a)->s6_addr16[4]) == 0) && \
115 (((a)->s6_addr16[5]) == 0) && \
116 (((a)->s6_addr16[6]) == 0) && \
117 (((a)->s6_addr[14]) == 0))
118
119#define lowpan_is_addr_broadcast(a) \
120 ((((a)[0]) == 0xFF) && \
121 (((a)[1]) == 0xFF) && \
122 (((a)[2]) == 0xFF) && \
123 (((a)[3]) == 0xFF) && \
124 (((a)[4]) == 0xFF) && \
125 (((a)[5]) == 0xFF) && \
126 (((a)[6]) == 0xFF) && \
127 (((a)[7]) == 0xFF))
128
Alexander Aring72a5e6b2015-09-02 14:21:25 +0200129#define LOWPAN_DISPATCH_IPV6 0x41 /* 01000001 = 65 */
130#define LOWPAN_DISPATCH_IPHC 0x60 /* 011xxxxx = ... */
131#define LOWPAN_DISPATCH_IPHC_MASK 0xe0
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700132
Alexander Aring72a5e6b2015-09-02 14:21:25 +0200133static inline bool lowpan_is_ipv6(u8 dispatch)
134{
135 return dispatch == LOWPAN_DISPATCH_IPV6;
136}
137
138static inline bool lowpan_is_iphc(u8 dispatch)
139{
140 return (dispatch & LOWPAN_DISPATCH_IPHC_MASK) == LOWPAN_DISPATCH_IPHC;
141}
alex.bluesman.smirnov@gmail.com719269a2011-11-10 07:38:38 +0000142
143#define LOWPAN_FRAG_TIMEOUT (HZ * 60) /* time-out 60 sec */
144
145#define LOWPAN_FRAG1_HEAD_SIZE 0x4
146#define LOWPAN_FRAGN_HEAD_SIZE 0x5
147
148/*
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700149 * Values of fields within the IPHC encoding first byte
150 * (C stands for compressed and I for inline)
151 */
152#define LOWPAN_IPHC_TF 0x18
153
154#define LOWPAN_IPHC_FL_C 0x10
155#define LOWPAN_IPHC_TC_C 0x08
156#define LOWPAN_IPHC_NH_C 0x04
157#define LOWPAN_IPHC_TTL_1 0x01
158#define LOWPAN_IPHC_TTL_64 0x02
159#define LOWPAN_IPHC_TTL_255 0x03
160#define LOWPAN_IPHC_TTL_I 0x00
161
162
163/* Values of fields within the IPHC encoding second byte */
164#define LOWPAN_IPHC_CID 0x80
165
Alexander Aringce2463b2013-08-16 21:59:58 +0200166#define LOWPAN_IPHC_ADDR_00 0x00
167#define LOWPAN_IPHC_ADDR_01 0x01
168#define LOWPAN_IPHC_ADDR_02 0x02
169#define LOWPAN_IPHC_ADDR_03 0x03
170
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700171#define LOWPAN_IPHC_SAC 0x40
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700172#define LOWPAN_IPHC_SAM 0x30
173
174#define LOWPAN_IPHC_SAM_BIT 4
175
176#define LOWPAN_IPHC_M 0x08
177#define LOWPAN_IPHC_DAC 0x04
178#define LOWPAN_IPHC_DAM_00 0x00
179#define LOWPAN_IPHC_DAM_01 0x01
180#define LOWPAN_IPHC_DAM_10 0x02
181#define LOWPAN_IPHC_DAM_11 0x03
182
183#define LOWPAN_IPHC_DAM_BIT 0
184/*
185 * LOWPAN_UDP encoding (works together with IPHC)
186 */
187#define LOWPAN_NHC_UDP_MASK 0xF8
188#define LOWPAN_NHC_UDP_ID 0xF0
189#define LOWPAN_NHC_UDP_CHECKSUMC 0x04
190#define LOWPAN_NHC_UDP_CHECKSUMI 0x00
191
alex.bluesman.smirnov@gmail.com3bd5b952011-11-10 07:40:14 +0000192#define LOWPAN_NHC_UDP_4BIT_PORT 0xF0B0
193#define LOWPAN_NHC_UDP_4BIT_MASK 0xFFF0
194#define LOWPAN_NHC_UDP_8BIT_PORT 0xF000
195#define LOWPAN_NHC_UDP_8BIT_MASK 0xFF00
196
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700197/* values for port compression, _with checksum_ ie bit 5 set to 0 */
198#define LOWPAN_NHC_UDP_CS_P_00 0xF0 /* all inline */
199#define LOWPAN_NHC_UDP_CS_P_01 0xF1 /* source 16bit inline,
200 dest = 0xF0 + 8 bit inline */
201#define LOWPAN_NHC_UDP_CS_P_10 0xF2 /* source = 0xF0 + 8bit inline,
202 dest = 16 bit inline */
203#define LOWPAN_NHC_UDP_CS_P_11 0xF3 /* source & dest = 0xF0B + 4bit inline */
Alexander Aring573701c2013-12-17 14:21:25 +0100204#define LOWPAN_NHC_UDP_CS_C 0x04 /* checksum elided */
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700205
Alexander Aringb72f6f52015-08-11 21:44:08 +0200206#define LOWPAN_PRIV_SIZE(llpriv_size) \
207 (sizeof(struct lowpan_priv) + llpriv_size)
208
209enum lowpan_lltypes {
210 LOWPAN_LLTYPE_BTLE,
211 LOWPAN_LLTYPE_IEEE802154,
212};
213
214struct lowpan_priv {
215 enum lowpan_lltypes lltype;
216
217 /* must be last */
218 u8 priv[0] __aligned(sizeof(void *));
219};
220
221static inline
222struct lowpan_priv *lowpan_priv(const struct net_device *dev)
223{
224 return netdev_priv(dev);
225}
226
Alexander Aring72a5e6b2015-09-02 14:21:25 +0200227struct lowpan_802154_cb {
228 u16 d_tag;
229 unsigned int d_size;
230 u8 d_offset;
231};
232
233static inline
234struct lowpan_802154_cb *lowpan_802154_cb(const struct sk_buff *skb)
235{
236 BUILD_BUG_ON(sizeof(struct lowpan_802154_cb) > sizeof(skb->cb));
237 return (struct lowpan_802154_cb *)skb->cb;
238}
239
Alexander Aring841a5ec2013-12-12 20:15:25 +0100240#ifdef DEBUG
241/* print data in line */
242static inline void raw_dump_inline(const char *caller, char *msg,
243 unsigned char *buf, int len)
244{
245 if (msg)
246 pr_debug("%s():%s: ", caller, msg);
247
248 print_hex_dump_debug("", DUMP_PREFIX_NONE, 16, 1, buf, len, false);
249}
250
251/* print data in a table format:
252 *
253 * addr: xx xx xx xx xx xx
254 * addr: xx xx xx xx xx xx
255 * ...
256 */
257static inline void raw_dump_table(const char *caller, char *msg,
258 unsigned char *buf, int len)
259{
260 if (msg)
261 pr_debug("%s():%s:\n", caller, msg);
262
263 print_hex_dump_debug("\t", DUMP_PREFIX_OFFSET, 16, 1, buf, len, false);
264}
265#else
266static inline void raw_dump_table(const char *caller, char *msg,
267 unsigned char *buf, int len) { }
268static inline void raw_dump_inline(const char *caller, char *msg,
269 unsigned char *buf, int len) { }
270#endif
271
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200272static inline int lowpan_fetch_skb_u8(struct sk_buff *skb, u8 *val)
273{
274 if (unlikely(!pskb_may_pull(skb, 1)))
275 return -EINVAL;
276
277 *val = skb->data[0];
278 skb_pull(skb, 1);
279
280 return 0;
281}
282
Alexander Aring46666692013-08-16 21:59:56 +0200283static inline bool lowpan_fetch_skb(struct sk_buff *skb,
284 void *data, const unsigned int len)
285{
286 if (unlikely(!pskb_may_pull(skb, len)))
287 return true;
288
289 skb_copy_from_linear_data(skb, data, len);
290 skb_pull(skb, len);
291
292 return false;
293}
294
Alexander Aring3109f2e2013-12-17 14:21:21 +0100295static inline void lowpan_push_hc_data(u8 **hc_ptr, const void *data,
296 const size_t len)
297{
298 memcpy(*hc_ptr, data, len);
299 *hc_ptr += len;
300}
301
Alexander Aring349aa7b2014-02-28 07:32:44 +0100302static inline u8 lowpan_addr_mode_size(const u8 addr_mode)
303{
304 static const u8 addr_sizes[] = {
305 [LOWPAN_IPHC_ADDR_00] = 16,
306 [LOWPAN_IPHC_ADDR_01] = 8,
307 [LOWPAN_IPHC_ADDR_02] = 2,
308 [LOWPAN_IPHC_ADDR_03] = 0,
309 };
310 return addr_sizes[addr_mode];
311}
312
313static inline u8 lowpan_next_hdr_size(const u8 h_enc, u16 *uncomp_header)
314{
315 u8 ret = 1;
316
317 if ((h_enc & LOWPAN_NHC_UDP_MASK) == LOWPAN_NHC_UDP_ID) {
318 *uncomp_header += sizeof(struct udphdr);
319
320 switch (h_enc & LOWPAN_NHC_UDP_CS_P_11) {
321 case LOWPAN_NHC_UDP_CS_P_00:
322 ret += 4;
323 break;
324 case LOWPAN_NHC_UDP_CS_P_01:
325 case LOWPAN_NHC_UDP_CS_P_10:
326 ret += 3;
327 break;
328 case LOWPAN_NHC_UDP_CS_P_11:
329 ret++;
330 break;
331 default:
332 break;
333 }
334
335 if (!(h_enc & LOWPAN_NHC_UDP_CS_C))
336 ret += 2;
337 }
338
339 return ret;
340}
341
342/**
343 * lowpan_uncompress_size - returns skb->len size with uncompressed header
344 * @skb: sk_buff with 6lowpan header inside
345 * @datagram_offset: optional to get the datagram_offset value
346 *
347 * Returns the skb->len with uncompressed header
348 */
349static inline u16
350lowpan_uncompress_size(const struct sk_buff *skb, u16 *dgram_offset)
351{
352 u16 ret = 2, uncomp_header = sizeof(struct ipv6hdr);
353 u8 iphc0, iphc1, h_enc;
354
355 iphc0 = skb_network_header(skb)[0];
356 iphc1 = skb_network_header(skb)[1];
357
358 switch ((iphc0 & LOWPAN_IPHC_TF) >> 3) {
359 case 0:
360 ret += 4;
361 break;
362 case 1:
363 ret += 3;
364 break;
365 case 2:
366 ret++;
367 break;
368 default:
369 break;
370 }
371
372 if (!(iphc0 & LOWPAN_IPHC_NH_C))
373 ret++;
374
375 if (!(iphc0 & 0x03))
376 ret++;
377
378 ret += lowpan_addr_mode_size((iphc1 & LOWPAN_IPHC_SAM) >>
379 LOWPAN_IPHC_SAM_BIT);
380
381 if (iphc1 & LOWPAN_IPHC_M) {
382 switch ((iphc1 & LOWPAN_IPHC_DAM_11) >>
383 LOWPAN_IPHC_DAM_BIT) {
384 case LOWPAN_IPHC_DAM_00:
385 ret += 16;
386 break;
387 case LOWPAN_IPHC_DAM_01:
388 ret += 6;
389 break;
390 case LOWPAN_IPHC_DAM_10:
391 ret += 4;
392 break;
393 case LOWPAN_IPHC_DAM_11:
394 ret++;
395 break;
396 default:
397 break;
398 }
399 } else {
400 ret += lowpan_addr_mode_size((iphc1 & LOWPAN_IPHC_DAM_11) >>
401 LOWPAN_IPHC_DAM_BIT);
402 }
403
404 if (iphc0 & LOWPAN_IPHC_NH_C) {
405 h_enc = skb_network_header(skb)[ret];
406 ret += lowpan_next_hdr_size(h_enc, &uncomp_header);
407 }
408
409 if (dgram_offset)
410 *dgram_offset = uncomp_header;
411
412 return skb->len + uncomp_header - ret;
413}
414
Alexander Aringb72f6f52015-08-11 21:44:08 +0200415void lowpan_netdev_setup(struct net_device *dev, enum lowpan_lltypes lltype);
416
Martin Townsend01141232014-10-23 15:40:56 +0100417int
418lowpan_header_decompress(struct sk_buff *skb, struct net_device *dev,
419 const u8 *saddr, const u8 saddr_type,
420 const u8 saddr_len, const u8 *daddr,
421 const u8 daddr_type, const u8 daddr_len,
422 u8 iphc0, u8 iphc1);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200423int lowpan_header_compress(struct sk_buff *skb, struct net_device *dev,
424 unsigned short type, const void *_daddr,
425 const void *_saddr, unsigned int len);
426
Alexander Smirnov44331fe2011-08-24 19:34:42 -0700427#endif /* __6LOWPAN_H__ */