1 /* $NetBSD: pam_radius.c,v 1.6 2006/11/03 18:04:20 christos Exp $ */
4 * Copyright 1998 Juniper Networks, Inc.
6 * Copyright (c) 2001-2003 Networks Associates Technology, Inc.
9 * Portions of this software were developed for the FreeBSD Project by
10 * ThinkSec AS and NAI Labs, the Security Research Division of Network
11 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
12 * ("CBOSS"), as part of the DARPA CHATS research program.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. The name of the author may not be used to endorse or promote
23 * products derived from this software without specific prior written
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <sys/cdefs.h>
41 __FBSDID("$FreeBSD: src/lib/libpam/modules/pam_radius/pam_radius.c,v 1.22 2004/06/25 12:32:45 kan Exp $");
43 __RCSID("$NetBSD: pam_radius.c,v 1.6 2006/11/03 18:04:20 christos Exp $");
46 #include <sys/param.h>
47 #include <sys/types.h>
48 #include <sys/socket.h>
60 #include <security/pam_appl.h>
61 #include <security/pam_modules.h>
62 #include <security/pam_mod_misc.h>
64 #define PAM_OPT_CONF "conf"
65 #define PAM_OPT_TEMPLATE_USER "template_user"
66 #define PAM_OPT_NAS_ID "nas_id"
67 #define PAM_OPT_NAS_IPADDR "nas_ipaddr"
69 #define MAX_CHALLENGE_MSGS 10
70 #define PASSWORD_PROMPT "RADIUS Password:"
72 static int build_access_request(struct rad_handle
*, const char *,
73 const char *, const char *, const char *, const void *,
75 static int do_accept(pam_handle_t
*, struct rad_handle
*);
76 static int do_challenge(pam_handle_t
*, struct rad_handle
*,
80 logit(int level
, const char *fmt
, ...)
83 struct syslog_data data
= SYSLOG_DATA_INIT
;
85 openlog_r("pam_radius", LOG_PID
, LOG_AUTHPRIV
, &data
);
87 vsyslog_r(level
, &data
, fmt
, ap
);
93 * Construct an access request, but don't send it. Returns 0 on success,
97 build_access_request(struct rad_handle
*radh
, const char *user
,
98 const char *pass
, const char *nas_id
, const char *nas_ipaddr
,
99 const void *state
, size_t state_len
)
102 char host
[MAXHOSTNAMELEN
];
103 struct sockaddr_in
*haddr
;
104 struct addrinfo hints
;
105 struct addrinfo
*res
;
107 if (rad_create_request(radh
, RAD_ACCESS_REQUEST
) == -1) {
108 logit(LOG_CRIT
, "rad_create_request: %s", rad_strerror(radh
));
111 if (nas_id
== NULL
||
112 (nas_ipaddr
!= NULL
&& strlen(nas_ipaddr
) == 0)) {
113 if (gethostname(host
, sizeof host
) != -1) {
116 if (nas_ipaddr
!= NULL
&& strlen(nas_ipaddr
) == 0)
121 rad_put_string(radh
, RAD_USER_NAME
, user
) == -1) ||
123 rad_put_string(radh
, RAD_USER_PASSWORD
, pass
) == -1) ||
125 rad_put_string(radh
, RAD_NAS_IDENTIFIER
, nas_id
) == -1)) {
126 logit(LOG_CRIT
, "rad_put_string: %s", rad_strerror(radh
));
129 if (nas_ipaddr
!= NULL
) {
130 memset(&hints
, 0, sizeof(hints
));
131 hints
.ai_family
= PF_INET
;
132 if (getaddrinfo(nas_ipaddr
, NULL
, &hints
, &res
) == 0 &&
134 haddr
= (struct sockaddr_in
*)res
->ai_addr
;
135 error
= rad_put_addr(radh
, RAD_NAS_IP_ADDRESS
,
139 logit(LOG_CRIT
, "rad_put_addr: %s",
145 if (state
!= NULL
&& rad_put_attr(radh
, RAD_STATE
, state
,
147 logit(LOG_CRIT
, "rad_put_attr: %s", rad_strerror(radh
));
150 if (rad_put_int(radh
, RAD_SERVICE_TYPE
, RAD_AUTHENTICATE_ONLY
) == -1) {
151 logit(LOG_CRIT
, "rad_put_int: %s", rad_strerror(radh
));
158 do_accept(pam_handle_t
*pamh
, struct rad_handle
*radh
)
165 while ((attrtype
= rad_get_attr(radh
, &attrval
, &attrlen
)) > 0) {
166 if (attrtype
== RAD_USER_NAME
) {
167 s
= rad_cvt_string(attrval
, attrlen
);
170 "rad_cvt_string: out of memory");
173 pam_set_item(pamh
, PAM_USER
, s
);
177 if (attrtype
== -1) {
178 logit(LOG_CRIT
, "rad_get_attr: %s", rad_strerror(radh
));
185 do_challenge(pam_handle_t
*pamh
, struct rad_handle
*radh
, const char *user
)
193 struct pam_message msgs
[MAX_CHALLENGE_MSGS
];
194 const struct pam_message
*msg_ptrs
[MAX_CHALLENGE_MSGS
];
195 struct pam_response
*resp
;
198 const struct pam_conv
*conv
;
203 while ((attrtype
= rad_get_attr(radh
, &attrval
, &attrlen
)) > 0) {
211 case RAD_REPLY_MESSAGE
:
212 if (num_msgs
>= MAX_CHALLENGE_MSGS
) {
214 "Too many RADIUS challenge messages");
215 return (PAM_SERVICE_ERR
);
217 msgs
[num_msgs
].msg
= rad_cvt_string(attrval
, attrlen
);
218 if (msgs
[num_msgs
].msg
== NULL
) {
220 "rad_cvt_string: out of memory");
221 return (PAM_SERVICE_ERR
);
223 msgs
[num_msgs
].msg_style
= PAM_TEXT_INFO
;
224 msg_ptrs
[num_msgs
] = &msgs
[num_msgs
];
229 if (attrtype
== -1) {
230 logit(LOG_CRIT
, "rad_get_attr: %s", rad_strerror(radh
));
231 return (PAM_SERVICE_ERR
);
234 msgs
[num_msgs
].msg
= strdup("(null RADIUS challenge): ");
235 if (msgs
[num_msgs
].msg
== NULL
) {
236 logit(LOG_CRIT
, "Out of memory");
237 return (PAM_SERVICE_ERR
);
239 msgs
[num_msgs
].msg_style
= PAM_TEXT_INFO
;
240 msg_ptrs
[num_msgs
] = &msgs
[num_msgs
];
243 msgs
[num_msgs
-1].msg_style
= PAM_PROMPT_ECHO_ON
;
244 if ((retval
= pam_get_item(pamh
, PAM_CONV
, &item
)) != PAM_SUCCESS
) {
245 logit(LOG_CRIT
, "do_challenge: cannot get PAM_CONV");
248 conv
= (const struct pam_conv
*)item
;
249 if ((retval
= conv
->conv(num_msgs
, msg_ptrs
, &resp
,
250 conv
->appdata_ptr
)) != PAM_SUCCESS
)
252 if (build_access_request(radh
, user
, resp
[num_msgs
-1].resp
, NULL
,
253 NULL
, state
, statelen
) == -1)
254 return (PAM_SERVICE_ERR
);
255 memset(resp
[num_msgs
-1].resp
, 0, strlen(resp
[num_msgs
-1].resp
));
256 free(resp
[num_msgs
-1].resp
);
259 free(msgs
[--num_msgs
].msg
);
260 return (PAM_SUCCESS
);
264 pam_sm_authenticate(pam_handle_t
*pamh
, int flags __unused
,
265 int argc __unused
, const char *argv
[] __unused
)
267 struct rad_handle
*radh
;
268 const char *user
, *pass
;
270 struct passwd
*pwd
, pwres
;
272 const char *conf_file
, *template_user
, *nas_id
, *nas_ipaddr
;
276 conf_file
= openpam_get_option(pamh
, PAM_OPT_CONF
);
277 template_user
= openpam_get_option(pamh
, PAM_OPT_TEMPLATE_USER
);
278 nas_id
= openpam_get_option(pamh
, PAM_OPT_NAS_ID
);
279 nas_ipaddr
= openpam_get_option(pamh
, PAM_OPT_NAS_IPADDR
);
281 retval
= pam_get_user(pamh
, &user
, NULL
);
282 if (retval
!= PAM_SUCCESS
)
285 PAM_LOG("Got user: %s", user
);
287 retval
= pam_get_authtok(pamh
, PAM_AUTHTOK
, &pass
, PASSWORD_PROMPT
);
288 if (retval
!= PAM_SUCCESS
)
291 PAM_LOG("Got password");
295 logit(LOG_CRIT
, "rad_open failed");
296 return (PAM_SERVICE_ERR
);
299 PAM_LOG("Radius opened");
301 if (rad_config(radh
, conf_file
) == -1) {
302 logit(LOG_ALERT
, "rad_config: %s", rad_strerror(radh
));
304 return (PAM_SERVICE_ERR
);
307 PAM_LOG("Radius config file read");
309 if (build_access_request(radh
, user
, pass
, nas_id
, nas_ipaddr
, NULL
,
312 return (PAM_SERVICE_ERR
);
315 PAM_LOG("Radius build access done");
318 switch (rad_send_request(radh
)) {
320 case RAD_ACCESS_ACCEPT
:
321 e
= do_accept(pamh
, radh
);
324 return (PAM_SERVICE_ERR
);
325 if (template_user
!= NULL
) {
327 PAM_LOG("Trying template user: %s",
331 * If the given user name doesn't exist in
332 * the local password database, change it
333 * to the value given in the "template_user"
336 retval
= pam_get_item(pamh
, PAM_USER
, &tmpuser
);
337 if (retval
!= PAM_SUCCESS
)
339 if (getpwnam_r(tmpuser
, &pwres
, pwbuf
,
340 sizeof(pwbuf
), &pwd
) != 0 ||
342 pam_set_item(pamh
, PAM_USER
,
344 PAM_LOG("Using template user");
348 return (PAM_SUCCESS
);
350 case RAD_ACCESS_REJECT
:
352 PAM_VERBOSE_ERROR("Radius rejection");
353 return (PAM_AUTH_ERR
);
355 case RAD_ACCESS_CHALLENGE
:
356 retval
= do_challenge(pamh
, radh
, user
);
357 if (retval
!= PAM_SUCCESS
) {
364 logit(LOG_CRIT
, "rad_send_request: %s",
367 PAM_VERBOSE_ERROR("Radius failure");
368 return (PAM_AUTHINFO_UNAVAIL
);
372 "rad_send_request: unexpected return value");
374 PAM_VERBOSE_ERROR("Radius error");
375 return (PAM_SERVICE_ERR
);
381 pam_sm_setcred(pam_handle_t
*pamh __unused
, int flags __unused
,
382 int argc __unused
, const char *argv
[] __unused
)
385 return (PAM_SUCCESS
);
388 PAM_MODULE_ENTRY("pam_radius");