3 * Add functionality DHCPv6 to l2tpns.
10 #define DHCP6_SOLICIT 1
11 #define DHCP6_ADVERTISE 2
12 #define DHCP6_REQUEST 3
13 #define DHCP6_CONFIRM 4
15 #define DHCP6_REBIND 6
17 #define DHCP6_RELEASE 8
18 #define DHCP6_DECLINE 9
19 #define DHCP6_RECONFIGURE 10
20 #define DHCP6_INFORMATION_REQUEST 11
21 #define DHCP6_RELAY_FORM 12
22 #define DHCP6_RELAY_REPL 13
24 #define D6_OPT_CLIENTID 1
25 #define D6_OPT_SERVERID 2
26 #define D6_OPT_IA_NA 3
27 #define D6_OPT_IA_TA 4
28 #define D6_OPT_IAADDR 5
30 #define D6_OPT_PREFERENCE 7
31 #define D6_OPT_ELAPSED_TIME 8
32 #define D6_OPT_RELAY_MSG 9
33 #define D6_OPT_AUTH 11
34 #define D6_OPT_UNICAST 12
35 #define D6_OPT_STATUS_CODE 13
36 #define D6_OPT_RAPID_COMMIT 14
37 #define D6_OPT_USER_CLASS 15
38 #define D6_OPT_VENDOR_CLASS 16
39 #define D6_OPT_VENDOR_SPECIFIC 17
40 #define D6_OPT_INTERFACE_ID 18
41 #define D6_OPT_RECONF_MSG 19
42 #define D6_OPT_RECONF_ACCEPT 20
43 #define D6_OPT_DNS_SERVERS 23
44 #define D6_OPT_DOMAIN_LIST 24
45 #define D6_OPT_IA_PD 25
46 #define D6_OPT_IAPREFIX 26
48 #define D6_STATUS_Success 0
49 #define D6_STATUS_UnspecFail 1
50 #define D6_STATUS_NoAddrsAvail 2
51 #define D6_STATUS_NoBinding 3
52 #define D6_STATUS_NotOnLink 4
53 #define D6_STATUS_UseMulticast 5
54 #define D6_STATUS_NoPrefixAvail 6
60 //~ 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
61 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
62 //~ | D6_OPT_IA_PD | Longueur d’option |
63 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
64 //~ | IAID (4 octets) |
65 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
67 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
69 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
75 //~ 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
76 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
77 //~ | OPTION_IAPREFIX | option-length |
78 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
79 //~ | preferred-lifetime |
80 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
81 //~ | valid-lifetime |
82 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
83 //~ | prefix-length | |
84 //~ +-+-+-+-+-+-+-+-+ IPv6 prefix |
89 //~ | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
91 //~ +-+-+-+-+-+-+-+-+ .
92 //~ . IAprefix-options .
94 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
96 //~ 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
97 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
98 //~ | D6_OPT_IA_NA | Longueur d’option |
99 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
100 //~ | IAID (4 octets) |
101 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102 //~ | T1 (4 octets) |
103 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
104 //~ | T2 (4 octets) |
105 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106 //~ | Options-IA_NA |
108 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
110 //~ 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
111 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
112 //~ | OPTION_IA_TA | Longueur d’option |
113 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114 //~ | IAID (4 octets) |
115 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116 //~ | Options-IA_TA |
118 //~ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120 struct dhcp6_mess_hdr
123 uint32_t trans_id
:24;
124 } __attribute__((packed
));
130 } __attribute__((packed
));
140 } __attribute__((packed
)) llt
;
144 } __attribute__((packed
)) en
;
148 } __attribute__((packed
)) ll
;
151 } __attribute__((packed
));
153 struct dhcp6_opt_serverid
155 struct dhcp6_opt_h opt_hdr
;
156 struct dhcp6_duid duid
;
157 } __attribute__((packed
));
159 struct dhcp6_opt_clientid
161 struct dhcp6_opt_h opt_hdr
;
162 struct dhcp6_duid duid
;
163 } __attribute__((packed
));
165 struct dhcp6_opt_ia_na
{
166 struct dhcp6_opt_h hdr
;
170 } __attribute__((packed
));
172 struct dhcp6_opt_ia_ta
{
173 struct dhcp6_opt_h hdr
;
175 } __attribute__((packed
));
177 struct dhcp6_opt_ia_pd
{
178 struct dhcp6_opt_h hdr
;
182 } __attribute__((packed
));
184 struct dhcp6_opt_ia_addr
{
185 struct dhcp6_opt_h hdr
;
186 struct in6_addr addr
;
187 uint32_t pref_lifetime
;
188 uint32_t valid_lifetime
;
189 } __attribute__((packed
));
191 struct dhcp6_opt_oro
{
192 struct dhcp6_opt_h hdr
;
193 uint16_t opt_demand
[0];
194 } __attribute__((packed
));
196 struct dhcp6_opt_status
{
197 struct dhcp6_opt_h hdr
;
199 } __attribute__((packed
));
201 struct dhcp6_opt_preference
{
202 struct dhcp6_opt_h hdr
;
204 } __attribute__((packed
));
206 struct dhcp6_opt_ia_prefix
{
207 struct dhcp6_opt_h hdr
;
208 uint32_t pref_lifetime
;
209 uint32_t valid_lifetime
;
211 struct in6_addr prefix
;
212 } __attribute__((packed
));
215 void dhcpv6_process(uint16_t s
, uint16_t t
, uint8_t *p
, uint16_t l
);
216 void dhcpv6_init(void);
218 #endif /* __DHCP6_H__ */