Blame view

RIOT/sys/include/net/ipv6/addr.h 23.1 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
  /*
   * Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
   *
   * This file is subject to the terms and conditions of the GNU Lesser General
   * Public License v2.1. See the file LICENSE in the top level directory for
   * more details.
   */
  
  /**
   * @defgroup    net_ipv6_addr    IPv6 addresses
   * @ingroup     net_ipv6
   * @brief       IPv6 address architecture
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291">
   *          RFC 4291
   *      </a>
   *
   * @{
   *
   * @file
   * @brief       Definitions for IPv6 addresses
   *
   * @author      Martine Lenders <mlenders@inf.fu-berlin.de>
   */
  
  
  #ifndef NET_IPV6_ADDR_H
  #define NET_IPV6_ADDR_H
  
  #include <stdbool.h>
  #include <string.h>
  
  #include "byteorder.h"
  #include "net/ipv4/addr.h"
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /**
   * @brief   Length of an IPv6 address in bit.
   */
  #define IPV6_ADDR_BIT_LEN           (128)
  
  #ifdef MODULE_IPV4_ADDR
  /**
   * @brief   Maximum length of an IPv6 address as string.
   */
  #define IPV6_ADDR_MAX_STR_LEN       (sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"))
  #else
  /**
   * @brief   Maximum length of an IPv6 address as string.
   */
  #define IPV6_ADDR_MAX_STR_LEN       (sizeof("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"))
  #endif
  
  
  /**
   * @brief The first 10 bits of a site-local IPv6 unicast address
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.7">
   *          RFC 4291, section 2.5.7
   *      </a>
   *
   * @note Site-local addresses are now deprecated as defined in <a
   *       href="http://tools.ietf.org/html/rfc3879">SLDEP</a>. They are only
   *       defined here for the distinction of global unicast addresses.
   */
  #define IPV6_ADDR_SITE_LOCAL_PREFIX (0xfec0)
  
  /**
   * @brief Data type to represent an IPv6 address.
   */
  typedef union {
      uint8_t u8[16];             /**< divided by 16 8-bit words. */
      network_uint16_t u16[8];    /**< divided by 8 16-bit words. */
      network_uint32_t u32[4];    /**< divided by 4 32-bit words. */
      network_uint64_t u64[2];    /**< divided by 2 64-bit words. */
  } ipv6_addr_t;
  
  /**
   * @brief   Static initializer for the unspecified IPv6 address (::)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.2">
   *          RFC 4291, section 2.5.2
   *      </a>
   */
  #define IPV6_ADDR_UNSPECIFIED               {{ 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00 }}
  
  /**
   * @brief   Static initializer for the loopback IPv6 address (::1)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.3">
   *          RFC 4291, section 2.5.3
   *      </a>
   */
  #define IPV6_ADDR_LOOPBACK                  {{ 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x01 }}
  /**
   * @brief   Static initializer for the link-local prefix (fe80::/64)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.6">
   *          RFC 4291, section 2.5.6
   *      </a>
   */
  #define IPV6_ADDR_LINK_LOCAL_PREFIX         {{ 0xfe, 0x80, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00 }}
  
  /**
   * @brief   Static initializer for the interface-local all nodes multicast IPv6
   *          address (ff01::1)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_ALL_NODES_IF_LOCAL        {{ 0xff, 0x01, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x01 }}
  
  /**
   * @brief   Static initializer for the link-local all nodes multicast IPv6
   *          address (ff02::1)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_ALL_NODES_LINK_LOCAL      {{ 0xff, 0x02, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x01 }}
  
  /**
   * @brief   Static initializer for the interface-local all routers multicast IPv6
   *          address (ff01::2)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_ALL_ROUTERS_IF_LOCAL      {{ 0xff, 0x01, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x02 }}
  
  /**
   * @brief   Static initializer for the link-local all routers multicast IPv6
   *          address (ff02::2)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_ALL_ROUTERS_LINK_LOCAL    {{ 0xff, 0x02, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x02 }}
  
  
  /**
   * @brief   Static initializer for the site-local all routers multicast IPv6
   *          address (ff05::2)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_ALL_ROUTERS_SITE_LOCAL    {{ 0xff, 0x05, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x02 }}
  
  /**
   * @brief   Static initializer for the solicited node multicast prefix
   *          (ff02:0:0:0:0:1:ff00::/104)
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_SOLICITED_NODE_PREFIX     {{ 0xff, 0x02, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x00, \
                                                 0x00, 0x00, 0x00, 0x01, \
                                                 0xff, 0x00, 0x00, 0x00 }}
  
  /**
   * @name    Multicast address flags
   * @brief   Values for the flag field in multicast addresses.
   * @{
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  /**
   * @brief   The address is transient, i.e. not well-known, permanantly
   *          assigned address by IANA.
   */
  #define IPV6_ADDR_MCAST_FLAG_TRANSIENT      (0x01)
  
  /**
   * @brief   The address is based on a network prefix
   *
   * @see <a href="http://tools.ietf.org/html/rfc3306#section-4">
   *          RFC 3306, section 4
   *      </a>
   */
  #define IPV6_ADDR_MCAST_FLAG_PREFIX_BASED   (0x02)
  
  /**
   * @brief   The address embeds the address on the rendezvous point
   *
   * @see <a href="http://tools.ietf.org/html/rfc3956#section-3">
   *          RFC 3956, section 3
   *      </a>
   */
  #define IPV6_ADDR_MCAST_FLAG_EMBED_ON_RP    (0x04)
  /** @} */
  
  /**
   * @name    Multicast address scopes
   * @brief   Values for the scope field in multicast addresses.
   * @{
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   */
  #define IPV6_ADDR_MCAST_SCP_IF_LOCAL        (0x1)   /**< interface-local scope */
  #define IPV6_ADDR_MCAST_SCP_LINK_LOCAL      (0x2)   /**< link-local scope */
  
  /**
   * @brief realm-local scope
   *
   * @see <a href="http://tools.ietf.org/html/rfc7346#section-3">
   *          RFC 7346, section 3
   *      </a> and
   *      <a href="http://tools.ietf.org/html/rfc7346#section-5">
   *          RFC 7346, section 5
   *      </a> and
   */
  #define IPV6_ADDR_MCAST_SCP_REALM_LOCAL (0x3)
  #define IPV6_ADDR_MCAST_SCP_ADMIN_LOCAL (0x4)      /**< admin-local scope */
  #define IPV6_ADDR_MCAST_SCP_SITE_LOCAL  (0x5)      /**< site-local scope */
  #define IPV6_ADDR_MCAST_SCP_ORG_LOCAL   (0x8)      /**< organization-local scope */
  #define IPV6_ADDR_MCAST_SCP_GLOBAL      (0xe)      /**< global scope */
  /** @} */
  
  /**
   * @brief In-memory constants of defined addresses and prefixes
   * @{
   */
  /**
   * @see @ref IPV6_ADDR_UNSPECIFIED
   */
  extern const ipv6_addr_t ipv6_addr_unspecified;
  
  /**
   * @see @ref IPV6_ADDR_LOOPBACK
   */
  extern const ipv6_addr_t ipv6_addr_loopback;
  
  /**
   * @see @ref IPV6_ADDR_LINK_LOCAL_PREFIX
   */
  extern const ipv6_addr_t ipv6_addr_link_local_prefix;
  
  /**
   * @see @ref IPV6_ADDR_ALL_NODES_IF_LOCAL
   */
  extern const ipv6_addr_t ipv6_addr_all_nodes_if_local;
  
  /**
   * @see @ref IPV6_ADDR_ALL_NODES_LINK_LOCAL
   */
  extern const ipv6_addr_t ipv6_addr_all_nodes_link_local;
  
  /**
   * @see @ref IPV6_ADDR_ALL_ROUTERS_IF_LOCAL
   */
  extern const ipv6_addr_t ipv6_addr_all_routers_if_local;
  
  /**
   * @see @ref IPV6_ADDR_ALL_ROUTERS_LINK_LOCAL
   */
  extern const ipv6_addr_t ipv6_addr_all_routers_link_local;
  
  /**
   * @see @ref IPV6_ADDR_ALL_ROUTERS_SITE_LOCAL
   */
  extern const ipv6_addr_t ipv6_addr_all_routers_site_local;
  
  /**
   * @see @ref IPV6_ADDR_SOLICITED_NODE_PREFIX
   */
  extern const ipv6_addr_t ipv6_addr_solicited_node_prefix;
  /**
   * @}
   */
  
  /**
   * @brief   Checks if @p addr is unspecified (all zero).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.2">
   *          RFC 4291, section 2.5.2
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is unspecified address
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_unspecified(const ipv6_addr_t *addr)
  {
      return (memcmp(addr, &ipv6_addr_unspecified, sizeof(ipv6_addr_t)) == 0);
  }
  
  /**
   * @brief   Checks if @p addr is a loopback address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.3">
   *          RFC 4291, section 2.5.3
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is loopback address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_loopback(const ipv6_addr_t *addr)
  {
      return (memcmp(addr, &ipv6_addr_loopback, sizeof(ipv6_addr_t)) == 0);
  }
  
  /**
   * @brief   Checks if @p addr is a IPv4-compatible IPv6 address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">
   *          RFC 4291, section 2.5.5.1
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is an IPv4-compatible IPv6 address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_ipv4_compat(const ipv6_addr_t *addr)
  {
      return (memcmp(addr, &ipv6_addr_unspecified,
                     sizeof(ipv6_addr_t) - sizeof(ipv4_addr_t)) == 0);
  }
  
  /**
   * @brief   Checks if @p addr is a IPv4-mapped IPv6 address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.5.2">
   *          RFC 4291, section 2.5.5.2
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is an IPv4-compatible IPv6 address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_ipv4_mapped(const ipv6_addr_t *addr)
  {
      return ((memcmp(addr, &ipv6_addr_unspecified,
                      sizeof(ipv6_addr_t) - sizeof(ipv4_addr_t) - 2) == 0) &&
              (addr->u16[5].u16 == 0xffff));
  }
  
  /**
   * @brief   Check if @p addr is a multicast address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is multicast address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_multicast(const ipv6_addr_t *addr)
  {
      return (addr->u8[0] == 0xff);
  }
  
  /**
   * @brief   Check if @p addr is a link-local address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.6">
   *          RFC 4291, section 2.5.6
   *      </a>
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is link-local address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_link_local(const ipv6_addr_t *addr)
  {
      return (memcmp(addr, &ipv6_addr_link_local_prefix, sizeof(addr->u64[0])) == 0) ||
             (ipv6_addr_is_multicast(addr) &&
              (addr->u8[1] & 0x0f) == IPV6_ADDR_MCAST_SCP_LINK_LOCAL);
  }
  
  /**
   * @brief   Checks if @p addr is a site-local address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.7">
   *          RFC 4291, section 2.5.7
   *      </a>
   *
   * @note Site-local addresses are now deprecated as defined in <a
   *       href="http://tools.ietf.org/html/rfc3879">SLDEP</a>. They are only
   *       defined here for the distinction of global unicast addresses.
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is a site-local unicast address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_site_local(const ipv6_addr_t *addr)
  {
      return (((byteorder_ntohs(addr->u16[0]) & 0xffc0) ==
               IPV6_ADDR_SITE_LOCAL_PREFIX) ||
              (ipv6_addr_is_multicast(addr) &&
               (addr->u8[1] & 0x0f) == IPV6_ADDR_MCAST_SCP_SITE_LOCAL));
  }
  
  /**
   * @brief   Check if @p addr is unique local unicast address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4193">
   *          RFC 4193
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is unique local unicast address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_unique_local_unicast(const ipv6_addr_t *addr)
  {
      return ((addr->u8[0] == 0xfc) || (addr->u8[0] == 0xfd));
  }
  
  /**
   * @brief   Check if @p addr is global unicast address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.4">
   *          RFC 4291, section 2.5.4
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is global unicast address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_global(const ipv6_addr_t *addr)
  {
      /* first check for multicast with global scope */
      if (ipv6_addr_is_multicast(addr)) {
          return ((addr->u8[1] & 0x0f) == IPV6_ADDR_MCAST_SCP_GLOBAL);
      }
      else {
          return !(ipv6_addr_is_link_local(addr) ||
                   ipv6_addr_is_unspecified(addr) ||
                   ipv6_addr_is_loopback(addr));
      }
  }
  
  
  /**
   * @brief   Check if @p addr is solicited-node multicast address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7.1">
   *          RFC 4291, section 2.7.1
   *      </a>
   *
   * @param[in] addr  An IPv6 address.
   *
   * @return  true, if @p addr is solicited-node multicast address,
   * @return  false, otherwise.
   */
  static inline bool ipv6_addr_is_solicited_node(const ipv6_addr_t *addr)
  {
      return (memcmp(addr, &ipv6_addr_solicited_node_prefix,
                     sizeof(ipv6_addr_t) - 3) == 0);
  }
  
  
  /**
   * @brief   Checks if two IPv6 addresses are equal.
   *
   * @param[in] a     An IPv6 address.
   * @param[in] b     Another IPv6 address.
   *
   * @return  true, if @p a and @p b are equal
   * @return  false, otherwise.
   */
  bool ipv6_addr_equal(const ipv6_addr_t *a, const ipv6_addr_t *b);
  
  /**
   * @brief   Checks up to which bit-count two IPv6 addresses match in their
   *          prefix.
   *
   * @param[in] a An IPv6 address.
   * @param[in] b Another IPv6 address.
   *
   * @return  The number of bits @p a and @p b match in their prefix
   */
  uint8_t ipv6_addr_match_prefix(const ipv6_addr_t *a, const ipv6_addr_t *b);
  
  /**
   * @brief   Sets IPv6 address @p out with the first @p bits taken
   *          from @p prefix and leaves the remaining bits untouched.
   *
   * @param[out]  out     Prefix to be set.
   * @param[in]   prefix  Address to take prefix from.
   * @param[in]   bits    Bits to be copied from @p prefix to @p out
   *                      (set to 128 when greater than 128).
   */
  void ipv6_addr_init_prefix(ipv6_addr_t *out, const ipv6_addr_t *prefix, uint8_t bits);
  
  /**
   * @brief   Sets the last @p bits of IPv6 address @p out to @p iid.
   *          Leading bits of @p out stay untouched.
   *
   * @param[out]  out     IPv6 address to be set.
   * @param[in]   iid     buffer representing the iid.
   * @param[in]   bits    Bits to be copied from @p iid to @p out
   *                      (set to 128 when greater than 128).
   */
  void ipv6_addr_init_iid(ipv6_addr_t *out, const uint8_t *iid, uint8_t bits);
  
  /**
   * @brief   Sets @p addr dynamically to the unspecified IPv6 address (::).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.2">
   *          RFC 4291, section 2.5.2
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   */
  static inline void ipv6_addr_set_unspecified(ipv6_addr_t *addr)
  {
      memset(addr, 0, sizeof(ipv6_addr_t));
  }
  
  /**
   * @brief   Sets @p addr dynamically to the loopback IPv6 address (::1).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.3">
   *          RFC 4291, section 2.5.3
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   */
  static inline void ipv6_addr_set_loopback(ipv6_addr_t *addr)
  {
      memset(addr, 0, sizeof(ipv6_addr_t));
      addr->u8[15] = 1;
  }
  
  /**
   * @brief   Sets the first 64 bit of @p addr to link local prefix (fe08::/64).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.6">
   *          RFC 4291, section 2.5.6
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   */
  static inline void ipv6_addr_set_link_local_prefix(ipv6_addr_t *addr)
  {
      memcpy(addr, &ipv6_addr_link_local_prefix, sizeof(addr->u64[0]));
  }
  
  /**
   * @brief   Sets the 64-bit interface ID (as integer) of a unicast or anycast
   *          IPv6 address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.4">
   *          RFC 4291, section 2.5.4
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   * @param[in] iid       The interface ID as integer to set.
   */
  static inline void ipv6_addr_set_iid(ipv6_addr_t *addr, uint64_t iid)
  {
      addr->u64[1] = byteorder_htonll(iid);
  }
  
  /**
   * @brief   Sets the 64-bit interface ID (as array) of a unicast or anycast
   *          IPv6 address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.5.4">
   *          RFC 4291, section 2.5.4
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   * @param[in] iid       The interface ID as array of at least length 8 to set.
   */
  static inline void ipv6_addr_set_aiid(ipv6_addr_t *addr, uint8_t *iid)
  {
      memcpy(&addr->u64[1], iid, sizeof(addr->u64[1]));
  }
  
  /**
   * @brief   Sets the bits for an address required to be a multicast address.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7">
   *          RFC 4291, section 2.7
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   * @param[in] flags     The multicast address' flags.
   * @param[in] scope     The multicast address' scope.
   */
  static inline void ipv6_addr_set_multicast(ipv6_addr_t *addr, unsigned int flags,
                                             unsigned int scope)
  {
      addr->u8[0] = 0xff;
      addr->u8[1] = (((uint8_t)flags) << 4) | (((uint8_t) scope) & 0x0f);
  }
  
  /**
   * @brief   Sets @p addr dynamically to an all nodes multicast IPv6 address (ff0S::1,
   *          where S is the scope).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7.1">
   *          RFC 4291, section 2.7.1
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   * @param[in] scope     The multicast address' scope.
   */
  static inline void ipv6_addr_set_all_nodes_multicast(ipv6_addr_t *addr, unsigned int scope)
  {
      memcpy(addr, &ipv6_addr_all_nodes_if_local, sizeof(ipv6_addr_t));
      addr->u8[1] = (uint8_t)scope;
  }
  
  /**
   * @brief   Sets @p addr dynamically to an all routers multicast IPv6 address (ff0S::2,
   *          where S is the scope).
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291#section-2.7.1">
   *          RFC 4291, section 2.7.1
   *      </a>
   *
   * @param[in,out] addr  The address to set.
   * @param[in] scope     The multicast address' scope.
   */
  static inline void ipv6_addr_set_all_routers_multicast(ipv6_addr_t *addr, unsigned int scope)
  {
      memcpy(addr, &ipv6_addr_all_routers_if_local, sizeof(ipv6_addr_t));
      addr->u8[1] = (uint8_t)scope;
  }
  
  /**
   * @brief   Set @p out to the solicited-node multicast address
   *          computed from @p in.
   *
   * @see <a href="http://tools.ietf.org/html/rfc4291">
   *          RFC 4291
   *      </a>
   *
   * @param[out]  out   Is set to solicited-node address of this node.
   * @param[in]   in    The IPv6 address the solicited-node address.
   */
  static inline void ipv6_addr_set_solicited_nodes(ipv6_addr_t *out, const ipv6_addr_t *in)
  {
      out->u64[0] = byteorder_htonll(0xff02000000000000);
      out->u32[2] = byteorder_htonl(1);
      out->u8[12] = 0xff;
      out->u8[13] = in->u8[13];
      out->u16[7] = in->u16[7];
  }
  
  /**
   * @brief   Converts an IPv6 address to its string representation
   *
   * @see <a href="https://tools.ietf.org/html/rfc5952">
   *          RFC 5952
   *      </a>
   *
   * @param[out] result       The resulting string representation of at least
   *                          @ref IPV6_ADDR_MAX_STR_LEN
   * @param[in] addr          An IPv6 address
   * @param[in] result_len    Length of @p result_len
   *
   * @return  @p result, on success
   * @return  NULL, if @p result_len was lesser than IPV6_ADDR_MAX_STR_LEN
   * @return  NULL, if @p result or @p addr was NULL
   */
  char *ipv6_addr_to_str(char *result, const ipv6_addr_t *addr, uint8_t result_len);
  
  /**
   * @brief   Converts an IPv6 address string representation to a byte-represented
   *          IPv6 address
   *
   * @see <a href="https://tools.ietf.org/html/rfc5952">
   *          RFC 5952
   *      </a>
   *
   * @param[in] result    The resulting byte representation
   * @param[in] addr      An IPv6 address string representation
   *
   * @return  @p result, on success
   * @return  NULL, if @p addr was malformed
   * @return  NULL, if @p result or @p addr was NULL
   */
  ipv6_addr_t *ipv6_addr_from_str(ipv6_addr_t *result, const char *addr);
  
  /**
   * @brief split IPv6 address string representation
   *
   * @note Will change @p seperator position in @p addr_str to '\0'
   *
   * @param[in,out]   addr_str    Address to split
   * @param[in]       seperator   Seperator char to use
   * @param[in]       _default    Default value
   *
   * @return      atoi(string after split)
   * @return      @p _default if no string after @p seperator
   */
  int ipv6_addr_split(char *addr_str, char seperator, int _default);
  
  /**
   * @brief split IPv6 prefix string representation
   *
   * E.g., "2001:db8::1/64" returns "64", changes @p addr_str to "2001:db8::1"
   *
   * @param[in,out]   addr_str    Address to split
   * @return          prefix length or 128 if none specified
   */
  static inline int ipv6_addr_split_prefix(char *addr_str)
  {
      return ipv6_addr_split(addr_str, '/', 128);
  }
  
  /**
   * @brief split IPv6 address + interface specifier
   *
   * E.g., "fe80::1%5" returns "5", changes @p addr_str to "fe80::1"
   *
   * @param[in,out]   addr_str Address to split
   * @return          interface number or -1 if none specified
   */
  static inline int ipv6_addr_split_iface(char *addr_str)
  {
      return ipv6_addr_split(addr_str, '%', -1);
  }
  
  /**
   * @brief Print IPv6 address to stdout
   *
   * @param[in]   addr  Pointer to ipv6_addr_t to print
   */
  void ipv6_addr_print(const ipv6_addr_t *addr);
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* NET_IPV6_ADDR_H */
  /**
   * @}
   */