]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - net/6lowpan/iphc.c
6lowpan: fix udp header compression when using raw sockets
[mirror_ubuntu-eoan-kernel.git] / net / 6lowpan / iphc.c
CommitLineData
8df8c56a
JR
1/*
2 * Copyright 2011, Siemens AG
3 * written by Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
4 */
5
4710d806 6/* Based on patches from Jon Smirl <jonsmirl@gmail.com>
8df8c56a
JR
7 * Copyright (c) 2011 Jon Smirl <jonsmirl@gmail.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
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>
5ae5e991 54#include <linux/module.h>
8df8c56a 55#include <linux/netdevice.h>
cefc8c8a 56#include <net/6lowpan.h>
8df8c56a
JR
57#include <net/ipv6.h>
58#include <net/af_ieee802154.h>
59
4710d806 60/* Uncompress address function for source and
8df8c56a
JR
61 * destination address(non-multicast).
62 *
63 * address_mode is sam value or dam value.
64 */
65static int uncompress_addr(struct sk_buff *skb,
4710d806
VB
66 struct in6_addr *ipaddr, const u8 address_mode,
67 const u8 *lladdr, const u8 addr_type,
68 const u8 addr_len)
8df8c56a
JR
69{
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
4710d806 141/* Uncompress address function for source context
8df8c56a
JR
142 * based address(non-multicast).
143 */
144static int uncompress_context_based_src_addr(struct sk_buff *skb,
4710d806
VB
145 struct in6_addr *ipaddr,
146 const u8 sam)
8df8c56a
JR
147{
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
8df8c56a
JR
174/* Uncompress function for multicast destination address,
175 * when M bit is set.
176 */
7fc4cfda
MH
177static int lowpan_uncompress_multicast_daddr(struct sk_buff *skb,
178 struct in6_addr *ipaddr,
179 const u8 dam)
8df8c56a
JR
180{
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",
7fc4cfda 225 ipaddr->s6_addr, 16);
8df8c56a
JR
226
227 return 0;
228}
229
7fc4cfda 230static int uncompress_udp_header(struct sk_buff *skb, struct udphdr *uh)
8df8c56a 231{
1672a36b
AA
232 bool fail;
233 u8 tmp = 0, val = 0;
8df8c56a 234
8ec1d9be 235 fail = lowpan_fetch_skb(skb, &tmp, sizeof(tmp));
8df8c56a
JR
236
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:
8ec1d9be
AA
241 fail |= lowpan_fetch_skb(skb, &uh->source,
242 sizeof(uh->source));
243 fail |= lowpan_fetch_skb(skb, &uh->dest,
244 sizeof(uh->dest));
8df8c56a
JR
245 break;
246 case LOWPAN_NHC_UDP_CS_P_01:
8ec1d9be
AA
247 fail |= lowpan_fetch_skb(skb, &uh->source,
248 sizeof(uh->source));
249 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
1672a36b 250 uh->dest = htons(val + LOWPAN_NHC_UDP_8BIT_PORT);
8df8c56a
JR
251 break;
252 case LOWPAN_NHC_UDP_CS_P_10:
8ec1d9be 253 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
1672a36b 254 uh->source = htons(val + LOWPAN_NHC_UDP_8BIT_PORT);
8ec1d9be
AA
255 fail |= lowpan_fetch_skb(skb, &uh->dest,
256 sizeof(uh->dest));
8df8c56a
JR
257 break;
258 case LOWPAN_NHC_UDP_CS_P_11:
8ec1d9be 259 fail |= lowpan_fetch_skb(skb, &val, sizeof(val));
e5d966ef 260 uh->source = htons(LOWPAN_NHC_UDP_4BIT_PORT +
1672a36b 261 (val >> 4));
e5d966ef 262 uh->dest = htons(LOWPAN_NHC_UDP_4BIT_PORT +
1672a36b 263 (val & 0x0f));
8df8c56a
JR
264 break;
265 default:
266 pr_debug("ERROR: unknown UDP format\n");
267 goto err;
8df8c56a
JR
268 }
269
270 pr_debug("uncompressed UDP ports: src = %d, dst = %d\n",
e5d966ef 271 ntohs(uh->source), ntohs(uh->dest));
8df8c56a 272
573701ce
AA
273 /* checksum */
274 if (tmp & LOWPAN_NHC_UDP_CS_C) {
275 pr_debug_ratelimited("checksum elided currently not supported\n");
276 goto err;
277 } else {
8ec1d9be
AA
278 fail |= lowpan_fetch_skb(skb, &uh->check,
279 sizeof(uh->check));
573701ce 280 }
8df8c56a 281
89f53490 282 /* UDP length needs to be infered from the lower layers
8df8c56a
JR
283 * here, we obtain the hint from the remaining size of the
284 * frame
285 */
286 uh->len = htons(skb->len + sizeof(struct udphdr));
e5d966ef 287 pr_debug("uncompressed UDP length: src = %d", ntohs(uh->len));
8df8c56a
JR
288 } else {
289 pr_debug("ERROR: unsupported NH format\n");
290 goto err;
291 }
292
1672a36b
AA
293 if (fail)
294 goto err;
295
8df8c56a
JR
296 return 0;
297err:
298 return -EINVAL;
299}
300
301/* TTL uncompression values */
302static const u8 lowpan_ttl_values[] = { 0, 1, 64, 255 };
303
01141234
MT
304int
305lowpan_header_decompress(struct sk_buff *skb, struct net_device *dev,
306 const u8 *saddr, const u8 saddr_type,
307 const u8 saddr_len, const u8 *daddr,
308 const u8 daddr_type, const u8 daddr_len,
309 u8 iphc0, u8 iphc1)
8df8c56a
JR
310{
311 struct ipv6hdr hdr = {};
312 u8 tmp, num_context = 0;
313 int err;
314
315 raw_dump_table(__func__, "raw skb data dump uncompressed",
4710d806 316 skb->data, skb->len);
8df8c56a
JR
317
318 /* another if the CID flag is set */
319 if (iphc1 & LOWPAN_IPHC_CID) {
320 pr_debug("CID flag is set, increase header with one\n");
4ebc960f 321 if (lowpan_fetch_skb(skb, &num_context, sizeof(num_context)))
8df8c56a
JR
322 goto drop;
323 }
324
325 hdr.version = 6;
326
327 /* Traffic Class and Flow Label */
328 switch ((iphc0 & LOWPAN_IPHC_TF) >> 3) {
4710d806 329 /* Traffic Class and FLow Label carried in-line
8df8c56a
JR
330 * ECN + DSCP + 4-bit Pad + Flow Label (4 bytes)
331 */
332 case 0: /* 00b */
4ebc960f 333 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
8df8c56a
JR
334 goto drop;
335
336 memcpy(&hdr.flow_lbl, &skb->data[0], 3);
337 skb_pull(skb, 3);
338 hdr.priority = ((tmp >> 2) & 0x0f);
339 hdr.flow_lbl[0] = ((tmp >> 2) & 0x30) | (tmp << 6) |
340 (hdr.flow_lbl[0] & 0x0f);
341 break;
4710d806 342 /* Traffic class carried in-line
8df8c56a
JR
343 * ECN + DSCP (1 byte), Flow Label is elided
344 */
345 case 2: /* 10b */
4ebc960f 346 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
8df8c56a
JR
347 goto drop;
348
349 hdr.priority = ((tmp >> 2) & 0x0f);
350 hdr.flow_lbl[0] = ((tmp << 6) & 0xC0) | ((tmp >> 2) & 0x30);
351 break;
4710d806 352 /* Flow Label carried in-line
8df8c56a
JR
353 * ECN + 2-bit Pad + Flow Label (3 bytes), DSCP is elided
354 */
355 case 1: /* 01b */
4ebc960f 356 if (lowpan_fetch_skb(skb, &tmp, sizeof(tmp)))
8df8c56a
JR
357 goto drop;
358
359 hdr.flow_lbl[0] = (skb->data[0] & 0x0F) | ((tmp >> 2) & 0x30);
360 memcpy(&hdr.flow_lbl[1], &skb->data[0], 2);
361 skb_pull(skb, 2);
362 break;
363 /* Traffic Class and Flow Label are elided */
364 case 3: /* 11b */
365 break;
366 default:
367 break;
368 }
369
370 /* Next Header */
371 if ((iphc0 & LOWPAN_IPHC_NH_C) == 0) {
372 /* Next header is carried inline */
4ebc960f 373 if (lowpan_fetch_skb(skb, &hdr.nexthdr, sizeof(hdr.nexthdr)))
8df8c56a
JR
374 goto drop;
375
376 pr_debug("NH flag is set, next header carried inline: %02x\n",
377 hdr.nexthdr);
378 }
379
380 /* Hop Limit */
4710d806 381 if ((iphc0 & 0x03) != LOWPAN_IPHC_TTL_I) {
8df8c56a 382 hdr.hop_limit = lowpan_ttl_values[iphc0 & 0x03];
4710d806 383 } else {
4ebc960f
AA
384 if (lowpan_fetch_skb(skb, &hdr.hop_limit,
385 sizeof(hdr.hop_limit)))
8df8c56a
JR
386 goto drop;
387 }
388
389 /* Extract SAM to the tmp variable */
390 tmp = ((iphc1 & LOWPAN_IPHC_SAM) >> LOWPAN_IPHC_SAM_BIT) & 0x03;
391
392 if (iphc1 & LOWPAN_IPHC_SAC) {
393 /* Source address context based uncompression */
394 pr_debug("SAC bit is set. Handle context based source address.\n");
7fc4cfda 395 err = uncompress_context_based_src_addr(skb, &hdr.saddr, tmp);
8df8c56a
JR
396 } else {
397 /* Source address uncompression */
398 pr_debug("source address stateless compression\n");
399 err = uncompress_addr(skb, &hdr.saddr, tmp, saddr,
4710d806 400 saddr_type, saddr_len);
8df8c56a
JR
401 }
402
403 /* Check on error of previous branch */
404 if (err)
405 goto drop;
406
407 /* Extract DAM to the tmp variable */
408 tmp = ((iphc1 & LOWPAN_IPHC_DAM_11) >> LOWPAN_IPHC_DAM_BIT) & 0x03;
409
410 /* check for Multicast Compression */
411 if (iphc1 & LOWPAN_IPHC_M) {
412 if (iphc1 & LOWPAN_IPHC_DAC) {
413 pr_debug("dest: context-based mcast compression\n");
414 /* TODO: implement this */
415 } else {
7fc4cfda
MH
416 err = lowpan_uncompress_multicast_daddr(skb, &hdr.daddr,
417 tmp);
418
8df8c56a
JR
419 if (err)
420 goto drop;
421 }
422 } else {
423 err = uncompress_addr(skb, &hdr.daddr, tmp, daddr,
4710d806 424 daddr_type, daddr_len);
8df8c56a 425 pr_debug("dest: stateless compression mode %d dest %pI6c\n",
4710d806 426 tmp, &hdr.daddr);
8df8c56a
JR
427 if (err)
428 goto drop;
429 }
430
431 /* UDP data uncompression */
432 if (iphc0 & LOWPAN_IPHC_NH_C) {
433 struct udphdr uh;
11e3ff70 434 const int needed = sizeof(struct udphdr) + sizeof(hdr);
4710d806 435
8df8c56a
JR
436 if (uncompress_udp_header(skb, &uh))
437 goto drop;
438
4710d806 439 /* replace the compressed UDP head by the uncompressed UDP
8df8c56a
JR
440 * header
441 */
11e3ff70
MT
442 err = skb_cow(skb, needed);
443 if (unlikely(err)) {
444 kfree_skb(skb);
445 return err;
446 }
8df8c56a
JR
447
448 skb_push(skb, sizeof(struct udphdr));
449 skb_reset_transport_header(skb);
450 skb_copy_to_linear_data(skb, &uh, sizeof(struct udphdr));
451
452 raw_dump_table(__func__, "raw UDP header dump",
4710d806 453 (u8 *)&uh, sizeof(uh));
8df8c56a
JR
454
455 hdr.nexthdr = UIP_PROTO_UDP;
11e3ff70
MT
456 } else {
457 err = skb_cow(skb, sizeof(hdr));
458 if (unlikely(err)) {
459 kfree_skb(skb);
460 return err;
461 }
8df8c56a
JR
462 }
463
464 hdr.payload_len = htons(skb->len);
465
466 pr_debug("skb headroom size = %d, data length = %d\n",
467 skb_headroom(skb), skb->len);
468
469 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n\t"
470 "nexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
471 hdr.version, ntohs(hdr.payload_len), hdr.nexthdr,
472 hdr.hop_limit, &hdr.daddr);
473
f8b36176
MT
474 skb_push(skb, sizeof(hdr));
475 skb_reset_network_header(skb);
476 skb_copy_to_linear_data(skb, &hdr, sizeof(hdr));
8df8c56a 477
f8b36176 478 raw_dump_table(__func__, "raw header dump", (u8 *)&hdr, sizeof(hdr));
8df8c56a 479
f8b36176 480 return 0;
8df8c56a
JR
481drop:
482 kfree_skb(skb);
483 return -EINVAL;
484}
01141234 485EXPORT_SYMBOL_GPL(lowpan_header_decompress);
8df8c56a 486
84ca5e03 487static u8 lowpan_compress_addr_64(u8 **hc_ptr, u8 shift,
4710d806
VB
488 const struct in6_addr *ipaddr,
489 const unsigned char *lladdr)
8df8c56a
JR
490{
491 u8 val = 0;
492
493 if (is_addr_mac_addr_based(ipaddr, lladdr)) {
494 val = 3; /* 0-bits */
495 pr_debug("address compression 0 bits\n");
496 } else if (lowpan_is_iid_16_bit_compressable(ipaddr)) {
497 /* compress IID to 16 bits xxxx::XXXX */
85c71240 498 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[7], 2);
8df8c56a
JR
499 val = 2; /* 16-bits */
500 raw_dump_inline(NULL, "Compressed ipv6 addr is (16 bits)",
84ca5e03 501 *hc_ptr - 2, 2);
8df8c56a
JR
502 } else {
503 /* do not compress IID => xxxx::IID */
85c71240 504 lowpan_push_hc_data(hc_ptr, &ipaddr->s6_addr16[4], 8);
8df8c56a
JR
505 val = 1; /* 64-bits */
506 raw_dump_inline(NULL, "Compressed ipv6 addr is (64 bits)",
84ca5e03 507 *hc_ptr - 8, 8);
8df8c56a
JR
508 }
509
510 return rol8(val, shift);
511}
512
84ca5e03 513static void compress_udp_header(u8 **hc_ptr, struct sk_buff *skb)
8df8c56a 514{
980edbd5 515 struct udphdr *uh;
5cede84c 516 u8 tmp;
8df8c56a 517
980edbd5
SV
518 /* In the case of RAW sockets the transport header is not set by
519 * the ip6 stack so we must set it ourselves
520 */
521 if (skb->transport_header == skb->network_header)
522 skb_set_transport_header(skb, sizeof(struct ipv6hdr));
523
524 uh = udp_hdr(skb);
525
e5d966ef
AA
526 if (((ntohs(uh->source) & LOWPAN_NHC_UDP_4BIT_MASK) ==
527 LOWPAN_NHC_UDP_4BIT_PORT) &&
528 ((ntohs(uh->dest) & LOWPAN_NHC_UDP_4BIT_MASK) ==
529 LOWPAN_NHC_UDP_4BIT_PORT)) {
8df8c56a 530 pr_debug("UDP header: both ports compression to 4 bits\n");
c567c771 531 /* compression value */
5cede84c 532 tmp = LOWPAN_NHC_UDP_CS_P_11;
84ca5e03 533 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
c567c771
AA
534 /* source and destination port */
535 tmp = ntohs(uh->dest) - LOWPAN_NHC_UDP_4BIT_PORT +
536 ((ntohs(uh->source) - LOWPAN_NHC_UDP_4BIT_PORT) << 4);
84ca5e03 537 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
e5d966ef 538 } else if ((ntohs(uh->dest) & LOWPAN_NHC_UDP_8BIT_MASK) ==
8df8c56a
JR
539 LOWPAN_NHC_UDP_8BIT_PORT) {
540 pr_debug("UDP header: remove 8 bits of dest\n");
c567c771 541 /* compression value */
5cede84c 542 tmp = LOWPAN_NHC_UDP_CS_P_01;
84ca5e03 543 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
c567c771 544 /* source port */
84ca5e03 545 lowpan_push_hc_data(hc_ptr, &uh->source, sizeof(uh->source));
c567c771
AA
546 /* destination port */
547 tmp = ntohs(uh->dest) - LOWPAN_NHC_UDP_8BIT_PORT;
84ca5e03 548 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
e5d966ef 549 } else if ((ntohs(uh->source) & LOWPAN_NHC_UDP_8BIT_MASK) ==
8df8c56a
JR
550 LOWPAN_NHC_UDP_8BIT_PORT) {
551 pr_debug("UDP header: remove 8 bits of source\n");
c567c771 552 /* compression value */
5cede84c 553 tmp = LOWPAN_NHC_UDP_CS_P_10;
84ca5e03 554 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
c567c771
AA
555 /* source port */
556 tmp = ntohs(uh->source) - LOWPAN_NHC_UDP_8BIT_PORT;
84ca5e03 557 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
c567c771 558 /* destination port */
84ca5e03 559 lowpan_push_hc_data(hc_ptr, &uh->dest, sizeof(uh->dest));
8df8c56a
JR
560 } else {
561 pr_debug("UDP header: can't compress\n");
c567c771 562 /* compression value */
5cede84c 563 tmp = LOWPAN_NHC_UDP_CS_P_00;
84ca5e03 564 lowpan_push_hc_data(hc_ptr, &tmp, sizeof(tmp));
c567c771 565 /* source port */
84ca5e03 566 lowpan_push_hc_data(hc_ptr, &uh->source, sizeof(uh->source));
c567c771 567 /* destination port */
84ca5e03 568 lowpan_push_hc_data(hc_ptr, &uh->dest, sizeof(uh->dest));
8df8c56a
JR
569 }
570
571 /* checksum is always inline */
84ca5e03 572 lowpan_push_hc_data(hc_ptr, &uh->check, sizeof(uh->check));
8df8c56a
JR
573
574 /* skip the UDP header */
575 skb_pull(skb, sizeof(struct udphdr));
576}
577
578int lowpan_header_compress(struct sk_buff *skb, struct net_device *dev,
4710d806
VB
579 unsigned short type, const void *_daddr,
580 const void *_saddr, unsigned int len)
8df8c56a 581{
84ca5e03 582 u8 tmp, iphc0, iphc1, *hc_ptr;
8df8c56a
JR
583 struct ipv6hdr *hdr;
584 u8 head[100] = {};
556a5bfc 585 int addr_type;
8df8c56a
JR
586
587 if (type != ETH_P_IPV6)
588 return -EINVAL;
589
590 hdr = ipv6_hdr(skb);
84ca5e03 591 hc_ptr = head + 2;
8df8c56a
JR
592
593 pr_debug("IPv6 header dump:\n\tversion = %d\n\tlength = %d\n"
594 "\tnexthdr = 0x%02x\n\thop_lim = %d\n\tdest = %pI6c\n",
4710d806
VB
595 hdr->version, ntohs(hdr->payload_len), hdr->nexthdr,
596 hdr->hop_limit, &hdr->daddr);
8df8c56a
JR
597
598 raw_dump_table(__func__, "raw skb network header dump",
4710d806 599 skb_network_header(skb), sizeof(struct ipv6hdr));
8df8c56a 600
4710d806 601 /* As we copy some bit-length fields, in the IPHC encoding bytes,
8df8c56a
JR
602 * we sometimes use |=
603 * If the field is 0, and the current bit value in memory is 1,
604 * this does not work. We therefore reset the IPHC encoding here
605 */
606 iphc0 = LOWPAN_DISPATCH_IPHC;
607 iphc1 = 0;
608
609 /* TODO: context lookup */
610
611 raw_dump_inline(__func__, "saddr",
612 (unsigned char *)_saddr, IEEE802154_ADDR_LEN);
613 raw_dump_inline(__func__, "daddr",
614 (unsigned char *)_daddr, IEEE802154_ADDR_LEN);
615
7fc4cfda 616 raw_dump_table(__func__, "sending raw skb network uncompressed packet",
4710d806 617 skb->data, skb->len);
8df8c56a 618
4710d806 619 /* Traffic class, flow label
8df8c56a
JR
620 * If flow label is 0, compress it. If traffic class is 0, compress it
621 * We have to process both in the same time as the offset of traffic
622 * class depends on the presence of version and flow label
623 */
624
84ca5e03 625 /* hc format of TC is ECN | DSCP , original one is DSCP | ECN */
8df8c56a
JR
626 tmp = (hdr->priority << 4) | (hdr->flow_lbl[0] >> 4);
627 tmp = ((tmp & 0x03) << 6) | (tmp >> 2);
628
629 if (((hdr->flow_lbl[0] & 0x0F) == 0) &&
4710d806 630 (hdr->flow_lbl[1] == 0) && (hdr->flow_lbl[2] == 0)) {
8df8c56a
JR
631 /* flow label can be compressed */
632 iphc0 |= LOWPAN_IPHC_FL_C;
633 if ((hdr->priority == 0) &&
4710d806 634 ((hdr->flow_lbl[0] & 0xF0) == 0)) {
8df8c56a
JR
635 /* compress (elide) all */
636 iphc0 |= LOWPAN_IPHC_TC_C;
637 } else {
638 /* compress only the flow label */
84ca5e03
AA
639 *hc_ptr = tmp;
640 hc_ptr += 1;
8df8c56a
JR
641 }
642 } else {
643 /* Flow label cannot be compressed */
644 if ((hdr->priority == 0) &&
4710d806 645 ((hdr->flow_lbl[0] & 0xF0) == 0)) {
8df8c56a
JR
646 /* compress only traffic class */
647 iphc0 |= LOWPAN_IPHC_TC_C;
84ca5e03
AA
648 *hc_ptr = (tmp & 0xc0) | (hdr->flow_lbl[0] & 0x0F);
649 memcpy(hc_ptr + 1, &hdr->flow_lbl[1], 2);
650 hc_ptr += 3;
8df8c56a
JR
651 } else {
652 /* compress nothing */
84ca5e03 653 memcpy(hc_ptr, hdr, 4);
8df8c56a 654 /* replace the top byte with new ECN | DSCP format */
84ca5e03
AA
655 *hc_ptr = tmp;
656 hc_ptr += 4;
8df8c56a
JR
657 }
658 }
659
660 /* NOTE: payload length is always compressed */
661
662 /* Next Header is compress if UDP */
663 if (hdr->nexthdr == UIP_PROTO_UDP)
664 iphc0 |= LOWPAN_IPHC_NH_C;
665
85c71240
AA
666 if ((iphc0 & LOWPAN_IPHC_NH_C) == 0)
667 lowpan_push_hc_data(&hc_ptr, &hdr->nexthdr,
668 sizeof(hdr->nexthdr));
8df8c56a 669
4710d806 670 /* Hop limit
8df8c56a
JR
671 * if 1: compress, encoding is 01
672 * if 64: compress, encoding is 10
673 * if 255: compress, encoding is 11
674 * else do not compress
675 */
676 switch (hdr->hop_limit) {
677 case 1:
678 iphc0 |= LOWPAN_IPHC_TTL_1;
679 break;
680 case 64:
681 iphc0 |= LOWPAN_IPHC_TTL_64;
682 break;
683 case 255:
684 iphc0 |= LOWPAN_IPHC_TTL_255;
685 break;
686 default:
85c71240
AA
687 lowpan_push_hc_data(&hc_ptr, &hdr->hop_limit,
688 sizeof(hdr->hop_limit));
8df8c56a
JR
689 }
690
556a5bfc 691 addr_type = ipv6_addr_type(&hdr->saddr);
8df8c56a 692 /* source address compression */
556a5bfc 693 if (addr_type == IPV6_ADDR_ANY) {
8df8c56a
JR
694 pr_debug("source address is unspecified, setting SAC\n");
695 iphc1 |= LOWPAN_IPHC_SAC;
8df8c56a 696 } else {
556a5bfc
AA
697 if (addr_type & IPV6_ADDR_LINKLOCAL) {
698 iphc1 |= lowpan_compress_addr_64(&hc_ptr,
699 LOWPAN_IPHC_SAM_BIT,
700 &hdr->saddr, _saddr);
701 pr_debug("source address unicast link-local %pI6c iphc1 0x%02x\n",
702 &hdr->saddr, iphc1);
703 } else {
704 pr_debug("send the full source address\n");
705 lowpan_push_hc_data(&hc_ptr, hdr->saddr.s6_addr, 16);
706 }
8df8c56a
JR
707 }
708
556a5bfc 709 addr_type = ipv6_addr_type(&hdr->daddr);
8df8c56a 710 /* destination address compression */
556a5bfc 711 if (addr_type & IPV6_ADDR_MULTICAST) {
8df8c56a
JR
712 pr_debug("destination address is multicast: ");
713 iphc1 |= LOWPAN_IPHC_M;
714 if (lowpan_is_mcast_addr_compressable8(&hdr->daddr)) {
715 pr_debug("compressed to 1 octet\n");
716 iphc1 |= LOWPAN_IPHC_DAM_11;
717 /* use last byte */
85c71240
AA
718 lowpan_push_hc_data(&hc_ptr,
719 &hdr->daddr.s6_addr[15], 1);
8df8c56a
JR
720 } else if (lowpan_is_mcast_addr_compressable32(&hdr->daddr)) {
721 pr_debug("compressed to 4 octets\n");
722 iphc1 |= LOWPAN_IPHC_DAM_10;
723 /* second byte + the last three */
85c71240
AA
724 lowpan_push_hc_data(&hc_ptr,
725 &hdr->daddr.s6_addr[1], 1);
726 lowpan_push_hc_data(&hc_ptr,
727 &hdr->daddr.s6_addr[13], 3);
8df8c56a
JR
728 } else if (lowpan_is_mcast_addr_compressable48(&hdr->daddr)) {
729 pr_debug("compressed to 6 octets\n");
730 iphc1 |= LOWPAN_IPHC_DAM_01;
731 /* second byte + the last five */
85c71240
AA
732 lowpan_push_hc_data(&hc_ptr,
733 &hdr->daddr.s6_addr[1], 1);
734 lowpan_push_hc_data(&hc_ptr,
735 &hdr->daddr.s6_addr[11], 5);
8df8c56a
JR
736 } else {
737 pr_debug("using full address\n");
738 iphc1 |= LOWPAN_IPHC_DAM_00;
85c71240 739 lowpan_push_hc_data(&hc_ptr, hdr->daddr.s6_addr, 16);
8df8c56a
JR
740 }
741 } else {
556a5bfc
AA
742 if (addr_type & IPV6_ADDR_LINKLOCAL) {
743 /* TODO: context lookup */
84ca5e03 744 iphc1 |= lowpan_compress_addr_64(&hc_ptr,
8df8c56a
JR
745 LOWPAN_IPHC_DAM_BIT, &hdr->daddr, _daddr);
746 pr_debug("dest address unicast link-local %pI6c "
7fc4cfda 747 "iphc1 0x%02x\n", &hdr->daddr, iphc1);
8df8c56a
JR
748 } else {
749 pr_debug("dest address unicast %pI6c\n", &hdr->daddr);
85c71240 750 lowpan_push_hc_data(&hc_ptr, hdr->daddr.s6_addr, 16);
8df8c56a
JR
751 }
752 }
753
754 /* UDP header compression */
755 if (hdr->nexthdr == UIP_PROTO_UDP)
84ca5e03 756 compress_udp_header(&hc_ptr, skb);
8df8c56a
JR
757
758 head[0] = iphc0;
759 head[1] = iphc1;
760
761 skb_pull(skb, sizeof(struct ipv6hdr));
762 skb_reset_transport_header(skb);
84ca5e03 763 memcpy(skb_push(skb, hc_ptr - head), head, hc_ptr - head);
8df8c56a
JR
764 skb_reset_network_header(skb);
765
84ca5e03 766 pr_debug("header len %d skb %u\n", (int)(hc_ptr - head), skb->len);
8df8c56a
JR
767
768 raw_dump_table(__func__, "raw skb data dump compressed",
4710d806 769 skb->data, skb->len);
8df8c56a
JR
770 return 0;
771}
772EXPORT_SYMBOL_GPL(lowpan_header_compress);
5ae5e991
YD
773
774MODULE_LICENSE("GPL");