[3495654] | 1 | /*
|
---|
| 2 | * Copyright (c) 2013 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #ifndef LIBC_INET_ADDR_H_
|
---|
| 36 | #define LIBC_INET_ADDR_H_
|
---|
| 37 |
|
---|
[1c7ba2da] | 38 | #include <stdint.h>
|
---|
[a2e3ee6] | 39 |
|
---|
[02a09ed] | 40 | typedef uint32_t addr32_t;
|
---|
| 41 | typedef uint8_t addr48_t[6];
|
---|
| 42 | typedef uint8_t addr128_t[16];
|
---|
[1c7ba2da] | 43 |
|
---|
[f023251] | 44 | typedef enum {
|
---|
| 45 | /** Any IP protocol version */
|
---|
| 46 | ip_any,
|
---|
| 47 | /** IPv4 */
|
---|
| 48 | ip_v4,
|
---|
| 49 | /** IPv6 */
|
---|
| 50 | ip_v6
|
---|
| 51 | } ip_ver_t;
|
---|
| 52 |
|
---|
[1c7ba2da] | 53 | /** Node address */
|
---|
| 54 | typedef struct {
|
---|
[f023251] | 55 | /** IP version */
|
---|
| 56 | ip_ver_t version;
|
---|
[02a09ed] | 57 | union {
|
---|
| 58 | addr32_t addr;
|
---|
| 59 | addr128_t addr6;
|
---|
| 60 | };
|
---|
[1c7ba2da] | 61 | } inet_addr_t;
|
---|
| 62 |
|
---|
| 63 | /** Network address */
|
---|
| 64 | typedef struct {
|
---|
[f023251] | 65 | /** IP version */
|
---|
| 66 | ip_ver_t version;
|
---|
[a2e3ee6] | 67 |
|
---|
[1c7ba2da] | 68 | /** Address */
|
---|
[02a09ed] | 69 | union {
|
---|
| 70 | addr32_t addr;
|
---|
| 71 | addr128_t addr6;
|
---|
| 72 | };
|
---|
[a2e3ee6] | 73 |
|
---|
| 74 | /** Number of valid bits */
|
---|
| 75 | uint8_t prefix;
|
---|
[1c7ba2da] | 76 | } inet_naddr_t;
|
---|
[3495654] | 77 |
|
---|
[695b6ff] | 78 | extern const addr32_t addr32_broadcast_all_hosts;
|
---|
[02a09ed] | 79 | extern const addr48_t addr48_broadcast;
|
---|
[a2e3ee6] | 80 |
|
---|
[02a09ed] | 81 | extern void addr48(const addr48_t, addr48_t);
|
---|
| 82 | extern void addr128(const addr128_t, addr128_t);
|
---|
[a2e3ee6] | 83 |
|
---|
[83781a22] | 84 | extern int addr48_compare(const addr48_t, const addr48_t);
|
---|
[671b546] | 85 | extern int addr128_compare(const addr128_t, const addr128_t);
|
---|
| 86 |
|
---|
[83781a22] | 87 | extern void addr48_solicited_node(const addr128_t, addr48_t);
|
---|
| 88 |
|
---|
[02a09ed] | 89 | extern void host2addr128_t_be(const addr128_t, addr128_t);
|
---|
| 90 | extern void addr128_t_be2host(const addr128_t, addr128_t);
|
---|
[a2e3ee6] | 91 |
|
---|
| 92 | extern void inet_addr(inet_addr_t *, uint8_t, uint8_t, uint8_t, uint8_t);
|
---|
| 93 | extern void inet_naddr(inet_naddr_t *, uint8_t, uint8_t, uint8_t, uint8_t,
|
---|
| 94 | uint8_t);
|
---|
| 95 |
|
---|
[02a09ed] | 96 | extern void inet_addr6(inet_addr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
|
---|
| 97 | uint16_t, uint16_t, uint16_t, uint16_t);
|
---|
| 98 | extern void inet_naddr6(inet_naddr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
|
---|
| 99 | uint16_t, uint16_t, uint16_t, uint16_t, uint8_t);
|
---|
| 100 |
|
---|
| 101 | extern void inet_naddr_addr(const inet_naddr_t *, inet_addr_t *);
|
---|
[bb9b0c6] | 102 | extern void inet_addr_naddr(const inet_addr_t *, uint8_t, inet_naddr_t *);
|
---|
[02a09ed] | 103 |
|
---|
[a2e3ee6] | 104 | extern void inet_addr_any(inet_addr_t *);
|
---|
| 105 | extern void inet_naddr_any(inet_naddr_t *);
|
---|
| 106 |
|
---|
[02a09ed] | 107 | extern int inet_addr_compare(const inet_addr_t *, const inet_addr_t *);
|
---|
| 108 | extern int inet_addr_is_any(const inet_addr_t *);
|
---|
| 109 |
|
---|
[30c5d13] | 110 | extern int inet_naddr_compare(const inet_naddr_t *, const inet_addr_t *);
|
---|
[02a09ed] | 111 | extern int inet_naddr_compare_mask(const inet_naddr_t *, const inet_addr_t *);
|
---|
| 112 |
|
---|
| 113 | extern int inet_addr_parse(const char *, inet_addr_t *);
|
---|
| 114 | extern int inet_naddr_parse(const char *, inet_naddr_t *);
|
---|
| 115 |
|
---|
| 116 | extern int inet_addr_format(const inet_addr_t *, char **);
|
---|
| 117 | extern int inet_naddr_format(const inet_naddr_t *, char **);
|
---|
| 118 |
|
---|
[f023251] | 119 | extern ip_ver_t inet_addr_get(const inet_addr_t *, addr32_t *, addr128_t *);
|
---|
| 120 | extern ip_ver_t inet_naddr_get(const inet_naddr_t *, addr32_t *, addr128_t *,
|
---|
[02a09ed] | 121 | uint8_t *);
|
---|
| 122 |
|
---|
| 123 | extern void inet_addr_set(addr32_t, inet_addr_t *);
|
---|
| 124 | extern void inet_naddr_set(addr32_t, uint8_t, inet_naddr_t *);
|
---|
| 125 |
|
---|
| 126 | extern void inet_addr_set6(addr128_t, inet_addr_t *);
|
---|
| 127 | extern void inet_naddr_set6(addr128_t, uint8_t, inet_naddr_t *);
|
---|
[e948fde] | 128 |
|
---|
[3495654] | 129 | #endif
|
---|
| 130 |
|
---|
| 131 | /** @}
|
---|
| 132 | */
|
---|