1 /* nhrp_protocol.h - NHRP protocol definitions
3 * Copyright (c) 2007-2012 Timo Teräs <timo.teras@iki.fi>
5 * This software is licensed under the MIT License.
6 * See MIT-LICENSE.txt for additional details.
9 #ifndef NHRP_PROTOCOL_H
10 #define NHRP_PROTOCOL_H
14 /* NHRP Ethernet protocol number */
15 #define ETH_P_NHRP 0x2001
18 #define NHRP_VERSION_RFC2332 1
20 /* NHRP Packet Types */
21 #define NHRP_PACKET_RESOLUTION_REQUEST 1
22 #define NHRP_PACKET_RESOLUTION_REPLY 2
23 #define NHRP_PACKET_REGISTRATION_REQUEST 3
24 #define NHRP_PACKET_REGISTRATION_REPLY 4
25 #define NHRP_PACKET_PURGE_REQUEST 5
26 #define NHRP_PACKET_PURGE_REPLY 6
27 #define NHRP_PACKET_ERROR_INDICATION 7
28 #define NHRP_PACKET_TRAFFIC_INDICATION 8
30 /* NHRP Extension Types */
31 #define NHRP_EXTENSION_FLAG_COMPULSORY 0x8000
32 #define NHRP_EXTENSION_END 0
33 #define NHRP_EXTENSION_PAYLOAD 0
34 #define NHRP_EXTENSION_RESPONDER_ADDRESS 3
35 #define NHRP_EXTENSION_FORWARD_TRANSIT_NHS 4
36 #define NHRP_EXTENSION_REVERSE_TRANSIT_NHS 5
37 #define NHRP_EXTENSION_AUTHENTICATION 7
38 #define NHRP_EXTENSION_VENDOR 8
39 #define NHRP_EXTENSION_NAT_ADDRESS 9
41 /* NHRP Error Indication Codes */
42 #define NHRP_ERROR_UNRECOGNIZED_EXTENSION 1
43 #define NHRP_ERROR_LOOP_DETECTED 2
44 #define NHRP_ERROR_PROTOCOL_ADDRESS_UNREACHABLE 6
45 #define NHRP_ERROR_PROTOCOL_ERROR 7
46 #define NHRP_ERROR_SDU_SIZE_EXCEEDED 8
47 #define NHRP_ERROR_INVALID_EXTENSION 9
48 #define NHRP_ERROR_INVALID_RESOLUTION_REPLY 10
49 #define NHRP_ERROR_AUTHENTICATION_FAILURE 11
50 #define NHRP_ERROR_HOP_COUNT_EXCEEDED 15
53 #define NHRP_CODE_SUCCESS 0
54 #define NHRP_CODE_ADMINISTRATIVELY_PROHIBITED 4
55 #define NHRP_CODE_INSUFFICIENT_RESOURCES 5
56 #define NHRP_CODE_NO_BINDING_EXISTS 11
57 #define NHRP_CODE_BINDING_NON_UNIQUE 13
58 #define NHRP_CODE_UNIQUE_ADDRESS_REGISTERED 14
60 /* NHRP Flags for Resolution request/reply */
61 #define NHRP_FLAG_RESOLUTION_SOURCE_IS_ROUTER 0x8000
62 #define NHRP_FLAG_RESOLUTION_AUTHORATIVE 0x4000
63 #define NHRP_FLAG_RESOLUTION_DESTINATION_STABLE 0x2000
64 #define NHRP_FLAG_RESOLUTION_UNIQUE 0x1000
65 #define NHRP_FLAG_RESOLUTION_SOURCE_STABLE 0x0800
66 #define NHRP_FLAG_RESOLUTION_NAT 0x0002
68 /* NHRP Flags for Registration request/reply */
69 #define NHRP_FLAG_REGISTRATION_UNIQUE 0x8000
70 #define NHRP_FLAG_REGISTRATION_NAT 0x0002
72 /* NHRP Flags for Purge request/reply */
73 #define NHRP_FLAG_PURGE_NO_REPLY 0x8000
75 /* NHRP Authentication extension types (ala Cisco) */
76 #define NHRP_AUTHENTICATION_PLAINTEXT 0x00000001
78 /* NHRP Packet Structures */
79 struct nhrp_packet_header
{
82 uint16_t protocol_type
;
87 uint16_t extension_offset
;
90 uint8_t src_nbma_address_len
;
91 uint8_t src_nbma_subaddress_len
;
93 /* Mandatory header */
94 uint8_t src_protocol_address_len
;
95 uint8_t dst_protocol_address_len
;
104 } __attribute__((packed
));
106 struct nhrp_cie_header
{
108 uint8_t prefix_length
;
111 uint16_t holding_time
;
112 uint8_t nbma_address_len
;
113 uint8_t nbma_subaddress_len
;
114 uint8_t protocol_address_len
;
116 } __attribute__((packed
));
118 struct nhrp_extension_header
{
121 } __attribute__((packed
));
123 struct nhrp_cisco_authentication_extension
{
126 } __attribute__((packed
));