blob: 45714fe885f0c9bab75493961ddbec4c1e6abd09 [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 *
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
23/* Jon's code is based on 6lowpan implementation for Contiki which is:
24 * Copyright (c) 2008, Swedish Institute of Computer Science.
25 * All rights reserved.
26 *
27 * Redistribution and use in source and binary forms, with or without
28 * modification, are permitted provided that the following conditions
29 * are met:
30 * 1. Redistributions of source code must retain the above copyright
31 * notice, this list of conditions and the following disclaimer.
32 * 2. Redistributions in binary form must reproduce the above copyright
33 * notice, this list of conditions and the following disclaimer in the
34 * documentation and/or other materials provided with the distribution.
35 * 3. Neither the name of the Institute nor the names of its contributors
36 * may be used to endorse or promote products derived from this software
37 * without specific prior written permission.
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
40 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
42 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
43 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
44 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
45 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
47 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 * SUCH DAMAGE.
50 */
51
52#include <linux/bitops.h>
53#include <linux/if_arp.h>
Yann Droneaud5ae5e992014-01-22 20:25:24 +010054#include <linux/module.h>
Jukka Rissanen8df8c562013-12-11 17:05:34 +020055#include <linux/netdevice.h>
Alexander Aringcefc8c82014-03-05 14:29:05 +010056#include <net/6lowpan.h>
Jukka Rissanen8df8c562013-12-11 17:05:34 +020057#include <net/ipv6.h>
58#include <net/af_ieee802154.h>
59
Varka Bhadram4710d802014-07-02 09:01:09 +053060/* Uncompress address function for source and
Jukka Rissanen8df8c562013-12-11 17:05:34 +020061 * destination address(non-multicast).
62 *
63 * address_mode is sam value or dam value.
64 */
65static int uncompress_addr(struct sk_buff *skb,
Varka Bhadram4710d802014-07-02 09:01:09 +053066 struct in6_addr *ipaddr, const u8 address_mode,
67 const u8 *lladdr, const u8 addr_type,
68 const u8 addr_len)
Jukka Rissanen8df8c562013-12-11 17:05:34 +020069{
70 bool fail;
71
72 switch (address_mode) {
73 case LOWPAN_IPHC_ADDR_00:
74 /* for global link addresses */
75 fail = lowpan_fetch_skb(skb, ipaddr->s6_addr, 16);
76 break;
77 case LOWPAN_IPHC_ADDR_01:
78 /* fe:80::XXXX:XXXX:XXXX:XXXX */
79 ipaddr->s6_addr[0] = 0xFE;
80 ipaddr->s6_addr[1] = 0x80;
81 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[8], 8);
82 break;
83 case LOWPAN_IPHC_ADDR_02:
84 /* fe:80::ff:fe00:XXXX */
85 ipaddr->s6_addr[0] = 0xFE;
86 ipaddr->s6_addr[1] = 0x80;
87 ipaddr->s6_addr[11] = 0xFF;
88 ipaddr->s6_addr[12] = 0xFE;
89 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[14], 2);
90 break;
91 case LOWPAN_IPHC_ADDR_03:
92 fail = false;
93 switch (addr_type) {
94 case IEEE802154_ADDR_LONG:
95 /* fe:80::XXXX:XXXX:XXXX:XXXX
96 * \_________________/
97 * hwaddr
98 */
99 ipaddr->s6_addr[0] = 0xFE;
100 ipaddr->s6_addr[1] = 0x80;
101 memcpy(&ipaddr->s6_addr[8], lladdr, addr_len);
102 /* second bit-flip (Universe/Local)
103 * is done according RFC2464
104 */
105 ipaddr->s6_addr[8] ^= 0x02;
106 break;
107 case IEEE802154_ADDR_SHORT:
108 /* fe:80::ff:fe00:XXXX
109 * \__/
110 * short_addr
111 *
112 * Universe/Local bit is zero.
113 */
114 ipaddr->s6_addr[0] = 0xFE;
115 ipaddr->s6_addr[1] = 0x80;
116 ipaddr->s6_addr[11] = 0xFF;
117 ipaddr->s6_addr[12] = 0xFE;
118 ipaddr->s6_addr16[7] = htons(*((u16 *)lladdr));
119 break;
120 default:
121 pr_debug("Invalid addr_type set\n");
122 return -EINVAL;
123 }
124 break;
125 default:
126 pr_debug("Invalid address mode value: 0x%x\n", address_mode);
127 return -EINVAL;
128 }
129
130 if (fail) {
131 pr_debug("Failed to fetch skb data\n");
132 return -EIO;
133 }
134
135 raw_dump_inline(NULL, "Reconstructed ipv6 addr is",
136 ipaddr->s6_addr, 16);
137
138 return 0;
139}
140
Varka Bhadram4710d802014-07-02 09:01:09 +0530141/* Uncompress address function for source context
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200142 * based address(non-multicast).
143 */
144static int uncompress_context_based_src_addr(struct sk_buff *skb,
Varka Bhadram4710d802014-07-02 09:01:09 +0530145 struct in6_addr *ipaddr,
146 const u8 sam)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200147{
148 switch (sam) {
149 case LOWPAN_IPHC_ADDR_00:
150 /* unspec address ::
151 * Do nothing, address is already ::
152 */
153 break;
154 case LOWPAN_IPHC_ADDR_01:
155 /* TODO */
156 case LOWPAN_IPHC_ADDR_02:
157 /* TODO */
158 case LOWPAN_IPHC_ADDR_03:
159 /* TODO */
160 netdev_warn(skb->dev, "SAM value 0x%x not supported\n", sam);
161 return -EINVAL;
162 default:
163 pr_debug("Invalid sam value: 0x%x\n", sam);
164 return -EINVAL;
165 }
166
167 raw_dump_inline(NULL,
168 "Reconstructed context based ipv6 src addr is",
169 ipaddr->s6_addr, 16);
170
171 return 0;
172}
173
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200174/* Uncompress function for multicast destination address,
175 * when M bit is set.
176 */
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200177static int lowpan_uncompress_multicast_daddr(struct sk_buff *skb,
178 struct in6_addr *ipaddr,
179 const u8 dam)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200180{
181 bool fail;
182
183 switch (dam) {
184 case LOWPAN_IPHC_DAM_00:
185 /* 00: 128 bits. The full address
186 * is carried in-line.
187 */
188 fail = lowpan_fetch_skb(skb, ipaddr->s6_addr, 16);
189 break;
190 case LOWPAN_IPHC_DAM_01:
191 /* 01: 48 bits. The address takes
192 * the form ffXX::00XX:XXXX:XXXX.
193 */
194 ipaddr->s6_addr[0] = 0xFF;
195 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[1], 1);
196 fail |= lowpan_fetch_skb(skb, &ipaddr->s6_addr[11], 5);
197 break;
198 case LOWPAN_IPHC_DAM_10:
199 /* 10: 32 bits. The address takes
200 * the form ffXX::00XX:XXXX.
201 */
202 ipaddr->s6_addr[0] = 0xFF;
203 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[1], 1);
204 fail |= lowpan_fetch_skb(skb, &ipaddr->s6_addr[13], 3);
205 break;
206 case LOWPAN_IPHC_DAM_11:
207 /* 11: 8 bits. The address takes
208 * the form ff02::00XX.
209 */
210 ipaddr->s6_addr[0] = 0xFF;
211 ipaddr->s6_addr[1] = 0x02;
212 fail = lowpan_fetch_skb(skb, &ipaddr->s6_addr[15], 1);
213 break;
214 default:
215 pr_debug("DAM value has a wrong value: 0x%x\n", dam);
216 return -EINVAL;
217 }
218
219 if (fail) {
220 pr_debug("Failed to fetch skb data\n");
221 return -EIO;
222 }
223
224 raw_dump_inline(NULL, "Reconstructed ipv6 multicast addr is",
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200225 ipaddr->s6_addr, 16);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200226
227 return 0;
228}
229
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200230static int uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200231{
Alexander Aring1672a362013-12-17 14:21:26 +0100232 bool fail;
233 u8 tmp = 0, val = 0;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200234
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200235 fail = lowpan_fetch_skb(skb, &tmp, sizeof(tmp));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200236
237 if ((tmp & LOWPAN_NHC_UDP_MASK) == LOWPAN_NHC_UDP_ID) {
238 pr_debug("UDP header uncompression\n");
239 switch (tmp & LOWPAN_NHC_UDP_CS_P_11) {
240 case LOWPAN_NHC_UDP_CS_P_00:
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200241 fail |= lowpan_fetch_skb(skb, &uh->source,
242 sizeof(uh->source));
243 fail |= lowpan_fetch_skb(skb, &uh->dest,
244 sizeof(uh->dest));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200245 break;
246 case LOWPAN_NHC_UDP_CS_P_01:
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200247 fail |= lowpan_fetch_skb(skb, &uh->source,
248 sizeof(uh->source));
249 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
Alexander Aring1672a362013-12-17 14:21:26 +0100250 uh->dest = htons(val + LOWPAN_NHC_UDP_8BIT_PORT);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200251 break;
252 case LOWPAN_NHC_UDP_CS_P_10:
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200253 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
Alexander Aring1672a362013-12-17 14:21:26 +0100254 uh->source = htons(val + LOWPAN_NHC_UDP_8BIT_PORT);
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200255 fail |= lowpan_fetch_skb(skb, &uh->dest,
256 sizeof(uh->dest));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200257 break;
258 case LOWPAN_NHC_UDP_CS_P_11:
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200259 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100260 uh->source = htons(LOWPAN_NHC_UDP_4BIT_PORT +
Alexander Aring1672a362013-12-17 14:21:26 +0100261 (val >> 4));
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100262 uh->dest = htons(LOWPAN_NHC_UDP_4BIT_PORT +
Alexander Aring1672a362013-12-17 14:21:26 +0100263 (val & 0x0f));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200264 break;
265 default:
266 pr_debug("ERROR: unknown UDP format\n");
267 goto err;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200268 }
269
270 pr_debug("uncompressed UDP ports: src = %d, dst = %d\n",
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100271 ntohs(uh->source), ntohs(uh->dest));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200272
Alexander Aring573701c2013-12-17 14:21:25 +0100273 /* checksum */
274 if (tmp & LOWPAN_NHC_UDP_CS_C) {
275 pr_debug_ratelimited("checksum elided currently not supported\n");
276 goto err;
277 } else {
Alexander Aring8ec1d9b2014-07-29 23:46:59 +0200278 fail |= lowpan_fetch_skb(skb, &uh->check,
279 sizeof(uh->check));
Alexander Aring573701c2013-12-17 14:21:25 +0100280 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200281
Marcel Holtmann89f53492014-07-30 03:48:40 +0200282 /* UDP length needs to be infered from the lower layers
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200283 * here, we obtain the hint from the remaining size of the
284 * frame
285 */
286 uh->len = htons(skb->len + sizeof(struct udphdr));
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100287 pr_debug("uncompressed UDP length: src = %d", ntohs(uh->len));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200288 } else {
289 pr_debug("ERROR: unsupported NH format\n");
290 goto err;
291 }
292
Alexander Aring1672a362013-12-17 14:21:26 +0100293 if (fail)
294 goto err;
295
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200296 return 0;
297err:
298 return -EINVAL;
299}
300
301/* TTL uncompression values */
302static const u8 lowpan_ttl_values[] = { 0, 1, 64, 255 };
303
304int lowpan_process_data(struct sk_buff *skb, struct net_device *dev,
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200305 const u8 *saddr, const u8 saddr_type, const u8 saddr_len,
306 const u8 *daddr, const u8 daddr_type, const u8 daddr_len,
Martin Townsendf8b36172014-10-23 15:40:53 +0100307 u8 iphc0, u8 iphc1)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200308{
309 struct ipv6hdr hdr = {};
310 u8 tmp, num_context = 0;
311 int err;
312
313 raw_dump_table(__func__, "raw skb data dump uncompressed",
Varka Bhadram4710d802014-07-02 09:01:09 +0530314 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200315
316 /* another if the CID flag is set */
317 if (iphc1 & LOWPAN_IPHC_CID) {
318 pr_debug("CID flag is set, increase header with one\n");
Alexander Aring4ebc9602014-07-29 23:47:00 +0200319 if (lowpan_fetch_skb(skb, &num_context, sizeof(num_context)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200320 goto drop;
321 }
322
323 hdr.version = 6;
324
325 /* Traffic Class and Flow Label */
326 switch ((iphc0 & LOWPAN_IPHC_TF) >> 3) {
Varka Bhadram4710d802014-07-02 09:01:09 +0530327 /* Traffic Class and FLow Label carried in-line
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200328 * ECN + DSCP + 4-bit Pad + Flow Label (4 bytes)
329 */
330 case 0: /* 00b */
Alexander Aring4ebc9602014-07-29 23:47:00 +0200331 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200332 goto drop;
333
334 memcpy(&hdr.flow_lbl, &skb->data[0], 3);
335 skb_pull(skb, 3);
336 hdr.priority = ((tmp >> 2) & 0x0f);
337 hdr.flow_lbl[0] = ((tmp >> 2) & 0x30) | (tmp << 6) |
338 (hdr.flow_lbl[0] & 0x0f);
339 break;
Varka Bhadram4710d802014-07-02 09:01:09 +0530340 /* Traffic class carried in-line
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200341 * ECN + DSCP (1 byte), Flow Label is elided
342 */
343 case 2: /* 10b */
Alexander Aring4ebc9602014-07-29 23:47:00 +0200344 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200345 goto drop;
346
347 hdr.priority = ((tmp >> 2) & 0x0f);
348 hdr.flow_lbl[0] = ((tmp << 6) & 0xC0) | ((tmp >> 2) & 0x30);
349 break;
Varka Bhadram4710d802014-07-02 09:01:09 +0530350 /* Flow Label carried in-line
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200351 * ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided
352 */
353 case 1: /* 01b */
Alexander Aring4ebc9602014-07-29 23:47:00 +0200354 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200355 goto drop;
356
357 hdr.flow_lbl[0] = (skb->data[0] & 0x0F) | ((tmp >> 2) & 0x30);
358 memcpy(&hdr.flow_lbl[1], &skb->data[0], 2);
359 skb_pull(skb, 2);
360 break;
361 /* Traffic Class and Flow Label are elided */
362 case 3: /* 11b */
363 break;
364 default:
365 break;
366 }
367
368 /* Next Header */
369 if ((iphc0 & LOWPAN_IPHC_NH_C) == 0) {
370 /* Next header is carried inline */
Alexander Aring4ebc9602014-07-29 23:47:00 +0200371 if (lowpan_fetch_skb(skb, &hdr.nexthdr, sizeof(hdr.nexthdr)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200372 goto drop;
373
374 pr_debug("NH flag is set, next header carried inline: %02x\n",
375 hdr.nexthdr);
376 }
377
378 /* Hop Limit */
Varka Bhadram4710d802014-07-02 09:01:09 +0530379 if ((iphc0 & 0x03) != LOWPAN_IPHC_TTL_I) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200380 hdr.hop_limit = lowpan_ttl_values[iphc0 & 0x03];
Varka Bhadram4710d802014-07-02 09:01:09 +0530381 } else {
Alexander Aring4ebc9602014-07-29 23:47:00 +0200382 if (lowpan_fetch_skb(skb, &hdr.hop_limit,
383 sizeof(hdr.hop_limit)))
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200384 goto drop;
385 }
386
387 /* Extract SAM to the tmp variable */
388 tmp = ((iphc1 & LOWPAN_IPHC_SAM) >> LOWPAN_IPHC_SAM_BIT) & 0x03;
389
390 if (iphc1 & LOWPAN_IPHC_SAC) {
391 /* Source address context based uncompression */
392 pr_debug("SAC bit is set. Handle context based source address.\n");
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200393 err = uncompress_context_based_src_addr(skb, &hdr.saddr, tmp);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200394 } else {
395 /* Source address uncompression */
396 pr_debug("source address stateless compression\n");
397 err = uncompress_addr(skb, &hdr.saddr, tmp, saddr,
Varka Bhadram4710d802014-07-02 09:01:09 +0530398 saddr_type, saddr_len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200399 }
400
401 /* Check on error of previous branch */
402 if (err)
403 goto drop;
404
405 /* Extract DAM to the tmp variable */
406 tmp = ((iphc1 & LOWPAN_IPHC_DAM_11) >> LOWPAN_IPHC_DAM_BIT) & 0x03;
407
408 /* check for Multicast Compression */
409 if (iphc1 & LOWPAN_IPHC_M) {
410 if (iphc1 & LOWPAN_IPHC_DAC) {
411 pr_debug("dest: context-based mcast compression\n");
412 /* TODO: implement this */
413 } else {
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200414 err = lowpan_uncompress_multicast_daddr(skb, &hdr.daddr,
415 tmp);
416
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200417 if (err)
418 goto drop;
419 }
420 } else {
421 err = uncompress_addr(skb, &hdr.daddr, tmp, daddr,
Varka Bhadram4710d802014-07-02 09:01:09 +0530422 daddr_type, daddr_len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200423 pr_debug("dest: stateless compression mode %d dest %pI6c\n",
Varka Bhadram4710d802014-07-02 09:01:09 +0530424 tmp, &hdr.daddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200425 if (err)
426 goto drop;
427 }
428
429 /* UDP data uncompression */
430 if (iphc0 & LOWPAN_IPHC_NH_C) {
431 struct udphdr uh;
Martin Townsend11e3ff72014-10-13 11:00:56 +0100432 const int needed = sizeof(struct udphdr) + sizeof(hdr);
Varka Bhadram4710d802014-07-02 09:01:09 +0530433
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200434 if (uncompress_udp_header(skb, &uh))
435 goto drop;
436
Varka Bhadram4710d802014-07-02 09:01:09 +0530437 /* replace the compressed UDP head by the uncompressed UDP
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200438 * header
439 */
Martin Townsend11e3ff72014-10-13 11:00:56 +0100440 err = skb_cow(skb, needed);
441 if (unlikely(err)) {
442 kfree_skb(skb);
443 return err;
444 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200445
446 skb_push(skb, sizeof(struct udphdr));
447 skb_reset_transport_header(skb);
448 skb_copy_to_linear_data(skb, &uh, sizeof(struct udphdr));
449
450 raw_dump_table(__func__, "raw UDP header dump",
Varka Bhadram4710d802014-07-02 09:01:09 +0530451 (u8 *)&uh, sizeof(uh));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200452
453 hdr.nexthdr = UIP_PROTO_UDP;
Martin Townsend11e3ff72014-10-13 11:00:56 +0100454 } else {
455 err = skb_cow(skb, sizeof(hdr));
456 if (unlikely(err)) {
457 kfree_skb(skb);
458 return err;
459 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200460 }
461
462 hdr.payload_len = htons(skb->len);
463
464 pr_debug("skb headroom size = %d, data length = %d\n",
465 skb_headroom(skb), skb->len);
466
467 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n\t"
468 "nexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
469 hdr.version, ntohs(hdr.payload_len), hdr.nexthdr,
470 hdr.hop_limit, &hdr.daddr);
471
Martin Townsendf8b36172014-10-23 15:40:53 +0100472 skb_push(skb, sizeof(hdr));
473 skb_reset_network_header(skb);
474 skb_copy_to_linear_data(skb, &hdr, sizeof(hdr));
475
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200476 raw_dump_table(__func__, "raw header dump", (u8 *)&hdr, sizeof(hdr));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200477
Martin Townsendf8b36172014-10-23 15:40:53 +0100478 return 0;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200479drop:
480 kfree_skb(skb);
481 return -EINVAL;
482}
483EXPORT_SYMBOL_GPL(lowpan_process_data);
484
Alexander Aring84ca5e02014-07-29 23:46:58 +0200485static u8 lowpan_compress_addr_64(u8 **hc_ptr, u8 shift,
Varka Bhadram4710d802014-07-02 09:01:09 +0530486 const struct in6_addr *ipaddr,
487 const unsigned char *lladdr)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200488{
489 u8 val = 0;
490
491 if (is_addr_mac_addr_based(ipaddr, lladdr)) {
492 val = 3; /* 0-bits */
493 pr_debug("address compression 0 bits\n");
494 } else if (lowpan_is_iid_16_bit_compressable(ipaddr)) {
495 /* compress IID to 16 bits xxxx::XXXX */
Alexander Aring85c71242014-07-29 23:47:01 +0200496 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[7], 2);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200497 val = 2; /* 16-bits */
498 raw_dump_inline(NULL, "Compressed ipv6 addr is (16 bits)",
Alexander Aring84ca5e02014-07-29 23:46:58 +0200499 *hc_ptr - 2, 2);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200500 } else {
501 /* do not compress IID => xxxx::IID */
Alexander Aring85c71242014-07-29 23:47:01 +0200502 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[4], 8);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200503 val = 1; /* 64-bits */
504 raw_dump_inline(NULL, "Compressed ipv6 addr is (64 bits)",
Alexander Aring84ca5e02014-07-29 23:46:58 +0200505 *hc_ptr - 8, 8);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200506 }
507
508 return rol8(val, shift);
509}
510
Alexander Aring84ca5e02014-07-29 23:46:58 +0200511static void compress_udp_header(u8 **hc_ptr, struct sk_buff *skb)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200512{
513 struct udphdr *uh = udp_hdr(skb);
Alexander Aring5cede842013-12-17 14:21:22 +0100514 u8 tmp;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200515
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100516 if (((ntohs(uh->source) & LOWPAN_NHC_UDP_4BIT_MASK) ==
517 LOWPAN_NHC_UDP_4BIT_PORT) &&
518 ((ntohs(uh->dest) & LOWPAN_NHC_UDP_4BIT_MASK) ==
519 LOWPAN_NHC_UDP_4BIT_PORT)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200520 pr_debug("UDP header: both ports compression to 4 bits\n");
Alexander Aringc567c772013-12-17 14:21:28 +0100521 /* compression value */
Alexander Aring5cede842013-12-17 14:21:22 +0100522 tmp = LOWPAN_NHC_UDP_CS_P_11;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200523 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringc567c772013-12-17 14:21:28 +0100524 /* source and destination port */
525 tmp = ntohs(uh->dest) - LOWPAN_NHC_UDP_4BIT_PORT +
526 ((ntohs(uh->source) - LOWPAN_NHC_UDP_4BIT_PORT) << 4);
Alexander Aring84ca5e02014-07-29 23:46:58 +0200527 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100528 } else if ((ntohs(uh->dest) & LOWPAN_NHC_UDP_8BIT_MASK) ==
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200529 LOWPAN_NHC_UDP_8BIT_PORT) {
530 pr_debug("UDP header: remove 8 bits of dest\n");
Alexander Aringc567c772013-12-17 14:21:28 +0100531 /* compression value */
Alexander Aring5cede842013-12-17 14:21:22 +0100532 tmp = LOWPAN_NHC_UDP_CS_P_01;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200533 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringc567c772013-12-17 14:21:28 +0100534 /* source port */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200535 lowpan_push_hc_data(hc_ptr, &uh->source, sizeof(uh->source));
Alexander Aringc567c772013-12-17 14:21:28 +0100536 /* destination port */
537 tmp = ntohs(uh->dest) - LOWPAN_NHC_UDP_8BIT_PORT;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200538 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringe5d966ef2013-12-17 14:21:24 +0100539 } else if ((ntohs(uh->source) & LOWPAN_NHC_UDP_8BIT_MASK) ==
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200540 LOWPAN_NHC_UDP_8BIT_PORT) {
541 pr_debug("UDP header: remove 8 bits of source\n");
Alexander Aringc567c772013-12-17 14:21:28 +0100542 /* compression value */
Alexander Aring5cede842013-12-17 14:21:22 +0100543 tmp = LOWPAN_NHC_UDP_CS_P_10;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200544 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringc567c772013-12-17 14:21:28 +0100545 /* source port */
546 tmp = ntohs(uh->source) - LOWPAN_NHC_UDP_8BIT_PORT;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200547 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringc567c772013-12-17 14:21:28 +0100548 /* destination port */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200549 lowpan_push_hc_data(hc_ptr, &uh->dest, sizeof(uh->dest));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200550 } else {
551 pr_debug("UDP header: can't compress\n");
Alexander Aringc567c772013-12-17 14:21:28 +0100552 /* compression value */
Alexander Aring5cede842013-12-17 14:21:22 +0100553 tmp = LOWPAN_NHC_UDP_CS_P_00;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200554 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
Alexander Aringc567c772013-12-17 14:21:28 +0100555 /* source port */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200556 lowpan_push_hc_data(hc_ptr, &uh->source, sizeof(uh->source));
Alexander Aringc567c772013-12-17 14:21:28 +0100557 /* destination port */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200558 lowpan_push_hc_data(hc_ptr, &uh->dest, sizeof(uh->dest));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200559 }
560
561 /* checksum is always inline */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200562 lowpan_push_hc_data(hc_ptr, &uh->check, sizeof(uh->check));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200563
564 /* skip the UDP header */
565 skb_pull(skb, sizeof(struct udphdr));
566}
567
568int lowpan_header_compress(struct sk_buff *skb, struct net_device *dev,
Varka Bhadram4710d802014-07-02 09:01:09 +0530569 unsigned short type, const void *_daddr,
570 const void *_saddr, unsigned int len)
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200571{
Alexander Aring84ca5e02014-07-29 23:46:58 +0200572 u8 tmp, iphc0, iphc1, *hc_ptr;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200573 struct ipv6hdr *hdr;
574 u8 head[100] = {};
Alexander Aring556a5bf2014-07-29 23:47:02 +0200575 int addr_type;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200576
577 if (type != ETH_P_IPV6)
578 return -EINVAL;
579
580 hdr = ipv6_hdr(skb);
Alexander Aring84ca5e02014-07-29 23:46:58 +0200581 hc_ptr = head + 2;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200582
583 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n"
584 "\tnexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
Varka Bhadram4710d802014-07-02 09:01:09 +0530585 hdr->version, ntohs(hdr->payload_len), hdr->nexthdr,
586 hdr->hop_limit, &hdr->daddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200587
588 raw_dump_table(__func__, "raw skb network header dump",
Varka Bhadram4710d802014-07-02 09:01:09 +0530589 skb_network_header(skb), sizeof(struct ipv6hdr));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200590
Varka Bhadram4710d802014-07-02 09:01:09 +0530591 /* As we copy some bit-length fields, in the IPHC encoding bytes,
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200592 * we sometimes use |=
593 * If the field is 0, and the current bit value in memory is 1,
594 * this does not work. We therefore reset the IPHC encoding here
595 */
596 iphc0 = LOWPAN_DISPATCH_IPHC;
597 iphc1 = 0;
598
599 /* TODO: context lookup */
600
601 raw_dump_inline(__func__, "saddr",
602 (unsigned char *)_saddr, IEEE802154_ADDR_LEN);
603 raw_dump_inline(__func__, "daddr",
604 (unsigned char *)_daddr, IEEE802154_ADDR_LEN);
605
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200606 raw_dump_table(__func__, "sending raw skb network uncompressed packet",
Varka Bhadram4710d802014-07-02 09:01:09 +0530607 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200608
Varka Bhadram4710d802014-07-02 09:01:09 +0530609 /* Traffic class, flow label
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200610 * If flow label is 0, compress it. If traffic class is 0, compress it
611 * We have to process both in the same time as the offset of traffic
612 * class depends on the presence of version and flow label
613 */
614
Alexander Aring84ca5e02014-07-29 23:46:58 +0200615 /* hc format of TC is ECN | DSCP , original one is DSCP | ECN */
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200616 tmp = (hdr->priority << 4) | (hdr->flow_lbl[0] >> 4);
617 tmp = ((tmp & 0x03) << 6) | (tmp >> 2);
618
619 if (((hdr->flow_lbl[0] & 0x0F) == 0) &&
Varka Bhadram4710d802014-07-02 09:01:09 +0530620 (hdr->flow_lbl[1] == 0) && (hdr->flow_lbl[2] == 0)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200621 /* flow label can be compressed */
622 iphc0 |= LOWPAN_IPHC_FL_C;
623 if ((hdr->priority == 0) &&
Varka Bhadram4710d802014-07-02 09:01:09 +0530624 ((hdr->flow_lbl[0] & 0xF0) == 0)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200625 /* compress (elide) all */
626 iphc0 |= LOWPAN_IPHC_TC_C;
627 } else {
628 /* compress only the flow label */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200629 *hc_ptr = tmp;
630 hc_ptr += 1;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200631 }
632 } else {
633 /* Flow label cannot be compressed */
634 if ((hdr->priority == 0) &&
Varka Bhadram4710d802014-07-02 09:01:09 +0530635 ((hdr->flow_lbl[0] & 0xF0) == 0)) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200636 /* compress only traffic class */
637 iphc0 |= LOWPAN_IPHC_TC_C;
Alexander Aring84ca5e02014-07-29 23:46:58 +0200638 *hc_ptr = (tmp & 0xc0) | (hdr->flow_lbl[0] & 0x0F);
639 memcpy(hc_ptr + 1, &hdr->flow_lbl[1], 2);
640 hc_ptr += 3;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200641 } else {
642 /* compress nothing */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200643 memcpy(hc_ptr, hdr, 4);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200644 /* replace the top byte with new ECN | DSCP format */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200645 *hc_ptr = tmp;
646 hc_ptr += 4;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200647 }
648 }
649
650 /* NOTE: payload length is always compressed */
651
652 /* Next Header is compress if UDP */
653 if (hdr->nexthdr == UIP_PROTO_UDP)
654 iphc0 |= LOWPAN_IPHC_NH_C;
655
Alexander Aring85c71242014-07-29 23:47:01 +0200656 if ((iphc0 & LOWPAN_IPHC_NH_C) == 0)
657 lowpan_push_hc_data(&hc_ptr, &hdr->nexthdr,
658 sizeof(hdr->nexthdr));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200659
Varka Bhadram4710d802014-07-02 09:01:09 +0530660 /* Hop limit
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200661 * if 1: compress, encoding is 01
662 * if 64: compress, encoding is 10
663 * if 255: compress, encoding is 11
664 * else do not compress
665 */
666 switch (hdr->hop_limit) {
667 case 1:
668 iphc0 |= LOWPAN_IPHC_TTL_1;
669 break;
670 case 64:
671 iphc0 |= LOWPAN_IPHC_TTL_64;
672 break;
673 case 255:
674 iphc0 |= LOWPAN_IPHC_TTL_255;
675 break;
676 default:
Alexander Aring85c71242014-07-29 23:47:01 +0200677 lowpan_push_hc_data(&hc_ptr, &hdr->hop_limit,
678 sizeof(hdr->hop_limit));
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200679 }
680
Alexander Aring556a5bf2014-07-29 23:47:02 +0200681 addr_type = ipv6_addr_type(&hdr->saddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200682 /* source address compression */
Alexander Aring556a5bf2014-07-29 23:47:02 +0200683 if (addr_type == IPV6_ADDR_ANY) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200684 pr_debug("source address is unspecified, setting SAC\n");
685 iphc1 |= LOWPAN_IPHC_SAC;
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200686 } else {
Alexander Aring556a5bf2014-07-29 23:47:02 +0200687 if (addr_type & IPV6_ADDR_LINKLOCAL) {
688 iphc1 |= lowpan_compress_addr_64(&hc_ptr,
689 LOWPAN_IPHC_SAM_BIT,
690 &hdr->saddr, _saddr);
691 pr_debug("source address unicast link-local %pI6c iphc1 0x%02x\n",
692 &hdr->saddr, iphc1);
693 } else {
694 pr_debug("send the full source address\n");
695 lowpan_push_hc_data(&hc_ptr, hdr->saddr.s6_addr, 16);
696 }
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200697 }
698
Alexander Aring556a5bf2014-07-29 23:47:02 +0200699 addr_type = ipv6_addr_type(&hdr->daddr);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200700 /* destination address compression */
Alexander Aring556a5bf2014-07-29 23:47:02 +0200701 if (addr_type & IPV6_ADDR_MULTICAST) {
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200702 pr_debug("destination address is multicast: ");
703 iphc1 |= LOWPAN_IPHC_M;
704 if (lowpan_is_mcast_addr_compressable8(&hdr->daddr)) {
705 pr_debug("compressed to 1 octet\n");
706 iphc1 |= LOWPAN_IPHC_DAM_11;
707 /* use last byte */
Alexander Aring85c71242014-07-29 23:47:01 +0200708 lowpan_push_hc_data(&hc_ptr,
709 &hdr->daddr.s6_addr[15], 1);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200710 } else if (lowpan_is_mcast_addr_compressable32(&hdr->daddr)) {
711 pr_debug("compressed to 4 octets\n");
712 iphc1 |= LOWPAN_IPHC_DAM_10;
713 /* second byte + the last three */
Alexander Aring85c71242014-07-29 23:47:01 +0200714 lowpan_push_hc_data(&hc_ptr,
715 &hdr->daddr.s6_addr[1], 1);
716 lowpan_push_hc_data(&hc_ptr,
717 &hdr->daddr.s6_addr[13], 3);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200718 } else if (lowpan_is_mcast_addr_compressable48(&hdr->daddr)) {
719 pr_debug("compressed to 6 octets\n");
720 iphc1 |= LOWPAN_IPHC_DAM_01;
721 /* second byte + the last five */
Alexander Aring85c71242014-07-29 23:47:01 +0200722 lowpan_push_hc_data(&hc_ptr,
723 &hdr->daddr.s6_addr[1], 1);
724 lowpan_push_hc_data(&hc_ptr,
725 &hdr->daddr.s6_addr[11], 5);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200726 } else {
727 pr_debug("using full address\n");
728 iphc1 |= LOWPAN_IPHC_DAM_00;
Alexander Aring85c71242014-07-29 23:47:01 +0200729 lowpan_push_hc_data(&hc_ptr, hdr->daddr.s6_addr, 16);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200730 }
731 } else {
Alexander Aring556a5bf2014-07-29 23:47:02 +0200732 if (addr_type & IPV6_ADDR_LINKLOCAL) {
733 /* TODO: context lookup */
Alexander Aring84ca5e02014-07-29 23:46:58 +0200734 iphc1 |= lowpan_compress_addr_64(&hc_ptr,
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200735 LOWPAN_IPHC_DAM_BIT, &hdr->daddr, _daddr);
736 pr_debug("dest address unicast link-local %pI6c "
Marcel Holtmann7fc4cfd2014-07-30 03:48:41 +0200737 "iphc1 0x%02x\n", &hdr->daddr, iphc1);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200738 } else {
739 pr_debug("dest address unicast %pI6c\n", &hdr->daddr);
Alexander Aring85c71242014-07-29 23:47:01 +0200740 lowpan_push_hc_data(&hc_ptr, hdr->daddr.s6_addr, 16);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200741 }
742 }
743
744 /* UDP header compression */
745 if (hdr->nexthdr == UIP_PROTO_UDP)
Alexander Aring84ca5e02014-07-29 23:46:58 +0200746 compress_udp_header(&hc_ptr, skb);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200747
748 head[0] = iphc0;
749 head[1] = iphc1;
750
751 skb_pull(skb, sizeof(struct ipv6hdr));
752 skb_reset_transport_header(skb);
Alexander Aring84ca5e02014-07-29 23:46:58 +0200753 memcpy(skb_push(skb, hc_ptr - head), head, hc_ptr - head);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200754 skb_reset_network_header(skb);
755
Alexander Aring84ca5e02014-07-29 23:46:58 +0200756 pr_debug("header len %d skb %u\n", (int)(hc_ptr - head), skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200757
758 raw_dump_table(__func__, "raw skb data dump compressed",
Varka Bhadram4710d802014-07-02 09:01:09 +0530759 skb->data, skb->len);
Jukka Rissanen8df8c562013-12-11 17:05:34 +0200760 return 0;
761}
762EXPORT_SYMBOL_GPL(lowpan_header_compress);
Yann Droneaud5ae5e992014-01-22 20:25:24 +0100763
764MODULE_LICENSE("GPL");