2 * Copyright 2011, Siemens AG
3 * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
6 /* Based on patches from Jon Smirl <jonsmirl@gmail.com>
7 * Copyright (c) 2011 Jon Smirl <jonsmirl@gmail.com>
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.
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.
20 /* Jon's code is based on 6lowpan implementation for Contiki which is:
21 * Copyright (c) 2008, Swedish Institute of Computer Science.
22 * All rights reserved.
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 * 3. Neither the name of the Institute nor the names of its contributors
33 * may be used to endorse or promote products derived from this software
34 * without specific prior written permission.
36 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
37 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
40 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
42 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
44 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
45 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 #include <linux/bitops.h>
50 #include <linux/if_arp.h>
51 #include <linux/netdevice.h>
53 #include <net/6lowpan.h>
56 /* special link-layer handling */
57 #include <net/mac802154.h>
61 /* Values of fields within the IPHC encoding first byte */
62 #define LOWPAN_IPHC_TF_MASK 0x18
63 #define LOWPAN_IPHC_TF_00 0x00
64 #define LOWPAN_IPHC_TF_01 0x08
65 #define LOWPAN_IPHC_TF_10 0x10
66 #define LOWPAN_IPHC_TF_11 0x18
68 #define LOWPAN_IPHC_NH 0x04
70 #define LOWPAN_IPHC_HLIM_MASK 0x03
71 #define LOWPAN_IPHC_HLIM_00 0x00
72 #define LOWPAN_IPHC_HLIM_01 0x01
73 #define LOWPAN_IPHC_HLIM_10 0x02
74 #define LOWPAN_IPHC_HLIM_11 0x03
76 /* Values of fields within the IPHC encoding second byte */
77 #define LOWPAN_IPHC_CID 0x80
79 #define LOWPAN_IPHC_SAC 0x40
81 #define LOWPAN_IPHC_SAM_MASK 0x30
82 #define LOWPAN_IPHC_SAM_00 0x00
83 #define LOWPAN_IPHC_SAM_01 0x10
84 #define LOWPAN_IPHC_SAM_10 0x20
85 #define LOWPAN_IPHC_SAM_11 0x30
87 #define LOWPAN_IPHC_M 0x08
89 #define LOWPAN_IPHC_DAC 0x04
91 #define LOWPAN_IPHC_DAM_MASK 0x03
92 #define LOWPAN_IPHC_DAM_00 0x00
93 #define LOWPAN_IPHC_DAM_01 0x01
94 #define LOWPAN_IPHC_DAM_10 0x02
95 #define LOWPAN_IPHC_DAM_11 0x03
97 /* ipv6 address based on mac
98 * second bit-flip (Universe/Local) is done according RFC2464
100 #define is_addr_mac_addr_based(a, m) \
101 ((((a)->s6_addr[8]) == (((m)[0]) ^ 0x02)) && \
102 (((a)->s6_addr[9]) == (m)[1]) && \
103 (((a)->s6_addr[10]) == (m)[2]) && \
104 (((a)->s6_addr[11]) == (m)[3]) && \
105 (((a)->s6_addr[12]) == (m)[4]) && \
106 (((a)->s6_addr[13]) == (m)[5]) && \
107 (((a)->s6_addr[14]) == (m)[6]) && \
108 (((a)->s6_addr[15]) == (m)[7]))
110 /* check whether we can compress the IID to 16 bits,
111 * it's possible for unicast addresses with first 49 bits are zero only.
113 #define lowpan_is_iid_16_bit_compressable(a) \
114 ((((a)->s6_addr16[4]) == 0) && \
115 (((a)->s6_addr[10]) == 0) && \
116 (((a)->s6_addr[11]) == 0xff) && \
117 (((a)->s6_addr[12]) == 0xfe) && \
118 (((a)->s6_addr[13]) == 0))
120 /* check whether the 112-bit gid of the multicast address is mappable to: */
122 /* 48 bits, FFXX::00XX:XXXX:XXXX */
123 #define lowpan_is_mcast_addr_compressable48(a) \
124 ((((a)->s6_addr16[1]) == 0) && \
125 (((a)->s6_addr16[2]) == 0) && \
126 (((a)->s6_addr16[3]) == 0) && \
127 (((a)->s6_addr16[4]) == 0) && \
128 (((a)->s6_addr[10]) == 0))
130 /* 32 bits, FFXX::00XX:XXXX */
131 #define lowpan_is_mcast_addr_compressable32(a) \
132 ((((a)->s6_addr16[1]) == 0) && \
133 (((a)->s6_addr16[2]) == 0) && \
134 (((a)->s6_addr16[3]) == 0) && \
135 (((a)->s6_addr16[4]) == 0) && \
136 (((a)->s6_addr16[5]) == 0) && \
137 (((a)->s6_addr[12]) == 0))
139 /* 8 bits, FF02::00XX */
140 #define lowpan_is_mcast_addr_compressable8(a) \
141 ((((a)->s6_addr[1]) == 2) && \
142 (((a)->s6_addr16[1]) == 0) && \
143 (((a)->s6_addr16[2]) == 0) && \
144 (((a)->s6_addr16[3]) == 0) && \
145 (((a)->s6_addr16[4]) == 0) && \
146 (((a)->s6_addr16[5]) == 0) && \
147 (((a)->s6_addr16[6]) == 0) && \
148 (((a)->s6_addr[14]) == 0))
150 static inline void iphc_uncompress_eui64_lladdr(struct in6_addr
*ipaddr
,
153 /* fe:80::XXXX:XXXX:XXXX:XXXX
154 * \_________________/
157 ipaddr
->s6_addr
[0] = 0xFE;
158 ipaddr
->s6_addr
[1] = 0x80;
159 memcpy(&ipaddr
->s6_addr
[8], lladdr
, EUI64_ADDR_LEN
);
160 /* second bit-flip (Universe/Local)
161 * is done according RFC2464
163 ipaddr
->s6_addr
[8] ^= 0x02;
166 static inline void iphc_uncompress_802154_lladdr(struct in6_addr
*ipaddr
,
169 const struct ieee802154_addr
*addr
= lladdr
;
170 u8 eui64
[EUI64_ADDR_LEN
] = { };
172 switch (addr
->mode
) {
173 case IEEE802154_ADDR_LONG
:
174 ieee802154_le64_to_be64(eui64
, &addr
->extended_addr
);
175 iphc_uncompress_eui64_lladdr(ipaddr
, eui64
);
177 case IEEE802154_ADDR_SHORT
:
178 /* fe:80::ff:fe00:XXXX
182 * Universe/Local bit is zero.
184 ipaddr
->s6_addr
[0] = 0xFE;
185 ipaddr
->s6_addr
[1] = 0x80;
186 ipaddr
->s6_addr
[11] = 0xFF;
187 ipaddr
->s6_addr
[12] = 0xFE;
188 ieee802154_le16_to_be16(&ipaddr
->s6_addr16
[7],
192 /* should never handled and filtered by 802154 6lowpan */
198 /* Uncompress address function for source and
199 * destination address(non-multicast).
201 * address_mode is the masked value for sam or dam value
203 static int uncompress_addr(struct sk_buff
*skb
, const struct net_device
*dev
,
204 struct in6_addr
*ipaddr
, u8 address_mode
,
209 switch (address_mode
) {
210 /* SAM and DAM are the same here */
211 case LOWPAN_IPHC_DAM_00
:
212 /* for global link addresses */
213 fail
= lowpan_fetch_skb(skb
, ipaddr
->s6_addr
, 16);
215 case LOWPAN_IPHC_SAM_01
:
216 case LOWPAN_IPHC_DAM_01
:
217 /* fe:80::XXXX:XXXX:XXXX:XXXX */
218 ipaddr
->s6_addr
[0] = 0xFE;
219 ipaddr
->s6_addr
[1] = 0x80;
220 fail
= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[8], 8);
222 case LOWPAN_IPHC_SAM_10
:
223 case LOWPAN_IPHC_DAM_10
:
224 /* fe:80::ff:fe00:XXXX */
225 ipaddr
->s6_addr
[0] = 0xFE;
226 ipaddr
->s6_addr
[1] = 0x80;
227 ipaddr
->s6_addr
[11] = 0xFF;
228 ipaddr
->s6_addr
[12] = 0xFE;
229 fail
= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[14], 2);
231 case LOWPAN_IPHC_SAM_11
:
232 case LOWPAN_IPHC_DAM_11
:
234 switch (lowpan_priv(dev
)->lltype
) {
235 case LOWPAN_LLTYPE_IEEE802154
:
236 iphc_uncompress_802154_lladdr(ipaddr
, lladdr
);
239 iphc_uncompress_eui64_lladdr(ipaddr
, lladdr
);
244 pr_debug("Invalid address mode value: 0x%x\n", address_mode
);
249 pr_debug("Failed to fetch skb data\n");
253 raw_dump_inline(NULL
, "Reconstructed ipv6 addr is",
254 ipaddr
->s6_addr
, 16);
259 /* Uncompress address function for source context
260 * based address(non-multicast).
262 static int uncompress_context_based_src_addr(struct sk_buff
*skb
,
263 struct in6_addr
*ipaddr
,
266 switch (address_mode
) {
267 case LOWPAN_IPHC_SAM_00
:
269 * Do nothing, address is already ::
272 case LOWPAN_IPHC_SAM_01
:
274 case LOWPAN_IPHC_SAM_10
:
276 case LOWPAN_IPHC_SAM_11
:
278 netdev_warn(skb
->dev
, "SAM value 0x%x not supported\n",
282 pr_debug("Invalid sam value: 0x%x\n", address_mode
);
286 raw_dump_inline(NULL
,
287 "Reconstructed context based ipv6 src addr is",
288 ipaddr
->s6_addr
, 16);
293 /* Uncompress function for multicast destination address,
296 static int lowpan_uncompress_multicast_daddr(struct sk_buff
*skb
,
297 struct in6_addr
*ipaddr
,
302 switch (address_mode
) {
303 case LOWPAN_IPHC_DAM_00
:
304 /* 00: 128 bits. The full address
305 * is carried in-line.
307 fail
= lowpan_fetch_skb(skb
, ipaddr
->s6_addr
, 16);
309 case LOWPAN_IPHC_DAM_01
:
310 /* 01: 48 bits. The address takes
311 * the form ffXX::00XX:XXXX:XXXX.
313 ipaddr
->s6_addr
[0] = 0xFF;
314 fail
= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[1], 1);
315 fail
|= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[11], 5);
317 case LOWPAN_IPHC_DAM_10
:
318 /* 10: 32 bits. The address takes
319 * the form ffXX::00XX:XXXX.
321 ipaddr
->s6_addr
[0] = 0xFF;
322 fail
= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[1], 1);
323 fail
|= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[13], 3);
325 case LOWPAN_IPHC_DAM_11
:
326 /* 11: 8 bits. The address takes
327 * the form ff02::00XX.
329 ipaddr
->s6_addr
[0] = 0xFF;
330 ipaddr
->s6_addr
[1] = 0x02;
331 fail
= lowpan_fetch_skb(skb
, &ipaddr
->s6_addr
[15], 1);
334 pr_debug("DAM value has a wrong value: 0x%x\n", address_mode
);
339 pr_debug("Failed to fetch skb data\n");
343 raw_dump_inline(NULL
, "Reconstructed ipv6 multicast addr is",
344 ipaddr
->s6_addr
, 16);
349 /* get the ecn values from iphc tf format and set it to ipv6hdr */
350 static inline void lowpan_iphc_tf_set_ecn(struct ipv6hdr
*hdr
, const u8
*tf
)
352 /* get the two higher bits which is ecn */
353 u8 ecn
= tf
[0] & 0xc0;
355 /* ECN takes 0x30 in hdr->flow_lbl[0] */
356 hdr
->flow_lbl
[0] |= (ecn
>> 2);
359 /* get the dscp values from iphc tf format and set it to ipv6hdr */
360 static inline void lowpan_iphc_tf_set_dscp(struct ipv6hdr
*hdr
, const u8
*tf
)
362 /* DSCP is at place after ECN */
363 u8 dscp
= tf
[0] & 0x3f;
365 /* The four highest bits need to be set at hdr->priority */
366 hdr
->priority
|= ((dscp
& 0x3c) >> 2);
367 /* The two lower bits is part of hdr->flow_lbl[0] */
368 hdr
->flow_lbl
[0] |= ((dscp
& 0x03) << 6);
371 /* get the flow label values from iphc tf format and set it to ipv6hdr */
372 static inline void lowpan_iphc_tf_set_lbl(struct ipv6hdr
*hdr
, const u8
*lbl
)
374 /* flow label is always some array started with lower nibble of
375 * flow_lbl[0] and followed with two bytes afterwards. Inside inline
376 * data the flow_lbl position can be different, which will be handled
377 * by lbl pointer. E.g. case "01" vs "00" the traffic class is 8 bit
378 * shifted, the different lbl pointer will handle that.
380 * The flow label will started at lower nibble of flow_lbl[0], the
381 * higher nibbles are part of DSCP + ECN.
383 hdr
->flow_lbl
[0] |= lbl
[0] & 0x0f;
384 memcpy(&hdr
->flow_lbl
[1], &lbl
[1], 2);
387 /* lowpan_iphc_tf_decompress - decompress the traffic class.
388 * This function will return zero on success, a value lower than zero if
391 static int lowpan_iphc_tf_decompress(struct sk_buff
*skb
, struct ipv6hdr
*hdr
,
396 /* Traffic Class and Flow Label */
398 case LOWPAN_IPHC_TF_00
:
399 /* ECN + DSCP + 4-bit Pad + Flow Label (4 bytes) */
400 if (lowpan_fetch_skb(skb
, tf
, 4))
404 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
405 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
406 * |ECN| DSCP | rsv | Flow Label |
407 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
409 lowpan_iphc_tf_set_ecn(hdr
, tf
);
410 lowpan_iphc_tf_set_dscp(hdr
, tf
);
411 lowpan_iphc_tf_set_lbl(hdr
, &tf
[1]);
413 case LOWPAN_IPHC_TF_01
:
414 /* ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided. */
415 if (lowpan_fetch_skb(skb
, tf
, 3))
419 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
420 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
421 * |ECN|rsv| Flow Label |
422 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
424 lowpan_iphc_tf_set_ecn(hdr
, tf
);
425 lowpan_iphc_tf_set_lbl(hdr
, &tf
[0]);
427 case LOWPAN_IPHC_TF_10
:
428 /* ECN + DSCP (1 byte), Flow Label is elided. */
429 if (lowpan_fetch_skb(skb
, tf
, 1))
437 lowpan_iphc_tf_set_ecn(hdr
, tf
);
438 lowpan_iphc_tf_set_dscp(hdr
, tf
);
440 case LOWPAN_IPHC_TF_11
:
441 /* Traffic Class and Flow Label are elided */
451 /* TTL uncompression values */
452 static const u8 lowpan_ttl_values
[] = {
453 [LOWPAN_IPHC_HLIM_01
] = 1,
454 [LOWPAN_IPHC_HLIM_10
] = 64,
455 [LOWPAN_IPHC_HLIM_11
] = 255,
458 int lowpan_header_decompress(struct sk_buff
*skb
, const struct net_device
*dev
,
459 const void *daddr
, const void *saddr
)
461 struct ipv6hdr hdr
= {};
465 raw_dump_table(__func__
, "raw skb data dump uncompressed",
466 skb
->data
, skb
->len
);
468 if (lowpan_fetch_skb(skb
, &iphc0
, sizeof(iphc0
)) ||
469 lowpan_fetch_skb(skb
, &iphc1
, sizeof(iphc1
)))
472 /* another if the CID flag is set */
473 if (iphc1
& LOWPAN_IPHC_CID
)
478 err
= lowpan_iphc_tf_decompress(skb
, &hdr
,
479 iphc0
& LOWPAN_IPHC_TF_MASK
);
484 if (!(iphc0
& LOWPAN_IPHC_NH
)) {
485 /* Next header is carried inline */
486 if (lowpan_fetch_skb(skb
, &hdr
.nexthdr
, sizeof(hdr
.nexthdr
)))
489 pr_debug("NH flag is set, next header carried inline: %02x\n",
494 if ((iphc0
& LOWPAN_IPHC_HLIM_MASK
) != LOWPAN_IPHC_HLIM_00
) {
495 hdr
.hop_limit
= lowpan_ttl_values
[iphc0
& LOWPAN_IPHC_HLIM_MASK
];
497 if (lowpan_fetch_skb(skb
, &hdr
.hop_limit
,
498 sizeof(hdr
.hop_limit
)))
502 if (iphc1
& LOWPAN_IPHC_SAC
) {
503 /* Source address context based uncompression */
504 pr_debug("SAC bit is set. Handle context based source address.\n");
505 err
= uncompress_context_based_src_addr(skb
, &hdr
.saddr
,
506 iphc1
& LOWPAN_IPHC_SAM_MASK
);
508 /* Source address uncompression */
509 pr_debug("source address stateless compression\n");
510 err
= uncompress_addr(skb
, dev
, &hdr
.saddr
,
511 iphc1
& LOWPAN_IPHC_SAM_MASK
, saddr
);
514 /* Check on error of previous branch */
518 /* check for Multicast Compression */
519 if (iphc1
& LOWPAN_IPHC_M
) {
520 if (iphc1
& LOWPAN_IPHC_DAC
) {
521 pr_debug("dest: context-based mcast compression\n");
522 /* TODO: implement this */
524 err
= lowpan_uncompress_multicast_daddr(skb
, &hdr
.daddr
,
525 iphc1
& LOWPAN_IPHC_DAM_MASK
);
531 err
= uncompress_addr(skb
, dev
, &hdr
.daddr
,
532 iphc1
& LOWPAN_IPHC_DAM_MASK
, daddr
);
533 pr_debug("dest: stateless compression mode %d dest %pI6c\n",
534 iphc1
& LOWPAN_IPHC_DAM_MASK
, &hdr
.daddr
);
539 /* Next header data uncompression */
540 if (iphc0
& LOWPAN_IPHC_NH
) {
541 err
= lowpan_nhc_do_uncompression(skb
, dev
, &hdr
);
545 err
= skb_cow(skb
, sizeof(hdr
));
550 switch (lowpan_priv(dev
)->lltype
) {
551 case LOWPAN_LLTYPE_IEEE802154
:
552 if (lowpan_802154_cb(skb
)->d_size
)
553 hdr
.payload_len
= htons(lowpan_802154_cb(skb
)->d_size
-
554 sizeof(struct ipv6hdr
));
556 hdr
.payload_len
= htons(skb
->len
);
559 hdr
.payload_len
= htons(skb
->len
);
563 pr_debug("skb headroom size = %d, data length = %d\n",
564 skb_headroom(skb
), skb
->len
);
566 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n\t"
567 "nexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
568 hdr
.version
, ntohs(hdr
.payload_len
), hdr
.nexthdr
,
569 hdr
.hop_limit
, &hdr
.daddr
);
571 skb_push(skb
, sizeof(hdr
));
572 skb_reset_network_header(skb
);
573 skb_copy_to_linear_data(skb
, &hdr
, sizeof(hdr
));
575 raw_dump_table(__func__
, "raw header dump", (u8
*)&hdr
, sizeof(hdr
));
579 EXPORT_SYMBOL_GPL(lowpan_header_decompress
);
581 static const u8 lowpan_iphc_dam_to_sam_value
[] = {
582 [LOWPAN_IPHC_DAM_00
] = LOWPAN_IPHC_SAM_00
,
583 [LOWPAN_IPHC_DAM_01
] = LOWPAN_IPHC_SAM_01
,
584 [LOWPAN_IPHC_DAM_10
] = LOWPAN_IPHC_SAM_10
,
585 [LOWPAN_IPHC_DAM_11
] = LOWPAN_IPHC_SAM_11
,
588 static u8
lowpan_compress_addr_64(u8
**hc_ptr
, const struct in6_addr
*ipaddr
,
589 const unsigned char *lladdr
, bool sam
)
591 u8 dam
= LOWPAN_IPHC_DAM_00
;
593 if (is_addr_mac_addr_based(ipaddr
, lladdr
)) {
594 dam
= LOWPAN_IPHC_DAM_11
; /* 0-bits */
595 pr_debug("address compression 0 bits\n");
596 } else if (lowpan_is_iid_16_bit_compressable(ipaddr
)) {
597 /* compress IID to 16 bits xxxx::XXXX */
598 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr16
[7], 2);
599 dam
= LOWPAN_IPHC_DAM_10
; /* 16-bits */
600 raw_dump_inline(NULL
, "Compressed ipv6 addr is (16 bits)",
603 /* do not compress IID => xxxx::IID */
604 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr16
[4], 8);
605 dam
= LOWPAN_IPHC_DAM_01
; /* 64-bits */
606 raw_dump_inline(NULL
, "Compressed ipv6 addr is (64 bits)",
611 return lowpan_iphc_dam_to_sam_value
[dam
];
616 /* lowpan_iphc_get_tc - get the ECN + DCSP fields in hc format */
617 static inline u8
lowpan_iphc_get_tc(const struct ipv6hdr
*hdr
)
621 /* hdr->priority contains the higher bits of dscp, lower are part of
622 * flow_lbl[0]. Note ECN, DCSP is swapped in ipv6 hdr.
624 dscp
= (hdr
->priority
<< 2) | ((hdr
->flow_lbl
[0] & 0xc0) >> 6);
625 /* ECN is at the two lower bits from first nibble of flow_lbl[0] */
626 ecn
= (hdr
->flow_lbl
[0] & 0x30);
627 /* for pretty debug output, also shift ecn to get the ecn value */
628 pr_debug("ecn 0x%02x dscp 0x%02x\n", ecn
>> 4, dscp
);
629 /* ECN is at 0x30 now, shift it to have ECN + DCSP */
630 return (ecn
<< 2) | dscp
;
633 /* lowpan_iphc_is_flow_lbl_zero - check if flow label is zero */
634 static inline bool lowpan_iphc_is_flow_lbl_zero(const struct ipv6hdr
*hdr
)
636 return ((!(hdr
->flow_lbl
[0] & 0x0f)) &&
637 !hdr
->flow_lbl
[1] && !hdr
->flow_lbl
[2]);
640 /* lowpan_iphc_tf_compress - compress the traffic class which is set by
641 * ipv6hdr. Return the corresponding format identifier which is used.
643 static u8
lowpan_iphc_tf_compress(u8
**hc_ptr
, const struct ipv6hdr
*hdr
)
645 /* get ecn dscp data in a byteformat as: ECN(hi) + DSCP(lo) */
646 u8 tc
= lowpan_iphc_get_tc(hdr
), tf
[4], val
;
648 /* printout the traffic class in hc format */
649 pr_debug("tc 0x%02x\n", tc
);
651 if (lowpan_iphc_is_flow_lbl_zero(hdr
)) {
653 /* 11: Traffic Class and Flow Label are elided. */
654 val
= LOWPAN_IPHC_TF_11
;
656 /* 10: ECN + DSCP (1 byte), Flow Label is elided.
663 lowpan_push_hc_data(hc_ptr
, &tc
, sizeof(tc
));
664 val
= LOWPAN_IPHC_TF_10
;
667 /* check if dscp is zero, it's after the first two bit */
669 /* 01: ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided
672 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
673 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
674 * |ECN|rsv| Flow Label |
675 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
677 memcpy(&tf
[0], &hdr
->flow_lbl
[0], 3);
678 /* zero the highest 4-bits, contains DCSP + ECN */
681 tf
[0] |= (tc
& 0xc0);
683 lowpan_push_hc_data(hc_ptr
, tf
, 3);
684 val
= LOWPAN_IPHC_TF_01
;
686 /* 00: ECN + DSCP + 4-bit Pad + Flow Label (4 bytes)
689 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
690 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
691 * |ECN| DSCP | rsv | Flow Label |
692 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
694 memcpy(&tf
[0], &tc
, sizeof(tc
));
695 /* highest nibble of flow_lbl[0] is part of DSCP + ECN
696 * which will be the 4-bit pad and will be filled with
699 memcpy(&tf
[1], &hdr
->flow_lbl
[0], 3);
700 /* zero the 4-bit pad, which is reserved */
703 lowpan_push_hc_data(hc_ptr
, tf
, 4);
704 val
= LOWPAN_IPHC_TF_00
;
711 static u8
lowpan_iphc_mcast_addr_compress(u8
**hc_ptr
,
712 const struct in6_addr
*ipaddr
)
716 if (lowpan_is_mcast_addr_compressable8(ipaddr
)) {
717 pr_debug("compressed to 1 octet\n");
719 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr
[15], 1);
720 val
= LOWPAN_IPHC_DAM_11
;
721 } else if (lowpan_is_mcast_addr_compressable32(ipaddr
)) {
722 pr_debug("compressed to 4 octets\n");
723 /* second byte + the last three */
724 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr
[1], 1);
725 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr
[13], 3);
726 val
= LOWPAN_IPHC_DAM_10
;
727 } else if (lowpan_is_mcast_addr_compressable48(ipaddr
)) {
728 pr_debug("compressed to 6 octets\n");
729 /* second byte + the last five */
730 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr
[1], 1);
731 lowpan_push_hc_data(hc_ptr
, &ipaddr
->s6_addr
[11], 5);
732 val
= LOWPAN_IPHC_DAM_01
;
734 pr_debug("using full address\n");
735 lowpan_push_hc_data(hc_ptr
, ipaddr
->s6_addr
, 16);
736 val
= LOWPAN_IPHC_DAM_00
;
742 int lowpan_header_compress(struct sk_buff
*skb
, const struct net_device
*dev
,
743 const void *daddr
, const void *saddr
)
745 u8 iphc0
, iphc1
, *hc_ptr
;
747 u8 head
[LOWPAN_IPHC_MAX_HC_BUF_LEN
] = {};
750 if (skb
->protocol
!= htons(ETH_P_IPV6
))
756 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n"
757 "\tnexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
758 hdr
->version
, ntohs(hdr
->payload_len
), hdr
->nexthdr
,
759 hdr
->hop_limit
, &hdr
->daddr
);
761 raw_dump_table(__func__
, "raw skb network header dump",
762 skb_network_header(skb
), sizeof(struct ipv6hdr
));
764 /* As we copy some bit-length fields, in the IPHC encoding bytes,
765 * we sometimes use |=
766 * If the field is 0, and the current bit value in memory is 1,
767 * this does not work. We therefore reset the IPHC encoding here
769 iphc0
= LOWPAN_DISPATCH_IPHC
;
772 /* TODO: context lookup */
774 raw_dump_inline(__func__
, "saddr", saddr
, EUI64_ADDR_LEN
);
775 raw_dump_inline(__func__
, "daddr", daddr
, EUI64_ADDR_LEN
);
777 raw_dump_table(__func__
, "sending raw skb network uncompressed packet",
778 skb
->data
, skb
->len
);
780 /* Traffic Class, Flow Label compression */
781 iphc0
|= lowpan_iphc_tf_compress(&hc_ptr
, hdr
);
783 /* NOTE: payload length is always compressed */
785 /* Check if we provide the nhc format for nexthdr and compression
786 * functionality. If not nexthdr is handled inline and not compressed.
788 ret
= lowpan_nhc_check_compression(skb
, hdr
, &hc_ptr
);
790 lowpan_push_hc_data(&hc_ptr
, &hdr
->nexthdr
,
791 sizeof(hdr
->nexthdr
));
793 iphc0
|= LOWPAN_IPHC_NH
;
796 * if 1: compress, encoding is 01
797 * if 64: compress, encoding is 10
798 * if 255: compress, encoding is 11
799 * else do not compress
801 switch (hdr
->hop_limit
) {
803 iphc0
|= LOWPAN_IPHC_HLIM_01
;
806 iphc0
|= LOWPAN_IPHC_HLIM_10
;
809 iphc0
|= LOWPAN_IPHC_HLIM_11
;
812 lowpan_push_hc_data(&hc_ptr
, &hdr
->hop_limit
,
813 sizeof(hdr
->hop_limit
));
816 addr_type
= ipv6_addr_type(&hdr
->saddr
);
817 /* source address compression */
818 if (addr_type
== IPV6_ADDR_ANY
) {
819 pr_debug("source address is unspecified, setting SAC\n");
820 iphc1
|= LOWPAN_IPHC_SAC
;
822 if (addr_type
& IPV6_ADDR_LINKLOCAL
) {
823 iphc1
|= lowpan_compress_addr_64(&hc_ptr
, &hdr
->saddr
,
825 pr_debug("source address unicast link-local %pI6c iphc1 0x%02x\n",
828 pr_debug("send the full source address\n");
829 lowpan_push_hc_data(&hc_ptr
, hdr
->saddr
.s6_addr
, 16);
833 addr_type
= ipv6_addr_type(&hdr
->daddr
);
834 /* destination address compression */
835 if (addr_type
& IPV6_ADDR_MULTICAST
) {
836 pr_debug("destination address is multicast: ");
837 iphc1
|= LOWPAN_IPHC_M
;
838 iphc1
|= lowpan_iphc_mcast_addr_compress(&hc_ptr
, &hdr
->daddr
);
840 if (addr_type
& IPV6_ADDR_LINKLOCAL
) {
841 /* TODO: context lookup */
842 iphc1
|= lowpan_compress_addr_64(&hc_ptr
, &hdr
->daddr
,
844 pr_debug("dest address unicast link-local %pI6c "
845 "iphc1 0x%02x\n", &hdr
->daddr
, iphc1
);
847 pr_debug("dest address unicast %pI6c\n", &hdr
->daddr
);
848 lowpan_push_hc_data(&hc_ptr
, hdr
->daddr
.s6_addr
, 16);
852 /* next header compression */
853 if (iphc0
& LOWPAN_IPHC_NH
) {
854 ret
= lowpan_nhc_do_compression(skb
, hdr
, &hc_ptr
);
862 skb_pull(skb
, sizeof(struct ipv6hdr
));
863 skb_reset_transport_header(skb
);
864 memcpy(skb_push(skb
, hc_ptr
- head
), head
, hc_ptr
- head
);
865 skb_reset_network_header(skb
);
867 pr_debug("header len %d skb %u\n", (int)(hc_ptr
- head
), skb
->len
);
869 raw_dump_table(__func__
, "raw skb data dump compressed",
870 skb
->data
, skb
->len
);
873 EXPORT_SYMBOL_GPL(lowpan_header_compress
);