Add support for IPv[4|6] prefixes in dynamic clients
[freeradius.git] / src / include / radius.h
1 /*
2  * radius.h  Constants of the radius protocol.
3  *
4  * Version:  $Id$
5  *
6  */
7
8 typedef enum {
9         PW_TYPE_INVALID = 0,    //!< Invalid (uninitialised) attribute type.
10         PW_TYPE_STRING,         //!< String of printable characters.
11         PW_TYPE_INTEGER,        //!< 32 Bit unsigned integer.
12         PW_TYPE_IPADDR,         //!< 32 Bit IPv4 Address.
13         PW_TYPE_DATE,           //!< 32 Bit Unix timestamp.
14         PW_TYPE_ABINARY,        //!< Ascend binary format a packed data
15                                 //!< structure.
16         PW_TYPE_OCTETS,         //!< Raw octets.
17         PW_TYPE_IFID,           //!< Interface ID.
18         PW_TYPE_IPV6ADDR,       //!< 128 Bit IPv6 Address.
19         PW_TYPE_IPV6PREFIX,     //!< IPv6 Prefix.
20         PW_TYPE_BYTE,           //!< 8 Bit unsigned integer.
21         PW_TYPE_SHORT,          //!< 16 Bit unsigned integer.
22         PW_TYPE_ETHERNET,       //!< 48 Bit Mac-Address.
23         PW_TYPE_SIGNED,         //!< 32 Bit signed integer.
24         PW_TYPE_COMBO_IP,       //!< WiMAX IPv4 or IPv6 address depending
25                                 //!< on length.
26         PW_TYPE_TLV,            //!< Contains nested attributes.
27         PW_TYPE_EXTENDED,       //!< Extended attribute space attribute.
28         PW_TYPE_LONG_EXTENDED,  //!< Long extended attribute space attribute.
29         PW_TYPE_EVS,            //!< Extended attribute, vendor specific.
30         PW_TYPE_INTEGER64,      //!< 64 Bit unsigned integer.
31         PW_TYPE_IPV4PREFIX,     //!< IPv4 Prefix.
32         PW_TYPE_VSA,            //!< Vendor-Specific, for attribute 26
33         PW_TYPE_MAX             //!< Number of defined data types.
34 } PW_TYPE;
35
36 #define PW_AUTHENTICATION_REQUEST       1
37 #define PW_AUTHENTICATION_ACK           2
38 #define PW_AUTHENTICATION_REJECT        3
39 #define PW_ACCOUNTING_REQUEST           4
40 #define PW_ACCOUNTING_RESPONSE          5
41 #define PW_ACCOUNTING_STATUS            6
42 #define PW_PASSWORD_REQUEST             7
43 #define PW_PASSWORD_ACK                 8
44 #define PW_PASSWORD_REJECT              9
45 #define PW_ACCOUNTING_MESSAGE           10
46 #define PW_ACCESS_CHALLENGE             11
47 #define PW_STATUS_SERVER                12
48 #define PW_STATUS_CLIENT                13
49 #define PW_DISCONNECT_REQUEST           40
50 #define PW_DISCONNECT_ACK               41
51 #define PW_DISCONNECT_NAK               42
52 #define PW_COA_REQUEST                  43
53 #define PW_COA_ACK                      44
54 #define PW_COA_NAK                      45
55
56 #define PW_AUTH_UDP_PORT                1812
57 #define PW_ACCT_UDP_PORT                1813
58 #define PW_POD_UDP_PORT                 1700
59 #define PW_COA_UDP_PORT                 3799
60
61 #define PW_USER_NAME                    1
62 #define PW_USER_PASSWORD                2
63 #define PW_PASSWORD                     2
64 #define PW_CHAP_PASSWORD                3
65 #define PW_NAS_IP_ADDRESS               4
66 #define PW_NAS_PORT                     5
67 #define PW_SERVICE_TYPE                 6
68 #define PW_FRAMED_PROTOCOL              7
69 #define PW_FRAMED_IP_ADDRESS            8
70 #define PW_FRAMED_IP_NETMASK            9
71 #define PW_FRAMED_ROUTING               10
72 #define PW_FILTER_ID                    11
73 #define PW_FRAMED_MTU                   12
74 #define PW_FRAMED_COMPRESSION           13
75 #define PW_LOGIN_IP_HOST                14
76 #define PW_LOGIN_SERVICE                15
77 #define PW_LOGIN_TCP_PORT               16
78 #define PW_OLD_PASSWORD                 17
79 #define PW_REPLY_MESSAGE                18
80 #define PW_CALLBACK_NUMBER              19
81 #define PW_CALLBACK_ID                  20
82 #if 0
83 /*
84  *      Deprecated, and no longer used.
85  */
86 #define PW_EXPIRATION                   21
87 #endif
88 #define PW_FRAMED_ROUTE                 22
89 #define PW_FRAMED_IPXNET                23
90 #define PW_STATE                        24
91 #define PW_CLASS                        25
92 #define PW_VENDOR_SPECIFIC              26
93 #define PW_SESSION_TIMEOUT              27
94 #define PW_IDLE_TIMEOUT                 28
95 #define PW_CALLED_STATION_ID            30
96 #define PW_CALLING_STATION_ID           31
97 #define PW_NAS_IDENTIFIER               32
98 #define PW_PROXY_STATE                  33
99
100 #define PW_ACCT_STATUS_TYPE             40
101 #define PW_ACCT_DELAY_TIME              41
102 #define PW_ACCT_INPUT_OCTETS            42
103 #define PW_ACCT_OUTPUT_OCTETS           43
104 #define PW_ACCT_SESSION_ID              44
105 #define PW_ACCT_AUTHENTIC               45
106 #define PW_ACCT_SESSION_TIME            46
107 #define PW_ACCT_INPUT_PACKETS           47
108 #define PW_ACCT_OUTPUT_PACKETS          48
109 #define PW_ACCT_TERMINATE_CAUSE         49
110
111 #define PW_EVENT_TIMESTAMP              55
112
113 #define PW_CHAP_CHALLENGE               60
114 #define PW_NAS_PORT_TYPE                61
115 #define PW_PORT_LIMIT                   62
116
117 #define PW_ARAP_PASSWORD                70
118 #define PW_ARAP_FEATURES                71
119 #define PW_ARAP_ZONE_ACCESS             72
120 #define PW_ARAP_SECURITY                73
121 #define PW_ARAP_SECURITY_DATA           74
122 #define PW_PASSWORD_RETRY               75
123 #define PW_PROMPT                       76
124 #define PW_CONNECT_INFO                 77
125 #define PW_CONFIGURATION_TOKEN          78
126 #define PW_EAP_MESSAGE                  79
127 #define PW_MESSAGE_AUTHENTICATOR        80
128
129 #define PW_ARAP_CHALLENGE_RESPONSE      84
130 #define PW_NAS_PORT_ID_STRING           87
131 #define PW_FRAMED_POOL                  88
132 #define PW_CHARGEABLE_USER_IDENTITY     89
133 #define PW_NAS_IPV6_ADDRESS             95
134 #define PW_OPERATOR_NAME                126
135
136 #define PW_EXTENDED_ATTRIBUTE           192
137
138 #define PW_DIGEST_RESPONSE              206
139 #define PW_DIGEST_ATTRIBUTES            207
140
141 #define PW_FALL_THROUGH                 500
142 #define PW_RELAX_FILTER                 501
143 #define PW_EXEC_PROGRAM                 502
144 #define PW_EXEC_PROGRAM_WAIT            503
145
146 #define PW_AUTH_TYPE                    1000
147 #define PW_PREFIX                       1003
148 #define PW_SUFFIX                       1004
149 #define PW_GROUP                        1005
150 #define PW_CRYPT_PASSWORD               1006
151 #define PW_CONNECT_RATE                 1007
152 #define PW_ADD_PREFIX                   1008
153 #define PW_ADD_SUFFIX                   1009
154 #define PW_EXPIRATION                   1010
155 #define PW_AUTZ_TYPE                    1011
156 #define PW_ACCT_TYPE                    1012
157 #define PW_SESSION_TYPE                 1013
158 #define PW_POST_AUTH_TYPE               1014
159 #define PW_PRE_PROXY_TYPE               1015
160 #define PW_POST_PROXY_TYPE              1016
161 #define PW_PRE_ACCT_TYPE                1017
162 #define PW_EAP_TYPE                     1018
163 #define PW_EAP_TLS_REQUIRE_CLIENT_CERT  1019
164 #define PW_EAP_MD5_PASSWORD             1022
165 #define PW_CLIENT_SHORTNAME             1024
166 #define PW_LOAD_BALANCE_KEY             1025
167 #define PW_RAW_ATTRIBUTE                1026
168 #define PW_TNC_VLAN_ACCESS              1027
169 #define PW_TNC_VLAN_ISOLATE             1028
170 #define PW_USER_CATEGORY                1029
171 #define PW_GROUP_NAME                   1030
172 #define PW_HUNTGROUP_NAME               1031
173 #define PW_SIMULTANEOUS_USE             1034
174 #define PW_STRIP_USER_NAME              1035
175 #define PW_HINT                         1040
176 #define PAM_AUTH_ATTR                   1041
177 #define PW_LOGIN_TIME                   1042
178 #define PW_STRIPPED_USER_NAME           1043
179 #define PW_CURRENT_TIME                 1044
180 #define PW_REALM                        1045
181 #define PW_NO_SUCH_ATTRIBUTE            1046
182 #define PW_PACKET_TYPE                  1047
183 #define PW_PROXY_TO_REALM               1048
184 #define PW_REPLICATE_TO_REALM           1049
185 #define PW_ACCT_SESSION_START_TIME      1050
186 #define PW_ACCT_UNIQUE_SESSION_ID       1051
187 #define PW_CLIENT_IP_ADDRESS            1052
188 #define PW_LDAP_USERDN                  1053
189 #define PW_NS_MTA_MD5_PASSWORD          1054
190 #define PW_SQL_USER_NAME                1055
191 #define PW_LM_PASSWORD                  1057
192 #define PW_NT_PASSWORD                  1058
193 #define PW_SMB_ACCOUNT_CTRL             1059
194 #define PW_SMB_ACCOUNT_CTRL_TEXT        1061
195 #define PW_USER_PROFILE                 1062
196 #define PW_DIGEST_REALM                 1063
197 #define PW_DIGEST_NONCE                 1064
198 #define PW_DIGEST_METHOD                1065
199 #define PW_DIGEST_URI                   1066
200 #define PW_DIGEST_QOP                   1067
201 #define PW_DIGEST_ALGORITHM             1068
202 #define PW_DIGEST_BODY_DIGEST           1069
203 #define PW_DIGEST_CNONCE                1070
204 #define PW_DIGEST_NONCE_COUNT           1071
205 #define PW_DIGEST_USER_NAME             1072
206 #define PW_POOL_NAME                    1073
207 #define PW_LDAP_GROUP                   1074
208 #define PW_MODULE_SUCCESS_MESSAGE       1075
209 #define PW_MODULE_FAILURE_MESSAGE       1076
210 #if 0 /* no longer used */
211 #define PW_X99_FAST                     1077
212 #endif
213 #define PW_REWRITE_RULE                 1078
214 #define PW_SQL_GROUP                    1079
215 #define PW_RESPONSE_PACKET_TYPE         1080
216 #define PW_DIGEST_HA1                   1081
217 #define PW_MS_CHAP_USE_NTLM_AUTH        1082
218 #define PW_MS_CHAP_USER_NAME            1083
219 #define PW_PACKET_SRC_IP_ADDRESS        1084
220 #define PW_PACKET_DST_IP_ADDRESS        1085
221 #define PW_PACKET_SRC_PORT              1086
222 #define PW_PACKET_DST_PORT              1087
223 #define PW_PACKET_AUTHENTICATION_VECTOR 1088
224 #define PW_TIME_OF_DAY                  1089
225 #define PW_REQUEST_PROCESSING_STAGE     1090
226
227 #define PW_SHA_PASSWORD                 1093
228 #define PW_SSHA_PASSWORD                1094
229 #define PW_MD5_PASSWORD                 1095
230 #define PW_SMD5_PASSWORD                1096
231
232 #define PW_PACKET_SRC_IPV6_ADDRESS      1097
233 #define PW_PACKET_DST_IPV6_ADDRESS      1098
234 #define PW_VIRTUAL_SERVER               1099
235 #define PW_CLEARTEXT_PASSWORD           1100
236 #define PW_PASSWORD_WITH_HEADER         1101
237 #define PW_SEND_COA_REQUEST             1107
238 #define PW_MODULE_RETURN_CODE           1108
239 #define PW_PACKET_ORIGINAL_TIMESTAMP    1109
240 #define PW_HOME_SERVER_POOL             1111
241 #define PW_FREERADIUS_CLIENT_IP_ADDRESS         1120
242 #define PW_FREERADIUS_CLIENT_IPV6_ADDRESS       1121
243 #define PW_FREERADIUS_CLIENT_IP_PREFIX          1150
244 #define PW_FREERADIUS_CLIENT_IPV6_PREFIX        1151
245 #define PW_RECV_COA_TYPE                1131
246 #define PW_SEND_COA_TYPE                1132
247 #define PW_MSCHAP_PASSWORD              1133
248 #define PW_PACKET_TRANSMIT_COUNTER      1134
249 #define PW_CACHED_SESSION_POLICY        1135
250 #define PW_FREERADIUS_CLIENT_SRC_IP_ADDRESS     1143
251 #define PW_FREERADIUS_CLIENT_SRC_IPV6_ADDRESS   1144
252
253 #define PW_OTP_CHALLENGE                1145
254 #define PW_EAP_SESSION_ID               1146
255
256 /*
257  *      Integer Translations
258  */
259
260 /*      User Types      */
261
262 #define PW_LOGIN_USER                   1
263 #define PW_FRAMED_USER                  2
264 #define PW_CALLBACK_LOGIN_USER          3
265 #define PW_CALLBACK_FRAMED_USER         4
266 #define PW_OUTBOUND_USER                5
267 #define PW_ADMINISTRATIVE_USER          6
268 #define PW_NAS_PROMPT_USER              7
269 #define PW_AUTHENTICATE_ONLY            8
270 #define PW_CALLBACK_NAS_PROMPT          9
271
272 /*      Framed Protocols        */
273
274 #define PW_PPP                          1
275 #define PW_SLIP                         2
276
277 /*      Framed Routing Values   */
278
279 #define PW_NONE                         0
280 #define PW_BROADCAST                    1
281 #define PW_LISTEN                       2
282 #define PW_BROADCAST_LISTEN             3
283
284 /*      Framed Compression Types        */
285
286 #define PW_VAN_JACOBSEN_TCP_IP          1
287
288 /*      Login Services  */
289
290 #define PW_TELNET                       0
291 #define PW_RLOGIN                       1
292 #define PW_TCP_CLEAR                    2
293 #define PW_PORTMASTER                   3
294
295 /*      Authentication Level    */
296
297 #define PW_AUTHTYPE_LOCAL               0
298 #define PW_AUTHTYPE_SYSTEM              1
299 #define PW_AUTHTYPE_SECURID             2
300 #define PW_AUTHTYPE_CRYPT               3
301 #define PW_AUTHTYPE_REJECT              4
302 #define PW_AUTHTYPE_ACTIVCARD           5
303 #define PW_AUTHTYPE_EAP                 6
304 #define PW_AUTHTYPE_ACCEPT              254
305 #define PW_AUTHTYPE_MS_CHAP             1028
306
307 /* Post-auth types */
308 #define PW_POSTAUTHTYPE_LOCAL           0
309 #define PW_POSTAUTHTYPE_REJECT          1
310
311 /*      Port Types              */
312
313 #define PW_NAS_PORT_ASYNC               0
314 #define PW_NAS_PORT_SYNC                1
315 #define PW_NAS_PORT_ISDN                2
316 #define PW_NAS_PORT_ISDN_V120           3
317 #define PW_NAS_PORT_ISDN_V110           4
318
319 /*      Status Types    */
320
321 #define PW_STATUS_START                 1
322 #define PW_STATUS_STOP                  2
323 #define PW_STATUS_ALIVE                 3
324 #define PW_STATUS_ACCOUNTING_ON         7
325 #define PW_STATUS_ACCOUNTING_OFF        8
326
327 /*
328  *      Vendor Private Enterprise Codes
329  */
330 #define VENDORPEC_MICROSOFT             311
331 #define VENDORPEC_FREERADIUS            11344
332 #define VENDORPEC_WIMAX                 24757
333
334 /*
335  * Vendor specific attributes
336  */
337 #define PW_FREERADIUS_PROXIED_TO        1
338
339 /*
340  *      Microsoft has vendor code 311.
341  */
342 #define PW_MSCHAP_RESPONSE              1
343 #define PW_MSCHAP_ERROR                 2
344 #define PW_MSCHAP_CPW_1                 3
345 #define PW_MSCHAP_CPW_2                 4
346 #define PW_MSCHAP_NT_ENC_PW             6
347 #define PW_MSCHAP_CHALLENGE             11
348 #define PW_MSCHAP2_RESPONSE             25
349 #define PW_MSCHAP2_SUCCESS              26
350 #define PW_MSCHAP2_CPW                  27
351
352 /*
353  *      Old nonsense.   Will be deleted ASAP
354  */
355 #define PW_AUTHTYPE                     1000
356 #define PW_AUTZTYPE                     1011
357 #define PW_ACCTTYPE                     1012
358 #define PW_SESSTYPE                     1013
359 #define PW_POSTAUTHTYPE                 1014
360
361 /*
362  *      Cisco's VLAN Query Protocol.
363  */
364 #define PW_VQP_PACKET_TYPE              0x2b00
365 #define PW_VQP_ERROR_CODE               0x2b01
366 #define PW_VQP_SEQUENCE_NUMBER          0x2b02
367
368 #define PW_VQP_CLIENT_IP_ADDRESS        0x2c01
369 #define PW_VQP_PORT_NAME                0x2c02
370 #define PW_VQP_VLAN_NAME                0x2c03
371 #define PW_VQP_DOMAIN_NAME              0x2c04
372 #define PW_VQP_ETHERNET_FRAME           0x2c05
373 #define PW_VQP_MAC                      0x2c06
374 #define PW_VQP_UNKNOWN                  0x2c07
375 #define PW_VQP_COOKIE                   0x2c08