1 .\" Copyright 1998 Juniper Networks, Inc.
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" $FreeBSD: src/lib/libradius/libradius.3,v 1.6.2.6 2002/11/27 17:36:00 archie Exp $
26 .\" $DragonFly: src/lib/libradius/libradius.3,v 1.3 2007/09/14 19:47:03 swildner Exp $
33 .Nd RADIUS client library
38 .Ft struct rad_handle *
39 .Fn rad_acct_open "void"
41 .Fn rad_add_server "struct rad_handle *h" "const char *host" "int port" "const char *secret" "int timeout" "int max_tries"
42 .Ft struct rad_handle *
43 .Fn rad_auth_open "void"
45 .Fn rad_close "struct rad_handle *h"
47 .Fn rad_config "struct rad_handle *h" "const char *file"
49 .Fn rad_continue_send_request "struct rad_handle *h" "int selected" "int *fd" "struct timeval *tv"
51 .Fn rad_create_request "struct rad_handle *h" "int code"
53 .Fn rad_cvt_addr "const void *data"
55 .Fn rad_cvt_int "const void *data"
57 .Fn rad_cvt_string "const void *data" "size_t len"
59 .Fn rad_get_attr "struct rad_handle *h" "const void **data" "size_t *len"
61 .Fn rad_get_vendor_attr "u_int32_t *vendor" "const void **data" "size_t *len"
63 .Fn rad_init_send_request "struct rad_handle *h" "int *fd" "struct timeval *tv"
65 .Fn rad_put_addr "struct rad_handle *h" "int type" "struct in_addr addr"
67 .Fn rad_put_attr "struct rad_handle *h" "int type" "const void *data" "size_t len"
69 .Fn rad_put_int "struct rad_handle *h" "int type" "u_int32_t value"
71 .Fn rad_put_string "struct rad_handle *h" "int type" "const char *str"
73 .Fn rad_put_vendor_addr "struct rad_handle *h" "int vendor" "int type" "struct in_addr addr"
75 .Fn rad_put_vendor_attr "struct rad_handle *h" "int vendor" "int type" "const void *data" "size_t len"
77 .Fn rad_put_vendor_int "struct rad_handle *h" "int vendor" "int type" "u_int32_t value"
79 .Fn rad_put_vendor_string "struct rad_handle *h" "int vendor" "int type" "const char *str"
81 .Fn rad_request_authenticator "struct rad_handle *h" "char *buf" "size_t len"
83 .Fn rad_send_request "struct rad_handle *h"
85 .Fn rad_server_secret "struct rad_handle *h"
87 .Fn rad_strerror "struct rad_handle *h"
91 library implements the client side of the Remote Authentication Dial
92 In User Service (RADIUS). RADIUS, defined in RFCs 2138 and 2139,
93 allows clients to perform authentication and accounting by means of
94 network requests to remote servers.
96 To use the library, an application must first call
101 .Va struct rad_handle * ,
102 which provides the context for subsequent operations.
103 The former function is used for RADIUS authentication and the
104 latter is used for RADIUS accounting.
109 always succeed unless insufficient virtual memory is available. If
110 the necessary memory cannot be allocated, the functions return
112 For compatibility with earlier versions of this library,
114 is provided as a synonym for
117 Before issuing any RADIUS requests, the library must be made aware
118 of the servers it can contact. The easiest way to configure the
122 causes the library to read a configuration file whose format is
125 The pathname of the configuration file is passed as the
129 This argument may also be given as
131 in which case the standard configuration file
135 returns 0 on success, or -1 if an error occurs.
137 The library can also be configured programmatically by calls to
141 parameter specifies the server host, either as a fully qualified
142 domain name or as a dotted-quad IP address in text form.
145 parameter specifies the UDP port to contact on the server. If
147 is given as 0, the library looks up the
151 service in the network services database, and uses the port found
152 there. If no entry is found, the library uses the standard RADIUS
153 ports, 1812 for authentication and 1813 for accounting.
154 The shared secret for the server host is passed to the
157 It may be any NUL-terminated string of bytes. The RADIUS protocol
158 ignores all but the leading 128 bytes of the shared secret.
159 The timeout for receiving replies from the server is passed to the
161 parameter, in units of seconds. The maximum number of repeated
162 requests to make before giving up is passed into the
166 returns 0 on success, or -1 if an error occurs.
169 may be called multiple times, and it may be used together with
171 At most 10 servers may be specified.
172 When multiple servers are given, they are tried in round-robin
173 fashion until a valid response is received, or until each server's
175 limit has been reached.
176 .Sh CREATING A RADIUS REQUEST
177 A RADIUS request consists of a code specifying the kind of request,
178 and zero or more attributes which provide additional information. To
179 begin constructing a new request, call
180 .Fn rad_create_request .
181 In addition to the usual
182 .Va struct rad_handle * ,
183 this function takes a
185 parameter which specifies the type of the request. Most often this
187 .Dv RAD_ACCESS_REQUEST .
188 .Fn rad_create_request
189 returns 0 on success, or -1 on if an error occurs.
191 After the request has been created with
192 .Fn rad_create_request ,
193 attributes can be attached to it. This is done through calls to
200 parameter identifying the attribute, and a value which may be
201 an Internet address, an integer, or a NUL-terminated string,
204 .Fn rad_put_vendor_addr ,
205 .Fn rad_put_vendor_int
207 .Fn rad_put_vendor_string
208 may be used to specify vendor specific attributes. Vendor specific
209 definitions may be found in
212 The library also provides a function
214 which can be used to supply a raw, uninterpreted attribute. The
216 argument points to an array of bytes, and the
218 argument specifies its length.
222 functions return 0 on success, or -1 if an error occurs.
223 .Sh SENDING THE REQUEST AND RECEIVING THE RESPONSE
224 After the RADIUS request has been constructed, it is sent either by means of
226 or by a combination of calls to
227 .Fn rad_init_send_request
229 .Fn rad_continue_send_request .
233 function sends the request and waits for a valid reply,
234 retrying the defined servers in round-robin fashion as necessary.
235 If a valid response is received,
237 returns the RADIUS code which specifies the type of the response.
238 This will typically be
239 .Dv RAD_ACCESS_ACCEPT ,
240 .Dv RAD_ACCESS_REJECT ,
242 .Dv RAD_ACCESS_CHALLENGE .
243 If no valid response is received,
247 As an alternative, if you do not wish to block waiting for a response,
248 .Fn rad_init_send_request
250 .Fn rad_continue_send_request
251 may be used instead. If a reply is received from the RADIUS server or a
252 timeout occurs, these functions return a value as described for
253 .Fn rad_send_request .
254 Otherwise, a value of zero is returned and the values pointed to by
258 are set to the descriptor and timeout that should be passed to
261 .Fn rad_init_send_request
262 must be called first, followed by repeated calls to
263 .Fn rad_continue_send_request
264 as long as a return value of zero is given.
265 Between each call, the application should call
269 as a read descriptor and timing out after the interval specified by
272 .Fn rad_continue_send_request
273 should be called with
275 set to a non-zero value if
277 indicated that the descriptor is readable.
279 Like RADIUS requests, each response may contain zero or more
280 attributes. After a response has been received successfully by
283 .Fn rad_continue_send_request ,
284 its attributes can be extracted one by one using
288 is called, it gets the next attribute from the current response, and
289 stores a pointer to the data and the length of the data via the
294 respectively. Note that the data resides in the response itself,
295 and must not be modified.
298 returns the RADIUS attribute type.
299 If no more attributes remain in the current response,
302 If an error such as a malformed attribute is detected, -1 is
308 .Dv RAD_VENDOR_SPECIFIC ,
309 .Fn rad_get_vendor_attr
310 may be called to determine the vendor.
311 The vendor specific RADIUS attribute type is returned.
312 The reference parameters
316 .Pq as returned from Fn rad_get_attr
318 .Fn rad_get_vendor_attr ,
319 and are adjusted to point to the vendor specific attribute data.
321 The common types of attributes can be decoded using
326 These functions accept a pointer to the attribute data, which should
327 have been obtained using
330 .Fn rad_get_vendor_attr .
335 must also be given. These functions interpret the attribute as an
336 Internet address, an integer, or a string, respectively, and return
339 returns its value as a NUL-terminated string in dynamically
340 allocated memory. The application should free the string using
342 when it is no longer needed.
344 If insufficient virtual memory is available,
354 .Fn rad_request_authenticator
355 function may be used to obtain the Request-Authenticator attribute value
356 associated with the current RADIUS server according to the supplied
362 must be supplied and should be at least 16 bytes.
363 The return value is the number of bytes written to
365 or -1 to indicate that
367 was not large enough.
370 .Fn rad_server_secret
371 returns the secret shared with the current RADIUS server according to the
373 .Sh OBTAINING ERROR MESSAGES
374 Those functions which accept a
375 .Va struct rad_handle *
376 argument record an error message if they fail. The error message
377 can be retrieved by calling
379 The message text is overwritten on each new error for the given
380 .Va struct rad_handle * .
381 Thus the message must be copied if it is to be preserved through
382 subsequent library calls using the same handle.
384 To free the resources used by the RADIUS library, call
387 The following functions return a non-negative value on success. If
388 they detect an error, they return -1 and record an error message
389 which can be retrieved using
392 .Bl -item -offset indent -compact
398 .Fn rad_create_request
410 .Fn rad_init_send_request
412 .Fn rad_continue_send_request
417 The following functions return a
419 pointer on success. If they are unable to allocate sufficient
420 virtual memory, they return
422 without recording an error message.
424 .Bl -item -offset indent -compact
438 .%T "Remote Authentication Dial In User Service (RADIUS)"
443 .%T RADIUS Accounting
447 This software was originally written by
451 project by Juniper Networks, Inc.
452 Oleg Semyonov subsequently added the ability to perform RADIUS