blob: 23654f1902f3d27b393b1dae5d1f0c258a0d7cea [file] [log] [blame]
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001/*
2 * Copyright 2011, Siemens AG
3 * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
4 */
5
Varka Bhadram4710d802014-07-02 09:01:09 +05306/* Based on patches from Jon Smirl <jonsmirl@gmail.com>
Jukka Rissanen8df8c562013-12-11 17:05:34 +02007 * 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 *
Jukka Rissanen8df8c562013-12-11 17:05:34 +020018 */
19
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.
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
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.
35 *
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
46 * SUCH DAMAGE.
47 */
48
49#include <linux/bitops.h>
50#include <linux/if_arp.h>
51#include <linux/netdevice.h>
Alexander Aring8911d772015-10-13 13:42:58 +020052
Alexander Aringcefc8c82014-03-05 14:29:05 +010053#include <net/6lowpan.h>
Jukka Rissanen8df8c562013-12-11 17:05:34 +020054#include <net/ipv6.h>
Alexander Aring8911d772015-10-13 13:42:58 +020055
Alexander Aring5609c182016-02-22 09:13:54 +010056#include "6lowpan_i.h"
Alexander Aringcc6ed262015-01-09 16:42:58 +010057#include "nhc.h"
58
Alexander Aringc8a3e7e2015-10-20 08:31:24 +020059/* Values of fields within the IPHC encoding first byte */
60#define LOWPAN_IPHC_TF_MASK 0x18
61#define LOWPAN_IPHC_TF_00 0x00
62#define LOWPAN_IPHC_TF_01 0x08
63#define LOWPAN_IPHC_TF_10 0x10
64#define LOWPAN_IPHC_TF_11 0x18
Alexander Aring63500472015-10-20 08:31:22 +020065
Alexander Aringc8a3e7e2015-10-20 08:31:24 +020066#define LOWPAN_IPHC_NH 0x04
67
68#define LOWPAN_IPHC_HLIM_MASK 0x03
69#define LOWPAN_IPHC_HLIM_00 0x00
70#define LOWPAN_IPHC_HLIM_01 0x01
71#define LOWPAN_IPHC_HLIM_10 0x02
72#define LOWPAN_IPHC_HLIM_11 0x03
Alexander Aring63500472015-10-20 08:31:22 +020073
74/* Values of fields within the IPHC encoding second byte */
75#define LOWPAN_IPHC_CID 0x80
76
Alexander Aring63500472015-10-20 08:31:22 +020077#define LOWPAN_IPHC_SAC 0x40
Alexander Aring63500472015-10-20 08:31:22 +020078
Alexander Aringc8a3e7e2015-10-20 08:31:24 +020079#define LOWPAN_IPHC_SAM_MASK 0x30
80#define LOWPAN_IPHC_SAM_00 0x00
81#define LOWPAN_IPHC_SAM_01 0x10
82#define LOWPAN_IPHC_SAM_10 0x20
83#define LOWPAN_IPHC_SAM_11 0x30
Alexander Aring63500472015-10-20 08:31:22 +020084
85#define LOWPAN_IPHC_M 0x08
Alexander Aringc8a3e7e2015-10-20 08:31:24 +020086
Alexander Aring63500472015-10-20 08:31:22 +020087#define LOWPAN_IPHC_DAC 0x04
Alexander Aringc8a3e7e2015-10-20 08:31:24 +020088
89#define LOWPAN_IPHC_DAM_MASK 0x03
Alexander Aring63500472015-10-20 08:31:22 +020090#define LOWPAN_IPHC_DAM_00 0x00
91#define LOWPAN_IPHC_DAM_01 0x01
92#define LOWPAN_IPHC_DAM_10 0x02
93#define LOWPAN_IPHC_DAM_11 0x03
94
Alexander Aring63500472015-10-20 08:31:22 +020095/* ipv6 address based on mac
96 * second bit-flip (Universe/Local) is done according RFC2464
97 */
98#define is_addr_mac_addr_based(a, m) \
99 ((((a)->s6_addr[8]) == (((m)[0]) ^ 0x02)) && \
100 (((a)->s6_addr[9]) == (m)[1]) && \
101 (((a)->s6_addr[10]) == (m)[2]) && \
102 (((a)->s6_addr[11]) == (m)[3]) && \
103 (((a)->s6_addr[12]) == (m)[4]) && \
104 (((a)->s6_addr[13]) == (m)[5]) && \
105 (((a)->s6_addr[14]) == (m)[6]) && \
106 (((a)->s6_addr[15]) == (m)[7]))
107
108/* check whether we can compress the IID to 16 bits,
109 * it's possible for unicast addresses with first 49 bits are zero only.
110 */
111#define lowpan_is_iid_16_bit_compressable(a) \
112 ((((a)->s6_addr16[4]) == 0) && \
113 (((a)->s6_addr[10]) == 0) && \
114 (((a)->s6_addr[11]) == 0xff) && \
115 (((a)->s6_addr[12]) == 0xfe) && \
116 (((a)->s6_addr[13]) == 0))
117
118/* check whether the 112-bit gid of the multicast address is mappable to: */
119
120/* 48 bits, FFXX::00XX:XXXX:XXXX */
121#define lowpan_is_mcast_addr_compressable48(a) \
122 ((((a)->s6_addr16[1]) == 0) && \
123 (((a)->s6_addr16[2]) == 0) && \
124 (((a)->s6_addr16[3]) == 0) && \
125 (((a)->s6_addr16[4]) == 0) && \
126 (((a)->s6_addr[10]) == 0))
127
128/* 32 bits, FFXX::00XX:XXXX */
129#define lowpan_is_mcast_addr_compressable32(a) \
130 ((((a)->s6_addr16[1]) == 0) && \
131 (((a)->s6_addr16[2]) == 0) && \
132 (((a)->s6_addr16[3]) == 0) && \
133 (((a)->s6_addr16[4]) == 0) && \
134 (((a)->s6_addr16[5]) == 0) && \
135 (((a)->s6_addr[12]) == 0))
136
137/* 8 bits, FF02::00XX */
138#define lowpan_is_mcast_addr_compressable8(a) \
139 ((((a)->s6_addr[1]) == 2) && \
140 (((a)->s6_addr16[1]) == 0) && \
141 (((a)->s6_addr16[2]) == 0) && \
142 (((a)->s6_addr16[3]) == 0) && \
143 (((a)->s6_addr16[4]) == 0) && \
144 (((a)->s6_addr16[5]) == 0) && \
145 (((a)->s6_addr16[6]) == 0) && \
146 (((a)->s6_addr[14]) == 0))
147
Alexander Aringfeb2add2016-03-16 13:52:41 +0100148#define lowpan_is_linklocal_zero_padded(a) \
149 (!(hdr->saddr.s6_addr[1] & 0x3f) && \
150 !hdr->saddr.s6_addr16[1] && \
151 !hdr->saddr.s6_addr32[1])
152
Alexander Aring5609c182016-02-22 09:13:54 +0100153#define LOWPAN_IPHC_CID_DCI(cid) (cid & 0x0f)
154#define LOWPAN_IPHC_CID_SCI(cid) ((cid & 0xf0) >> 4)
155
Alexander Aring7115a962016-04-11 11:04:20 +0200156static inline void
157lowpan_iphc_uncompress_802154_lladdr(struct in6_addr *ipaddr,
158 const void *lladdr)
Alexander Aring8911d772015-10-13 13:42:58 +0200159{
160 const struct ieee802154_addr *addr = lladdr;
Alexander Aring2bc068c2016-04-11 11:04:21 +0200161 u8 eui64[EUI64_ADDR_LEN];
Alexander Aring8911d772015-10-13 13:42:58 +0200162
163 switch (addr->mode) {
164 case IEEE802154_ADDR_LONG:
165 ieee802154_le64_to_be64(eui64, &addr->extended_addr);
Alexander Aring7115a962016-04-11 11:04:20 +0200166 lowpan_iphc_uncompress_eui64_lladdr(ipaddr, eui64);
Alexander Aring8911d772015-10-13 13:42:58 +0200167 break;
168 case IEEE802154_ADDR_SHORT:
169 /* fe:80::ff:fe00:XXXX
170 * \__/
171 * short_addr
172 *
173 * Universe/Local bit is zero.
174 */
175 ipaddr->s6_addr[0] = 0xFE;
176 ipaddr->s6_addr[1] = 0x80;
177 ipaddr->s6_addr[11] = 0xFF;
178 ipaddr->s6_addr[12] = 0xFE;
179 ieee802154_le16_to_be16(&ipaddr->s6_addr16[7],
180 &addr->short_addr);
181 break;
182 default:
183 /* should never handled and filtered by 802154 6lowpan */
184 WARN_ON_ONCE(1);
185 break;
186 }
187}
188
Alexander Aring5609c182016-02-22 09:13:54 +0100189static struct lowpan_iphc_ctx *
190lowpan_iphc_ctx_get_by_id(const struct net_device *dev, u8 id)
191{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200192 struct lowpan_iphc_ctx *ret = &lowpan_dev(dev)->ctx.table[id];
Alexander Aring5609c182016-02-22 09:13:54 +0100193
194 if (!lowpan_iphc_ctx_is_active(ret))
195 return NULL;
196
197 return ret;
198}
199
200static struct lowpan_iphc_ctx *
201lowpan_iphc_ctx_get_by_addr(const struct net_device *dev,
202 const struct in6_addr *addr)
203{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200204 struct lowpan_iphc_ctx *table = lowpan_dev(dev)->ctx.table;
Alexander Aring5609c182016-02-22 09:13:54 +0100205 struct lowpan_iphc_ctx *ret = NULL;
206 struct in6_addr addr_pfx;
207 u8 addr_plen;
208 int i;
209
210 for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++) {
211 /* Check if context is valid. A context that is not valid
212 * MUST NOT be used for compression.
213 */
214 if (!lowpan_iphc_ctx_is_active(&table[i]) ||
215 !lowpan_iphc_ctx_is_compression(&table[i]))
216 continue;
217
218 ipv6_addr_prefix(&addr_pfx, addr, table[i].plen);
219
220 /* if prefix len < 64, the remaining bits until 64th bit is
221 * zero. Otherwise we use table[i]->plen.
222 */
223 if (table[i].plen < 64)
224 addr_plen = 64;
225 else
226 addr_plen = table[i].plen;
227
228 if (ipv6_prefix_equal(&addr_pfx, &table[i].pfx, addr_plen)) {
229 /* remember first match */
230 if (!ret) {
231 ret = &table[i];
232 continue;
233 }
234
235 /* get the context with longest prefix len */
236 if (table[i].plen > ret->plen)
237 ret = &table[i];
238 }
239 }
240
241 return ret;
242}
243
244static struct lowpan_iphc_ctx *
245lowpan_iphc_ctx_get_by_mcast_addr(const struct net_device *dev,
246 const struct in6_addr *addr)
247{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200248 struct lowpan_iphc_ctx *table = lowpan_dev(dev)->ctx.table;
Alexander Aring5609c182016-02-22 09:13:54 +0100249 struct lowpan_iphc_ctx *ret = NULL;
250 struct in6_addr addr_mcast, network_pfx = {};
251 int i;
252
253 /* init mcast address with */
254 memcpy(&addr_mcast, addr, sizeof(*addr));
255
256 for (i = 0; i < LOWPAN_IPHC_CTX_TABLE_SIZE; i++) {
257 /* Check if context is valid. A context that is not valid
258 * MUST NOT be used for compression.
259 */
260 if (!lowpan_iphc_ctx_is_active(&table[i]) ||
261 !lowpan_iphc_ctx_is_compression(&table[i]))
262 continue;
263
264 /* setting plen */
265 addr_mcast.s6_addr[3] = table[i].plen;
266 /* get network prefix to copy into multicast address */
267 ipv6_addr_prefix(&network_pfx, &table[i].pfx,
268 table[i].plen);
269 /* setting network prefix */
270 memcpy(&addr_mcast.s6_addr[4], &network_pfx, 8);
271
272 if (ipv6_addr_equal(addr, &addr_mcast)) {
273 ret = &table[i];
274 break;
275 }
276 }
277
278 return ret;
279}
280
Varka Bhadram4710d802014-07-02 09:01:09 +0530281/* Uncompress address function for source and
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200282 * destination address(non-multicast).
283 *
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200284 * address_mode is the masked value for sam or dam value
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200285 */
Alexander Aring7115a962016-04-11 11:04:20 +0200286static int lowpan_iphc_uncompress_addr(struct sk_buff *skb,
287 const struct net_device *dev,
288 struct in6_addr *ipaddr,
289 u8 address_mode, const void *lladdr)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200290{
291 bool fail;
292
293 switch (address_mode) {
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200294 /* SAM and DAM are the same here */
295 case LOWPAN_IPHC_DAM_00:
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200296 /* for global link addresses */
297 fail = lowpan_fetch_skb(skb, ipaddr->s6_addr, 16);
298 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200299 case LOWPAN_IPHC_SAM_01:
300 case LOWPAN_IPHC_DAM_01:
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200301 /* fe:80::XXXX:XXXX:XXXX:XXXX */
302 ipaddr->s6_addr[0] = 0xFE;
303 ipaddr->s6_addr[1] = 0x80;
304 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[8], 8);
305 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200306 case LOWPAN_IPHC_SAM_10:
307 case LOWPAN_IPHC_DAM_10:
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200308 /* fe:80::ff:fe00:XXXX */
309 ipaddr->s6_addr[0] = 0xFE;
310 ipaddr->s6_addr[1] = 0x80;
311 ipaddr->s6_addr[11] = 0xFF;
312 ipaddr->s6_addr[12] = 0xFE;
313 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[14], 2);
314 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200315 case LOWPAN_IPHC_SAM_11:
316 case LOWPAN_IPHC_DAM_11:
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200317 fail = false;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200318 switch (lowpan_dev(dev)->lltype) {
Alexander Aring8911d772015-10-13 13:42:58 +0200319 case LOWPAN_LLTYPE_IEEE802154:
Alexander Aring7115a962016-04-11 11:04:20 +0200320 lowpan_iphc_uncompress_802154_lladdr(ipaddr, lladdr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200321 break;
322 default:
Alexander Aring7115a962016-04-11 11:04:20 +0200323 lowpan_iphc_uncompress_eui64_lladdr(ipaddr, lladdr);
Alexander Aring8911d772015-10-13 13:42:58 +0200324 break;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200325 }
326 break;
327 default:
328 pr_debug("Invalid address mode value: 0x%x\n", address_mode);
329 return -EINVAL;
330 }
331
332 if (fail) {
333 pr_debug("Failed to fetch skb data\n");
334 return -EIO;
335 }
336
337 raw_dump_inline(NULL, "Reconstructed ipv6 addr is",
338 ipaddr->s6_addr, 16);
339
340 return 0;
341}
342
Varka Bhadram4710d802014-07-02 09:01:09 +0530343/* Uncompress address function for source context
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200344 * based address(non-multicast).
345 */
Alexander Aring7115a962016-04-11 11:04:20 +0200346static int lowpan_iphc_uncompress_ctx_addr(struct sk_buff *skb,
347 const struct net_device *dev,
348 const struct lowpan_iphc_ctx *ctx,
349 struct in6_addr *ipaddr,
350 u8 address_mode, const void *lladdr)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200351{
Alexander Aring5609c182016-02-22 09:13:54 +0100352 bool fail;
353
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200354 switch (address_mode) {
Alexander Aring5609c182016-02-22 09:13:54 +0100355 /* SAM and DAM are the same here */
356 case LOWPAN_IPHC_DAM_00:
357 fail = false;
358 /* SAM_00 -> unspec address ::
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200359 * Do nothing, address is already ::
Alexander Aring5609c182016-02-22 09:13:54 +0100360 *
361 * DAM 00 -> reserved should never occur.
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200362 */
363 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200364 case LOWPAN_IPHC_SAM_01:
Alexander Aring5609c182016-02-22 09:13:54 +0100365 case LOWPAN_IPHC_DAM_01:
366 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[8], 8);
367 ipv6_addr_prefix_copy(ipaddr, &ctx->pfx, ctx->plen);
368 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200369 case LOWPAN_IPHC_SAM_10:
Alexander Aring5609c182016-02-22 09:13:54 +0100370 case LOWPAN_IPHC_DAM_10:
371 ipaddr->s6_addr[11] = 0xFF;
372 ipaddr->s6_addr[12] = 0xFE;
373 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[14], 2);
374 ipv6_addr_prefix_copy(ipaddr, &ctx->pfx, ctx->plen);
375 break;
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200376 case LOWPAN_IPHC_SAM_11:
Alexander Aring5609c182016-02-22 09:13:54 +0100377 case LOWPAN_IPHC_DAM_11:
378 fail = false;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200379 switch (lowpan_dev(dev)->lltype) {
Alexander Aring5609c182016-02-22 09:13:54 +0100380 case LOWPAN_LLTYPE_IEEE802154:
Alexander Aring7115a962016-04-11 11:04:20 +0200381 lowpan_iphc_uncompress_802154_lladdr(ipaddr, lladdr);
Alexander Aring5609c182016-02-22 09:13:54 +0100382 break;
383 default:
Alexander Aring7115a962016-04-11 11:04:20 +0200384 lowpan_iphc_uncompress_eui64_lladdr(ipaddr, lladdr);
Alexander Aring5609c182016-02-22 09:13:54 +0100385 break;
386 }
387 ipv6_addr_prefix_copy(ipaddr, &ctx->pfx, ctx->plen);
388 break;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200389 default:
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200390 pr_debug("Invalid sam value: 0x%x\n", address_mode);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200391 return -EINVAL;
392 }
393
Alexander Aring5609c182016-02-22 09:13:54 +0100394 if (fail) {
395 pr_debug("Failed to fetch skb data\n");
396 return -EIO;
397 }
398
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200399 raw_dump_inline(NULL,
400 "Reconstructed context based ipv6 src addr is",
401 ipaddr->s6_addr, 16);
402
403 return 0;
404}
405
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200406/* Uncompress function for multicast destination address,
407 * when M bit is set.
408 */
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200409static int lowpan_uncompress_multicast_daddr(struct sk_buff *skb,
410 struct in6_addr *ipaddr,
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200411 u8 address_mode)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200412{
413 bool fail;
414
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200415 switch (address_mode) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200416 case LOWPAN_IPHC_DAM_00:
417 /* 00: 128 bits. The full address
418 * is carried in-line.
419 */
420 fail = lowpan_fetch_skb(skb, ipaddr->s6_addr, 16);
421 break;
422 case LOWPAN_IPHC_DAM_01:
423 /* 01: 48 bits. The address takes
424 * the form ffXX::00XX:XXXX:XXXX.
425 */
426 ipaddr->s6_addr[0] = 0xFF;
427 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[1], 1);
428 fail |= lowpan_fetch_skb(skb, &ipaddr->s6_addr[11], 5);
429 break;
430 case LOWPAN_IPHC_DAM_10:
431 /* 10: 32 bits. The address takes
432 * the form ffXX::00XX:XXXX.
433 */
434 ipaddr->s6_addr[0] = 0xFF;
435 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[1], 1);
436 fail |= lowpan_fetch_skb(skb, &ipaddr->s6_addr[13], 3);
437 break;
438 case LOWPAN_IPHC_DAM_11:
439 /* 11: 8 bits. The address takes
440 * the form ff02::00XX.
441 */
442 ipaddr->s6_addr[0] = 0xFF;
443 ipaddr->s6_addr[1] = 0x02;
444 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[15], 1);
445 break;
446 default:
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200447 pr_debug("DAM value has a wrong value: 0x%x\n", address_mode);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200448 return -EINVAL;
449 }
450
451 if (fail) {
452 pr_debug("Failed to fetch skb data\n");
453 return -EIO;
454 }
455
456 raw_dump_inline(NULL, "Reconstructed ipv6 multicast addr is",
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200457 ipaddr->s6_addr, 16);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200458
459 return 0;
460}
461
Alexander Aring5609c182016-02-22 09:13:54 +0100462static int lowpan_uncompress_multicast_ctx_daddr(struct sk_buff *skb,
463 struct lowpan_iphc_ctx *ctx,
464 struct in6_addr *ipaddr,
465 u8 address_mode)
466{
467 struct in6_addr network_pfx = {};
468 bool fail;
469
470 ipaddr->s6_addr[0] = 0xFF;
471 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[1], 2);
472 fail |= lowpan_fetch_skb(skb, &ipaddr->s6_addr[12], 4);
Andrzej Hajda4c23d872016-02-24 09:32:13 +0100473 if (fail)
Alexander Aring5609c182016-02-22 09:13:54 +0100474 return -EIO;
475
476 /* take prefix_len and network prefix from the context */
477 ipaddr->s6_addr[3] = ctx->plen;
478 /* get network prefix to copy into multicast address */
479 ipv6_addr_prefix(&network_pfx, &ctx->pfx, ctx->plen);
480 /* setting network prefix */
481 memcpy(&ipaddr->s6_addr[4], &network_pfx, 8);
482
483 return 0;
484}
485
Alexander Aringb5af9bd2015-10-20 08:31:25 +0200486/* get the ecn values from iphc tf format and set it to ipv6hdr */
487static inline void lowpan_iphc_tf_set_ecn(struct ipv6hdr *hdr, const u8 *tf)
488{
489 /* get the two higher bits which is ecn */
490 u8 ecn = tf[0] & 0xc0;
491
492 /* ECN takes 0x30 in hdr->flow_lbl[0] */
493 hdr->flow_lbl[0] |= (ecn >> 2);
494}
495
496/* get the dscp values from iphc tf format and set it to ipv6hdr */
497static inline void lowpan_iphc_tf_set_dscp(struct ipv6hdr *hdr, const u8 *tf)
498{
499 /* DSCP is at place after ECN */
500 u8 dscp = tf[0] & 0x3f;
501
502 /* The four highest bits need to be set at hdr->priority */
503 hdr->priority |= ((dscp & 0x3c) >> 2);
504 /* The two lower bits is part of hdr->flow_lbl[0] */
505 hdr->flow_lbl[0] |= ((dscp & 0x03) << 6);
506}
507
508/* get the flow label values from iphc tf format and set it to ipv6hdr */
509static inline void lowpan_iphc_tf_set_lbl(struct ipv6hdr *hdr, const u8 *lbl)
510{
511 /* flow label is always some array started with lower nibble of
512 * flow_lbl[0] and followed with two bytes afterwards. Inside inline
513 * data the flow_lbl position can be different, which will be handled
514 * by lbl pointer. E.g. case "01" vs "00" the traffic class is 8 bit
515 * shifted, the different lbl pointer will handle that.
516 *
517 * The flow label will started at lower nibble of flow_lbl[0], the
518 * higher nibbles are part of DSCP + ECN.
519 */
520 hdr->flow_lbl[0] |= lbl[0] & 0x0f;
521 memcpy(&hdr->flow_lbl[1], &lbl[1], 2);
522}
523
524/* lowpan_iphc_tf_decompress - decompress the traffic class.
525 * This function will return zero on success, a value lower than zero if
526 * failed.
527 */
528static int lowpan_iphc_tf_decompress(struct sk_buff *skb, struct ipv6hdr *hdr,
529 u8 val)
530{
531 u8 tf[4];
532
533 /* Traffic Class and Flow Label */
534 switch (val) {
535 case LOWPAN_IPHC_TF_00:
536 /* ECN + DSCP + 4-bit Pad + Flow Label (4 bytes) */
537 if (lowpan_fetch_skb(skb, tf, 4))
538 return -EINVAL;
539
540 /* 1 2 3
541 * 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
542 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
543 * |ECN| DSCP | rsv | Flow Label |
544 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
545 */
546 lowpan_iphc_tf_set_ecn(hdr, tf);
547 lowpan_iphc_tf_set_dscp(hdr, tf);
548 lowpan_iphc_tf_set_lbl(hdr, &tf[1]);
549 break;
550 case LOWPAN_IPHC_TF_01:
551 /* ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided. */
552 if (lowpan_fetch_skb(skb, tf, 3))
553 return -EINVAL;
554
555 /* 1 2
556 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
557 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
558 * |ECN|rsv| Flow Label |
559 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
560 */
561 lowpan_iphc_tf_set_ecn(hdr, tf);
562 lowpan_iphc_tf_set_lbl(hdr, &tf[0]);
563 break;
564 case LOWPAN_IPHC_TF_10:
565 /* ECN + DSCP (1 byte), Flow Label is elided. */
566 if (lowpan_fetch_skb(skb, tf, 1))
567 return -EINVAL;
568
569 /* 0 1 2 3 4 5 6 7
570 * +-+-+-+-+-+-+-+-+
571 * |ECN| DSCP |
572 * +-+-+-+-+-+-+-+-+
573 */
574 lowpan_iphc_tf_set_ecn(hdr, tf);
575 lowpan_iphc_tf_set_dscp(hdr, tf);
576 break;
577 case LOWPAN_IPHC_TF_11:
578 /* Traffic Class and Flow Label are elided */
579 break;
580 default:
581 WARN_ON_ONCE(1);
582 return -EINVAL;
583 }
584
585 return 0;
586}
587
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200588/* TTL uncompression values */
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200589static const u8 lowpan_ttl_values[] = {
590 [LOWPAN_IPHC_HLIM_01] = 1,
591 [LOWPAN_IPHC_HLIM_10] = 64,
592 [LOWPAN_IPHC_HLIM_11] = 255,
593};
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200594
Alexander Aring8911d772015-10-13 13:42:58 +0200595int lowpan_header_decompress(struct sk_buff *skb, const struct net_device *dev,
596 const void *daddr, const void *saddr)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200597{
598 struct ipv6hdr hdr = {};
Alexander Aring5609c182016-02-22 09:13:54 +0100599 struct lowpan_iphc_ctx *ci;
600 u8 iphc0, iphc1, cid = 0;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200601 int err;
602
603 raw_dump_table(__func__, "raw skb data dump uncompressed",
Varka Bhadram4710d802014-07-02 09:01:09 +0530604 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200605
Alexander Aring478208e2015-10-13 13:42:59 +0200606 if (lowpan_fetch_skb(skb, &iphc0, sizeof(iphc0)) ||
607 lowpan_fetch_skb(skb, &iphc1, sizeof(iphc1)))
Alexander Aring8911d772015-10-13 13:42:58 +0200608 return -EINVAL;
609
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200610 hdr.version = 6;
611
Alexander Aring5609c182016-02-22 09:13:54 +0100612 /* default CID = 0, another if the CID flag is set */
613 if (iphc1 & LOWPAN_IPHC_CID) {
614 if (lowpan_fetch_skb(skb, &cid, sizeof(cid)))
615 return -EINVAL;
616 }
617
Alexander Aringb5af9bd2015-10-20 08:31:25 +0200618 err = lowpan_iphc_tf_decompress(skb, &hdr,
619 iphc0 & LOWPAN_IPHC_TF_MASK);
620 if (err < 0)
621 return err;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200622
623 /* Next Header */
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200624 if (!(iphc0 & LOWPAN_IPHC_NH)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200625 /* Next header is carried inline */
Alexander Aring4ebc9602014-07-29 23:47:00 +0200626 if (lowpan_fetch_skb(skb, &hdr.nexthdr, sizeof(hdr.nexthdr)))
Martin Townsend56b2c3e2014-11-06 19:15:13 +0000627 return -EINVAL;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200628
629 pr_debug("NH flag is set, next header carried inline: %02x\n",
630 hdr.nexthdr);
631 }
632
633 /* Hop Limit */
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200634 if ((iphc0 & LOWPAN_IPHC_HLIM_MASK) != LOWPAN_IPHC_HLIM_00) {
635 hdr.hop_limit = lowpan_ttl_values[iphc0 & LOWPAN_IPHC_HLIM_MASK];
Varka Bhadram4710d802014-07-02 09:01:09 +0530636 } else {
Alexander Aring4ebc9602014-07-29 23:47:00 +0200637 if (lowpan_fetch_skb(skb, &hdr.hop_limit,
638 sizeof(hdr.hop_limit)))
Martin Townsend56b2c3e2014-11-06 19:15:13 +0000639 return -EINVAL;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200640 }
641
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200642 if (iphc1 & LOWPAN_IPHC_SAC) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200643 spin_lock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100644 ci = lowpan_iphc_ctx_get_by_id(dev, LOWPAN_IPHC_CID_SCI(cid));
645 if (!ci) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200646 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100647 return -EINVAL;
648 }
649
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200650 pr_debug("SAC bit is set. Handle context based source address.\n");
Alexander Aring7115a962016-04-11 11:04:20 +0200651 err = lowpan_iphc_uncompress_ctx_addr(skb, dev, ci, &hdr.saddr,
652 iphc1 & LOWPAN_IPHC_SAM_MASK,
653 saddr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200654 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200655 } else {
656 /* Source address uncompression */
657 pr_debug("source address stateless compression\n");
Alexander Aring7115a962016-04-11 11:04:20 +0200658 err = lowpan_iphc_uncompress_addr(skb, dev, &hdr.saddr,
659 iphc1 & LOWPAN_IPHC_SAM_MASK,
660 saddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200661 }
662
663 /* Check on error of previous branch */
664 if (err)
Martin Townsend56b2c3e2014-11-06 19:15:13 +0000665 return -EINVAL;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200666
Alexander Aring5609c182016-02-22 09:13:54 +0100667 switch (iphc1 & (LOWPAN_IPHC_M | LOWPAN_IPHC_DAC)) {
668 case LOWPAN_IPHC_M | LOWPAN_IPHC_DAC:
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200669 spin_lock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100670 ci = lowpan_iphc_ctx_get_by_id(dev, LOWPAN_IPHC_CID_DCI(cid));
671 if (!ci) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200672 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100673 return -EINVAL;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200674 }
Alexander Aring5609c182016-02-22 09:13:54 +0100675
676 /* multicast with context */
677 pr_debug("dest: context-based mcast compression\n");
678 err = lowpan_uncompress_multicast_ctx_daddr(skb, ci,
679 &hdr.daddr,
680 iphc1 & LOWPAN_IPHC_DAM_MASK);
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200681 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100682 break;
683 case LOWPAN_IPHC_M:
684 /* multicast */
685 err = lowpan_uncompress_multicast_daddr(skb, &hdr.daddr,
686 iphc1 & LOWPAN_IPHC_DAM_MASK);
687 break;
688 case LOWPAN_IPHC_DAC:
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200689 spin_lock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100690 ci = lowpan_iphc_ctx_get_by_id(dev, LOWPAN_IPHC_CID_DCI(cid));
691 if (!ci) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200692 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100693 return -EINVAL;
694 }
695
696 /* Destination address context based uncompression */
697 pr_debug("DAC bit is set. Handle context based destination address.\n");
Alexander Aring7115a962016-04-11 11:04:20 +0200698 err = lowpan_iphc_uncompress_ctx_addr(skb, dev, ci, &hdr.daddr,
699 iphc1 & LOWPAN_IPHC_DAM_MASK,
700 daddr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200701 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +0100702 break;
703 default:
Alexander Aring7115a962016-04-11 11:04:20 +0200704 err = lowpan_iphc_uncompress_addr(skb, dev, &hdr.daddr,
705 iphc1 & LOWPAN_IPHC_DAM_MASK,
706 daddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200707 pr_debug("dest: stateless compression mode %d dest %pI6c\n",
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200708 iphc1 & LOWPAN_IPHC_DAM_MASK, &hdr.daddr);
Alexander Aring5609c182016-02-22 09:13:54 +0100709 break;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200710 }
711
Alexander Aring5609c182016-02-22 09:13:54 +0100712 if (err)
713 return -EINVAL;
714
Alexander Aringcc6ed262015-01-09 16:42:58 +0100715 /* Next header data uncompression */
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200716 if (iphc0 & LOWPAN_IPHC_NH) {
Alexander Aringcc6ed262015-01-09 16:42:58 +0100717 err = lowpan_nhc_do_uncompression(skb, dev, &hdr);
718 if (err < 0)
Martin Townsend11e3ff72014-10-13 11:00:56 +0100719 return err;
Martin Townsend11e3ff72014-10-13 11:00:56 +0100720 } else {
721 err = skb_cow(skb, sizeof(hdr));
Martin Townsend56b2c3e2014-11-06 19:15:13 +0000722 if (unlikely(err))
Martin Townsend11e3ff72014-10-13 11:00:56 +0100723 return err;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200724 }
725
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200726 switch (lowpan_dev(dev)->lltype) {
Alexander Aring72a5e6b2015-09-02 14:21:25 +0200727 case LOWPAN_LLTYPE_IEEE802154:
728 if (lowpan_802154_cb(skb)->d_size)
729 hdr.payload_len = htons(lowpan_802154_cb(skb)->d_size -
730 sizeof(struct ipv6hdr));
731 else
732 hdr.payload_len = htons(skb->len);
733 break;
734 default:
735 hdr.payload_len = htons(skb->len);
736 break;
737 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200738
739 pr_debug("skb headroom size = %d, data length = %d\n",
740 skb_headroom(skb), skb->len);
741
742 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n\t"
743 "nexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
744 hdr.version, ntohs(hdr.payload_len), hdr.nexthdr,
745 hdr.hop_limit, &hdr.daddr);
746
Martin Townsendf8b36172014-10-23 15:40:53 +0100747 skb_push(skb, sizeof(hdr));
Michael Scott3e8e4382018-06-19 16:44:06 -0700748 skb_reset_mac_header(skb);
Martin Townsendf8b36172014-10-23 15:40:53 +0100749 skb_reset_network_header(skb);
750 skb_copy_to_linear_data(skb, &hdr, sizeof(hdr));
751
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200752 raw_dump_table(__func__, "raw header dump", (u8 *)&hdr, sizeof(hdr));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200753
Martin Townsendf8b36172014-10-23 15:40:53 +0100754 return 0;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200755}
Martin Townsend01141232014-10-23 15:40:56 +0100756EXPORT_SYMBOL_GPL(lowpan_header_decompress);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200757
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200758static const u8 lowpan_iphc_dam_to_sam_value[] = {
759 [LOWPAN_IPHC_DAM_00] = LOWPAN_IPHC_SAM_00,
760 [LOWPAN_IPHC_DAM_01] = LOWPAN_IPHC_SAM_01,
761 [LOWPAN_IPHC_DAM_10] = LOWPAN_IPHC_SAM_10,
762 [LOWPAN_IPHC_DAM_11] = LOWPAN_IPHC_SAM_11,
763};
764
Alexander Aringeab560e2016-06-15 21:20:27 +0200765static inline bool
766lowpan_iphc_compress_ctx_802154_lladdr(const struct in6_addr *ipaddr,
767 const struct lowpan_iphc_ctx *ctx,
768 const void *lladdr)
769{
770 const struct ieee802154_addr *addr = lladdr;
771 unsigned char extended_addr[EUI64_ADDR_LEN];
772 bool lladdr_compress = false;
773 struct in6_addr tmp = {};
774
775 switch (addr->mode) {
776 case IEEE802154_ADDR_LONG:
777 ieee802154_le64_to_be64(&extended_addr, &addr->extended_addr);
778 /* check for SAM/DAM = 11 */
779 memcpy(&tmp.s6_addr[8], &extended_addr, EUI64_ADDR_LEN);
780 /* second bit-flip (Universe/Local) is done according RFC2464 */
781 tmp.s6_addr[8] ^= 0x02;
782 /* context information are always used */
783 ipv6_addr_prefix_copy(&tmp, &ctx->pfx, ctx->plen);
784 if (ipv6_addr_equal(&tmp, ipaddr))
785 lladdr_compress = true;
786 break;
787 case IEEE802154_ADDR_SHORT:
788 tmp.s6_addr[11] = 0xFF;
789 tmp.s6_addr[12] = 0xFE;
790 ieee802154_le16_to_be16(&tmp.s6_addr16[7],
791 &addr->short_addr);
792 /* context information are always used */
793 ipv6_addr_prefix_copy(&tmp, &ctx->pfx, ctx->plen);
794 if (ipv6_addr_equal(&tmp, ipaddr))
795 lladdr_compress = true;
796 break;
797 default:
798 /* should never handled and filtered by 802154 6lowpan */
799 WARN_ON_ONCE(1);
800 break;
801 }
802
803 return lladdr_compress;
804}
805
806static u8 lowpan_compress_ctx_addr(u8 **hc_ptr, const struct net_device *dev,
807 const struct in6_addr *ipaddr,
Alexander Aring5609c182016-02-22 09:13:54 +0100808 const struct lowpan_iphc_ctx *ctx,
809 const unsigned char *lladdr, bool sam)
810{
811 struct in6_addr tmp = {};
812 u8 dam;
813
Alexander Aringeab560e2016-06-15 21:20:27 +0200814 switch (lowpan_dev(dev)->lltype) {
815 case LOWPAN_LLTYPE_IEEE802154:
816 if (lowpan_iphc_compress_ctx_802154_lladdr(ipaddr, ctx,
817 lladdr)) {
818 dam = LOWPAN_IPHC_DAM_11;
819 goto out;
820 }
821 break;
822 default:
823 /* check for SAM/DAM = 11 */
824 memcpy(&tmp.s6_addr[8], lladdr, EUI64_ADDR_LEN);
825 /* second bit-flip (Universe/Local) is done according RFC2464 */
826 tmp.s6_addr[8] ^= 0x02;
827 /* context information are always used */
828 ipv6_addr_prefix_copy(&tmp, &ctx->pfx, ctx->plen);
829 if (ipv6_addr_equal(&tmp, ipaddr)) {
830 dam = LOWPAN_IPHC_DAM_11;
831 goto out;
832 }
833 break;
Alexander Aring5609c182016-02-22 09:13:54 +0100834 }
835
836 memset(&tmp, 0, sizeof(tmp));
Alexander Aring24c4a812016-03-07 20:07:31 +0100837 /* check for SAM/DAM = 10 */
Alexander Aring5609c182016-02-22 09:13:54 +0100838 tmp.s6_addr[11] = 0xFF;
839 tmp.s6_addr[12] = 0xFE;
840 memcpy(&tmp.s6_addr[14], &ipaddr->s6_addr[14], 2);
841 /* context information are always used */
842 ipv6_addr_prefix_copy(&tmp, &ctx->pfx, ctx->plen);
843 if (ipv6_addr_equal(&tmp, ipaddr)) {
844 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[14], 2);
845 dam = LOWPAN_IPHC_DAM_10;
846 goto out;
847 }
848
849 memset(&tmp, 0, sizeof(tmp));
Alexander Aring24c4a812016-03-07 20:07:31 +0100850 /* check for SAM/DAM = 01, should always match */
Alexander Aring5609c182016-02-22 09:13:54 +0100851 memcpy(&tmp.s6_addr[8], &ipaddr->s6_addr[8], 8);
852 /* context information are always used */
853 ipv6_addr_prefix_copy(&tmp, &ctx->pfx, ctx->plen);
854 if (ipv6_addr_equal(&tmp, ipaddr)) {
855 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[8], 8);
856 dam = LOWPAN_IPHC_DAM_01;
857 goto out;
858 }
859
Alexander Aring2306f652016-02-26 09:06:07 +0100860 WARN_ONCE(1, "context found but no address mode matched\n");
861 return LOWPAN_IPHC_DAM_00;
Alexander Aring5609c182016-02-22 09:13:54 +0100862out:
863
864 if (sam)
865 return lowpan_iphc_dam_to_sam_value[dam];
866 else
867 return dam;
868}
869
Alexander Aringeab560e2016-06-15 21:20:27 +0200870static inline bool
871lowpan_iphc_compress_802154_lladdr(const struct in6_addr *ipaddr,
872 const void *lladdr)
873{
874 const struct ieee802154_addr *addr = lladdr;
875 unsigned char extended_addr[EUI64_ADDR_LEN];
876 bool lladdr_compress = false;
877 struct in6_addr tmp = {};
878
879 switch (addr->mode) {
880 case IEEE802154_ADDR_LONG:
881 ieee802154_le64_to_be64(&extended_addr, &addr->extended_addr);
882 if (is_addr_mac_addr_based(ipaddr, extended_addr))
883 lladdr_compress = true;
884 break;
885 case IEEE802154_ADDR_SHORT:
886 /* fe:80::ff:fe00:XXXX
887 * \__/
888 * short_addr
889 *
890 * Universe/Local bit is zero.
891 */
892 tmp.s6_addr[0] = 0xFE;
893 tmp.s6_addr[1] = 0x80;
894 tmp.s6_addr[11] = 0xFF;
895 tmp.s6_addr[12] = 0xFE;
896 ieee802154_le16_to_be16(&tmp.s6_addr16[7],
897 &addr->short_addr);
898 if (ipv6_addr_equal(&tmp, ipaddr))
899 lladdr_compress = true;
900 break;
901 default:
902 /* should never handled and filtered by 802154 6lowpan */
903 WARN_ON_ONCE(1);
904 break;
905 }
906
907 return lladdr_compress;
908}
909
910static u8 lowpan_compress_addr_64(u8 **hc_ptr, const struct net_device *dev,
911 const struct in6_addr *ipaddr,
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200912 const unsigned char *lladdr, bool sam)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200913{
Alexander Aringeab560e2016-06-15 21:20:27 +0200914 u8 dam = LOWPAN_IPHC_DAM_01;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200915
Alexander Aringeab560e2016-06-15 21:20:27 +0200916 switch (lowpan_dev(dev)->lltype) {
917 case LOWPAN_LLTYPE_IEEE802154:
918 if (lowpan_iphc_compress_802154_lladdr(ipaddr, lladdr)) {
919 dam = LOWPAN_IPHC_DAM_11; /* 0-bits */
920 pr_debug("address compression 0 bits\n");
921 goto out;
922 }
923 break;
924 default:
925 if (is_addr_mac_addr_based(ipaddr, lladdr)) {
926 dam = LOWPAN_IPHC_DAM_11; /* 0-bits */
927 pr_debug("address compression 0 bits\n");
928 goto out;
929 }
930 break;
931 }
932
933 if (lowpan_is_iid_16_bit_compressable(ipaddr)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200934 /* compress IID to 16 bits xxxx::XXXX */
Alexander Aring85c71242014-07-29 23:47:01 +0200935 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[7], 2);
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200936 dam = LOWPAN_IPHC_DAM_10; /* 16-bits */
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200937 raw_dump_inline(NULL, "Compressed ipv6 addr is (16 bits)",
Alexander Aring84ca5e02014-07-29 23:46:58 +0200938 *hc_ptr - 2, 2);
Alexander Aringeab560e2016-06-15 21:20:27 +0200939 goto out;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200940 }
941
Alexander Aringeab560e2016-06-15 21:20:27 +0200942 /* do not compress IID => xxxx::IID */
943 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[4], 8);
944 raw_dump_inline(NULL, "Compressed ipv6 addr is (64 bits)",
945 *hc_ptr - 8, 8);
946
947out:
948
Alexander Aringc8a3e7e2015-10-20 08:31:24 +0200949 if (sam)
950 return lowpan_iphc_dam_to_sam_value[dam];
951 else
952 return dam;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200953}
954
Alexander Aringb5af9bd2015-10-20 08:31:25 +0200955/* lowpan_iphc_get_tc - get the ECN + DCSP fields in hc format */
956static inline u8 lowpan_iphc_get_tc(const struct ipv6hdr *hdr)
957{
958 u8 dscp, ecn;
959
960 /* hdr->priority contains the higher bits of dscp, lower are part of
961 * flow_lbl[0]. Note ECN, DCSP is swapped in ipv6 hdr.
962 */
963 dscp = (hdr->priority << 2) | ((hdr->flow_lbl[0] & 0xc0) >> 6);
964 /* ECN is at the two lower bits from first nibble of flow_lbl[0] */
965 ecn = (hdr->flow_lbl[0] & 0x30);
966 /* for pretty debug output, also shift ecn to get the ecn value */
967 pr_debug("ecn 0x%02x dscp 0x%02x\n", ecn >> 4, dscp);
968 /* ECN is at 0x30 now, shift it to have ECN + DCSP */
969 return (ecn << 2) | dscp;
970}
971
972/* lowpan_iphc_is_flow_lbl_zero - check if flow label is zero */
973static inline bool lowpan_iphc_is_flow_lbl_zero(const struct ipv6hdr *hdr)
974{
975 return ((!(hdr->flow_lbl[0] & 0x0f)) &&
976 !hdr->flow_lbl[1] && !hdr->flow_lbl[2]);
977}
978
979/* lowpan_iphc_tf_compress - compress the traffic class which is set by
980 * ipv6hdr. Return the corresponding format identifier which is used.
981 */
982static u8 lowpan_iphc_tf_compress(u8 **hc_ptr, const struct ipv6hdr *hdr)
983{
984 /* get ecn dscp data in a byteformat as: ECN(hi) + DSCP(lo) */
985 u8 tc = lowpan_iphc_get_tc(hdr), tf[4], val;
986
987 /* printout the traffic class in hc format */
988 pr_debug("tc 0x%02x\n", tc);
989
990 if (lowpan_iphc_is_flow_lbl_zero(hdr)) {
991 if (!tc) {
992 /* 11: Traffic Class and Flow Label are elided. */
993 val = LOWPAN_IPHC_TF_11;
994 } else {
995 /* 10: ECN + DSCP (1 byte), Flow Label is elided.
996 *
997 * 0 1 2 3 4 5 6 7
998 * +-+-+-+-+-+-+-+-+
999 * |ECN| DSCP |
1000 * +-+-+-+-+-+-+-+-+
1001 */
1002 lowpan_push_hc_data(hc_ptr, &tc, sizeof(tc));
1003 val = LOWPAN_IPHC_TF_10;
1004 }
1005 } else {
1006 /* check if dscp is zero, it's after the first two bit */
1007 if (!(tc & 0x3f)) {
1008 /* 01: ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided
1009 *
1010 * 1 2
1011 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
1012 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1013 * |ECN|rsv| Flow Label |
1014 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1015 */
1016 memcpy(&tf[0], &hdr->flow_lbl[0], 3);
1017 /* zero the highest 4-bits, contains DCSP + ECN */
1018 tf[0] &= ~0xf0;
1019 /* set ECN */
1020 tf[0] |= (tc & 0xc0);
1021
1022 lowpan_push_hc_data(hc_ptr, tf, 3);
1023 val = LOWPAN_IPHC_TF_01;
1024 } else {
1025 /* 00: ECN + DSCP + 4-bit Pad + Flow Label (4 bytes)
1026 *
1027 * 1 2 3
1028 * 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
1029 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1030 * |ECN| DSCP | rsv | Flow Label |
1031 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1032 */
1033 memcpy(&tf[0], &tc, sizeof(tc));
1034 /* highest nibble of flow_lbl[0] is part of DSCP + ECN
1035 * which will be the 4-bit pad and will be filled with
1036 * zeros afterwards.
1037 */
1038 memcpy(&tf[1], &hdr->flow_lbl[0], 3);
1039 /* zero the 4-bit pad, which is reserved */
1040 tf[1] &= ~0xf0;
1041
1042 lowpan_push_hc_data(hc_ptr, tf, 4);
1043 val = LOWPAN_IPHC_TF_00;
1044 }
1045 }
1046
1047 return val;
1048}
1049
Alexander Aring5609c182016-02-22 09:13:54 +01001050static u8 lowpan_iphc_mcast_ctx_addr_compress(u8 **hc_ptr,
1051 const struct lowpan_iphc_ctx *ctx,
1052 const struct in6_addr *ipaddr)
1053{
1054 u8 data[6];
1055
1056 /* flags/scope, reserved (RIID) */
1057 memcpy(data, &ipaddr->s6_addr[1], 2);
1058 /* group ID */
1059 memcpy(&data[1], &ipaddr->s6_addr[11], 4);
1060 lowpan_push_hc_data(hc_ptr, data, 6);
1061
1062 return LOWPAN_IPHC_DAM_00;
1063}
1064
Alexander Aring09bf4202015-10-20 08:31:26 +02001065static u8 lowpan_iphc_mcast_addr_compress(u8 **hc_ptr,
1066 const struct in6_addr *ipaddr)
1067{
1068 u8 val;
1069
1070 if (lowpan_is_mcast_addr_compressable8(ipaddr)) {
1071 pr_debug("compressed to 1 octet\n");
1072 /* use last byte */
1073 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[15], 1);
1074 val = LOWPAN_IPHC_DAM_11;
1075 } else if (lowpan_is_mcast_addr_compressable32(ipaddr)) {
1076 pr_debug("compressed to 4 octets\n");
1077 /* second byte + the last three */
1078 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[1], 1);
1079 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[13], 3);
1080 val = LOWPAN_IPHC_DAM_10;
1081 } else if (lowpan_is_mcast_addr_compressable48(ipaddr)) {
1082 pr_debug("compressed to 6 octets\n");
1083 /* second byte + the last five */
1084 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[1], 1);
1085 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr[11], 5);
1086 val = LOWPAN_IPHC_DAM_01;
1087 } else {
1088 pr_debug("using full address\n");
1089 lowpan_push_hc_data(hc_ptr, ipaddr->s6_addr, 16);
1090 val = LOWPAN_IPHC_DAM_00;
1091 }
1092
1093 return val;
1094}
1095
Alexander Aringa6f77382015-10-13 13:42:57 +02001096int lowpan_header_compress(struct sk_buff *skb, const struct net_device *dev,
1097 const void *daddr, const void *saddr)
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001098{
Alexander Aring5609c182016-02-22 09:13:54 +01001099 u8 iphc0, iphc1, *hc_ptr, cid = 0;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001100 struct ipv6hdr *hdr;
Alexander Aringbf513fd2015-10-13 13:42:56 +02001101 u8 head[LOWPAN_IPHC_MAX_HC_BUF_LEN] = {};
Alexander Aring5609c182016-02-22 09:13:54 +01001102 struct lowpan_iphc_ctx *dci, *sci, dci_entry, sci_entry;
1103 int ret, ipv6_daddr_type, ipv6_saddr_type;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001104
Alexander Aringa6f77382015-10-13 13:42:57 +02001105 if (skb->protocol != htons(ETH_P_IPV6))
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001106 return -EINVAL;
1107
1108 hdr = ipv6_hdr(skb);
Alexander Aring84ca5e02014-07-29 23:46:58 +02001109 hc_ptr = head + 2;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001110
1111 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n"
1112 "\tnexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
Varka Bhadram4710d802014-07-02 09:01:09 +05301113 hdr->version, ntohs(hdr->payload_len), hdr->nexthdr,
1114 hdr->hop_limit, &hdr->daddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001115
1116 raw_dump_table(__func__, "raw skb network header dump",
Varka Bhadram4710d802014-07-02 09:01:09 +05301117 skb_network_header(skb), sizeof(struct ipv6hdr));
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001118
Varka Bhadram4710d802014-07-02 09:01:09 +05301119 /* As we copy some bit-length fields, in the IPHC encoding bytes,
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001120 * we sometimes use |=
1121 * If the field is 0, and the current bit value in memory is 1,
1122 * this does not work. We therefore reset the IPHC encoding here
1123 */
1124 iphc0 = LOWPAN_DISPATCH_IPHC;
1125 iphc1 = 0;
1126
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +02001127 raw_dump_table(__func__, "sending raw skb network uncompressed packet",
Varka Bhadram4710d802014-07-02 09:01:09 +05301128 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001129
Alexander Aring5609c182016-02-22 09:13:54 +01001130 ipv6_daddr_type = ipv6_addr_type(&hdr->daddr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001131 spin_lock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +01001132 if (ipv6_daddr_type & IPV6_ADDR_MULTICAST)
1133 dci = lowpan_iphc_ctx_get_by_mcast_addr(dev, &hdr->daddr);
1134 else
1135 dci = lowpan_iphc_ctx_get_by_addr(dev, &hdr->daddr);
1136 if (dci) {
1137 memcpy(&dci_entry, dci, sizeof(*dci));
1138 cid |= dci->id;
1139 }
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001140 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +01001141
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001142 spin_lock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +01001143 sci = lowpan_iphc_ctx_get_by_addr(dev, &hdr->saddr);
1144 if (sci) {
1145 memcpy(&sci_entry, sci, sizeof(*sci));
1146 cid |= (sci->id << 4);
1147 }
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001148 spin_unlock_bh(&lowpan_dev(dev)->ctx.lock);
Alexander Aring5609c182016-02-22 09:13:54 +01001149
1150 /* if cid is zero it will be compressed */
1151 if (cid) {
1152 iphc1 |= LOWPAN_IPHC_CID;
1153 lowpan_push_hc_data(&hc_ptr, &cid, sizeof(cid));
1154 }
1155
Alexander Aringb5af9bd2015-10-20 08:31:25 +02001156 /* Traffic Class, Flow Label compression */
1157 iphc0 |= lowpan_iphc_tf_compress(&hc_ptr, hdr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001158
1159 /* NOTE: payload length is always compressed */
1160
Alexander Aringcc6ed262015-01-09 16:42:58 +01001161 /* Check if we provide the nhc format for nexthdr and compression
1162 * functionality. If not nexthdr is handled inline and not compressed.
1163 */
Alexander Aring607b0bd2015-10-20 08:31:21 +02001164 ret = lowpan_nhc_check_compression(skb, hdr, &hc_ptr);
1165 if (ret == -ENOENT)
1166 lowpan_push_hc_data(&hc_ptr, &hdr->nexthdr,
1167 sizeof(hdr->nexthdr));
1168 else
Alexander Aringc8a3e7e2015-10-20 08:31:24 +02001169 iphc0 |= LOWPAN_IPHC_NH;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001170
Varka Bhadram4710d802014-07-02 09:01:09 +05301171 /* Hop limit
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001172 * if 1: compress, encoding is 01
1173 * if 64: compress, encoding is 10
1174 * if 255: compress, encoding is 11
1175 * else do not compress
1176 */
1177 switch (hdr->hop_limit) {
1178 case 1:
Alexander Aringc8a3e7e2015-10-20 08:31:24 +02001179 iphc0 |= LOWPAN_IPHC_HLIM_01;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001180 break;
1181 case 64:
Alexander Aringc8a3e7e2015-10-20 08:31:24 +02001182 iphc0 |= LOWPAN_IPHC_HLIM_10;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001183 break;
1184 case 255:
Alexander Aringc8a3e7e2015-10-20 08:31:24 +02001185 iphc0 |= LOWPAN_IPHC_HLIM_11;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001186 break;
1187 default:
Alexander Aring85c71242014-07-29 23:47:01 +02001188 lowpan_push_hc_data(&hc_ptr, &hdr->hop_limit,
1189 sizeof(hdr->hop_limit));
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001190 }
1191
Alexander Aring5609c182016-02-22 09:13:54 +01001192 ipv6_saddr_type = ipv6_addr_type(&hdr->saddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001193 /* source address compression */
Alexander Aring5609c182016-02-22 09:13:54 +01001194 if (ipv6_saddr_type == IPV6_ADDR_ANY) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001195 pr_debug("source address is unspecified, setting SAC\n");
1196 iphc1 |= LOWPAN_IPHC_SAC;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001197 } else {
Alexander Aring5609c182016-02-22 09:13:54 +01001198 if (sci) {
Alexander Aringeab560e2016-06-15 21:20:27 +02001199 iphc1 |= lowpan_compress_ctx_addr(&hc_ptr, dev,
1200 &hdr->saddr,
Alexander Aring5609c182016-02-22 09:13:54 +01001201 &sci_entry, saddr,
1202 true);
1203 iphc1 |= LOWPAN_IPHC_SAC;
Alexander Aring556a5bf2014-07-29 23:47:02 +02001204 } else {
Alexander Aringfeb2add2016-03-16 13:52:41 +01001205 if (ipv6_saddr_type & IPV6_ADDR_LINKLOCAL &&
1206 lowpan_is_linklocal_zero_padded(hdr->saddr)) {
Alexander Aringeab560e2016-06-15 21:20:27 +02001207 iphc1 |= lowpan_compress_addr_64(&hc_ptr, dev,
Alexander Aring5609c182016-02-22 09:13:54 +01001208 &hdr->saddr,
1209 saddr, true);
1210 pr_debug("source address unicast link-local %pI6c iphc1 0x%02x\n",
1211 &hdr->saddr, iphc1);
1212 } else {
1213 pr_debug("send the full source address\n");
1214 lowpan_push_hc_data(&hc_ptr,
1215 hdr->saddr.s6_addr, 16);
1216 }
Alexander Aring556a5bf2014-07-29 23:47:02 +02001217 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001218 }
1219
1220 /* destination address compression */
Alexander Aring5609c182016-02-22 09:13:54 +01001221 if (ipv6_daddr_type & IPV6_ADDR_MULTICAST) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001222 pr_debug("destination address is multicast: ");
Alexander Aring87904042016-02-24 12:01:03 +01001223 iphc1 |= LOWPAN_IPHC_M;
Alexander Aring5609c182016-02-22 09:13:54 +01001224 if (dci) {
1225 iphc1 |= lowpan_iphc_mcast_ctx_addr_compress(&hc_ptr,
1226 &dci_entry,
1227 &hdr->daddr);
Alexander Aring87904042016-02-24 12:01:03 +01001228 iphc1 |= LOWPAN_IPHC_DAC;
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001229 } else {
Alexander Aring5609c182016-02-22 09:13:54 +01001230 iphc1 |= lowpan_iphc_mcast_addr_compress(&hc_ptr,
1231 &hdr->daddr);
1232 }
1233 } else {
1234 if (dci) {
Alexander Aringeab560e2016-06-15 21:20:27 +02001235 iphc1 |= lowpan_compress_ctx_addr(&hc_ptr, dev,
1236 &hdr->daddr,
Alexander Aring5609c182016-02-22 09:13:54 +01001237 &dci_entry, daddr,
1238 false);
1239 iphc1 |= LOWPAN_IPHC_DAC;
1240 } else {
Alexander Aringfeb2add2016-03-16 13:52:41 +01001241 if (ipv6_daddr_type & IPV6_ADDR_LINKLOCAL &&
1242 lowpan_is_linklocal_zero_padded(hdr->daddr)) {
Alexander Aringeab560e2016-06-15 21:20:27 +02001243 iphc1 |= lowpan_compress_addr_64(&hc_ptr, dev,
Alexander Aring5609c182016-02-22 09:13:54 +01001244 &hdr->daddr,
1245 daddr, false);
1246 pr_debug("dest address unicast link-local %pI6c iphc1 0x%02x\n",
1247 &hdr->daddr, iphc1);
1248 } else {
1249 pr_debug("dest address unicast %pI6c\n",
1250 &hdr->daddr);
1251 lowpan_push_hc_data(&hc_ptr,
1252 hdr->daddr.s6_addr, 16);
1253 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001254 }
1255 }
1256
Alexander Aringcc6ed262015-01-09 16:42:58 +01001257 /* next header compression */
Alexander Aringc8a3e7e2015-10-20 08:31:24 +02001258 if (iphc0 & LOWPAN_IPHC_NH) {
Alexander Aringcc6ed262015-01-09 16:42:58 +01001259 ret = lowpan_nhc_do_compression(skb, hdr, &hc_ptr);
1260 if (ret < 0)
1261 return ret;
1262 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001263
1264 head[0] = iphc0;
1265 head[1] = iphc1;
1266
1267 skb_pull(skb, sizeof(struct ipv6hdr));
1268 skb_reset_transport_header(skb);
Alexander Aring84ca5e02014-07-29 23:46:58 +02001269 memcpy(skb_push(skb, hc_ptr - head), head, hc_ptr - head);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001270 skb_reset_network_header(skb);
1271
Alexander Aring84ca5e02014-07-29 23:46:58 +02001272 pr_debug("header len %d skb %u\n", (int)(hc_ptr - head), skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001273
1274 raw_dump_table(__func__, "raw skb data dump compressed",
Varka Bhadram4710d802014-07-02 09:01:09 +05301275 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +02001276 return 0;
1277}
1278EXPORT_SYMBOL_GPL(lowpan_header_compress);