2 * Copyright (c) 1997-2000, 2003-2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "kadm5_locl.h"
35 #include "kadm5-pwcheck.h"
37 __RCSID("$Heimdal: password_quality.c 17595 2006-05-30 21:51:55Z lha $"
40 #ifdef HAVE_SYS_WAIT_H
48 min_length_passwd_quality (krb5_context context
,
49 krb5_principal principal
,
55 uint32_t min_length
= krb5_config_get_int_default(context
, NULL
, 6,
60 if (pwd
->length
< min_length
) {
61 strlcpy(message
, "Password too short", length
);
68 min_length_passwd_quality_v0 (krb5_context context
,
69 krb5_principal principal
,
72 static char message
[1024];
77 ret
= min_length_passwd_quality(context
, principal
, pwd
, NULL
,
78 message
, sizeof(message
));
86 char_class_passwd_quality (krb5_context context
,
87 krb5_principal principal
,
93 const char *classes
[] = {
94 "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
95 "abcdefghijklmnopqrstuvwxyz",
97 "!@#$%^&*()/?<>,.{[]}\\|'~`\" "
99 int i
, counter
= 0, req_classes
;
103 req_classes
= krb5_config_get_int_default(context
, NULL
, 3,
108 len
= pwd
->length
+ 1;
111 strlcpy(message
, "out of memory", length
);
114 strlcpy(pw
, pwd
->data
, len
);
117 for (i
= 0; i
< sizeof(classes
)/sizeof(classes
[0]); i
++) {
118 if (strcspn(pw
, classes
[i
]) < len
)
121 memset(pw
, 0, pwd
->length
+ 1);
123 if (counter
< req_classes
) {
124 snprintf(message
, length
,
125 "Password doesn't meet complexity requirement.\n"
126 "Add more characters from the following classes:\n"
127 "1. English uppercase characters (A through Z)\n"
128 "2. English lowercase characters (a through z)\n"
129 "3. Base 10 digits (0 through 9)\n"
130 "4. Nonalphanumeric characters (e.g., !, $, #, %%)");
137 external_passwd_quality (krb5_context context
,
138 krb5_principal principal
,
150 FILE *in
= NULL
, *out
= NULL
, *error
= NULL
;
152 if (memchr(pwd
->data
, pwd
->length
, '\n') != NULL
) {
153 snprintf(message
, length
, "password contains newline, "
154 "not valid for external test");
158 program
= krb5_config_get_string(context
, NULL
,
162 if (program
== NULL
) {
163 snprintf(message
, length
, "external password quality "
164 "program not configured");
168 ret
= krb5_unparse_name(context
, principal
, &p
);
170 strlcpy(message
, "out of memory", length
);
174 child
= pipe_execv(&in
, &out
, &error
, program
, p
, NULL
);
176 snprintf(message
, length
, "external password quality "
177 "program failed to execute for principal %s", p
);
182 fprintf(in
, "principal: %s\n"
183 "new-password: %.*s\n"
185 p
, (int)pwd
->length
, (char *)pwd
->data
);
189 if (fgets(reply
, sizeof(reply
), out
) == NULL
) {
191 if (fgets(reply
, sizeof(reply
), error
) == NULL
) {
192 snprintf(message
, length
, "external password quality "
193 "program failed without error");
196 reply
[strcspn(reply
, "\n")] = '\0';
197 snprintf(message
, length
, "External password quality "
198 "program failed: %s", reply
);
203 waitpid(child
, &status
, 0);
206 reply
[strcspn(reply
, "\n")] = '\0';
211 if (waitpid(child
, &status
, 0) < 0) {
212 snprintf(message
, length
, "external program failed: %s", reply
);
216 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
217 snprintf(message
, length
, "external program failed: %s", reply
);
222 if (strcmp(reply
, "APPROVED") != 0) {
223 snprintf(message
, length
, "%s", reply
);
234 static kadm5_passwd_quality_check_func_v0 passwd_quality_check
=
235 min_length_passwd_quality_v0
;
237 struct kadm5_pw_policy_check_func builtin_funcs
[] = {
238 { "minimum-length", min_length_passwd_quality
},
239 { "character-class", char_class_passwd_quality
},
240 { "external-check", external_passwd_quality
},
243 struct kadm5_pw_policy_verifier builtin_verifier
= {
245 KADM5_PASSWD_VERSION_V1
,
250 static struct kadm5_pw_policy_verifier
**verifiers
;
251 static int num_verifiers
;
254 * setup the password quality hook
262 kadm5_setup_passwd_quality_check(krb5_context context
,
263 const char *check_library
,
264 const char *check_function
)
272 if(check_library
== NULL
) {
273 tmp
= krb5_config_get_string(context
, NULL
,
280 if(check_function
== NULL
) {
281 tmp
= krb5_config_get_string(context
, NULL
,
286 check_function
= tmp
;
288 if(check_library
!= NULL
&& check_function
== NULL
)
289 check_function
= "passwd_check";
291 if(check_library
== NULL
)
293 handle
= dlopen(check_library
, RTLD_NOW
);
295 krb5_warnx(context
, "failed to open `%s'", check_library
);
298 version
= dlsym(handle
, "version");
299 if(version
== NULL
) {
301 "didn't find `version' symbol in `%s'", check_library
);
305 if(*version
!= KADM5_PASSWD_VERSION_V0
) {
307 "version of loaded library is %d (expected %d)",
308 *version
, KADM5_PASSWD_VERSION_V0
);
312 sym
= dlsym(handle
, check_function
);
315 "didn't find `%s' symbol in `%s'",
316 check_function
, check_library
);
320 passwd_quality_check
= (kadm5_passwd_quality_check_func_v0
) sym
;
321 #endif /* HAVE_DLOPEN */
326 static krb5_error_code
327 add_verifier(krb5_context context
, const char *check_library
)
329 struct kadm5_pw_policy_verifier
*v
, **tmp
;
333 handle
= dlopen(check_library
, RTLD_NOW
);
335 krb5_warnx(context
, "failed to open `%s'", check_library
);
338 v
= dlsym(handle
, "kadm5_password_verifier");
341 "didn't find `kadm5_password_verifier' symbol "
342 "in `%s'", check_library
);
346 if(v
->version
!= KADM5_PASSWD_VERSION_V1
) {
348 "version of loaded library is %d (expected %d)",
349 v
->version
, KADM5_PASSWD_VERSION_V1
);
353 for (i
= 0; i
< num_verifiers
; i
++) {
354 if (strcmp(v
->name
, verifiers
[i
]->name
) == 0)
357 if (i
< num_verifiers
) {
358 krb5_warnx(context
, "password verifier library `%s' is already loaded",
364 tmp
= realloc(verifiers
, (num_verifiers
+ 1) * sizeof(*verifiers
));
366 krb5_warnx(context
, "out of memory");
371 verifiers
[num_verifiers
] = v
;
380 kadm5_add_passwd_quality_verifier(krb5_context context
,
381 const char *check_library
)
385 if(check_library
== NULL
) {
389 tmp
= krb5_config_get_strings(context
, NULL
,
397 ret
= add_verifier(context
, *tmp
);
403 return add_verifier(context
, check_library
);
406 #endif /* HAVE_DLOPEN */
413 static const struct kadm5_pw_policy_check_func
*
414 find_func(krb5_context context
, const char *name
)
416 const struct kadm5_pw_policy_check_func
*f
;
418 const char *p
, *func
;
421 p
= strchr(name
, ':');
424 module
= strndup(name
, p
- name
);
430 /* Find module in loaded modules first */
431 for (i
= 0; i
< num_verifiers
; i
++) {
432 if (module
&& strcmp(module
, verifiers
[i
]->name
) != 0)
434 for (f
= verifiers
[i
]->funcs
; f
->name
; f
++)
435 if (strcmp(name
, f
->name
) == 0) {
441 /* Lets try try the builtin modules */
442 if (module
== NULL
|| strcmp(module
, "builtin") == 0) {
443 for (f
= builtin_verifier
.funcs
; f
->name
; f
++)
444 if (strcmp(func
, f
->name
) == 0) {
456 kadm5_check_password_quality (krb5_context context
,
457 krb5_principal principal
,
460 const struct kadm5_pw_policy_check_func
*proc
;
461 static char error_msg
[1024];
467 * Check if we should use the old version of policy function.
470 v
= krb5_config_get_strings(context
, NULL
,
475 msg
= (*passwd_quality_check
) (context
, principal
, pwd_data
);
476 krb5_set_error_string(context
, "password policy failed: %s", msg
);
483 for(vp
= v
; *vp
; vp
++) {
484 proc
= find_func(context
, *vp
);
486 msg
= "failed to find password verifier function";
487 krb5_set_error_string(context
, "Failed to find password policy "
488 "function: %s", *vp
);
491 ret
= (proc
->func
)(context
, principal
, pwd_data
, NULL
,
492 error_msg
, sizeof(error_msg
));
494 krb5_set_error_string(context
, "Password policy "
496 proc
->name
, error_msg
);
501 krb5_config_free_strings(v
);
503 /* If the default quality check isn't used, lets check that the
504 * old quality function the user have set too */
505 if (msg
== NULL
&& passwd_quality_check
!= min_length_passwd_quality_v0
) {
506 msg
= (*passwd_quality_check
) (context
, principal
, pwd_data
);
508 krb5_set_error_string(context
, "(old) password policy "
509 "failed with %s", msg
);