2 * Copyright (c) 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
35 * Check database for strange configurations on default principals
38 #include "kadmin_locl.h"
39 #include "kadmin-commands.h"
41 __RCSID("$Heimdal: check.c 20962 2007-06-07 05:09:24Z lha $"
42 "$NetBSD: check.c,v 1.1 2008/03/22 08:37:02 mlelstv Exp $");
45 get_check_entry(const char *name
, kadm5_principal_ent_rec
*ent
)
48 krb5_principal principal
;
50 ret
= krb5_parse_name(context
, name
, &principal
);
52 krb5_warn(context
, ret
, "krb5_unparse_name: %s", name
);
56 memset(ent
, 0, sizeof(*ent
));
57 ret
= kadm5_get_principal(kadm_handle
, principal
, ent
, 0);
58 krb5_free_principal(context
, principal
);
67 do_check_entry(krb5_principal principal
, void *data
)
70 kadm5_principal_ent_rec princ
;
74 ret
= krb5_unparse_name(context
, principal
, &name
);
78 memset (&princ
, 0, sizeof(princ
));
79 ret
= kadm5_get_principal(kadm_handle
, principal
, &princ
,
80 KADM5_PRINCIPAL
| KADM5_KEY_DATA
);
82 krb5_warn(context
, ret
, "Failed to get principal: %s", name
);
87 for (i
= 0; i
< princ
.n_key_data
; i
++) {
89 ret
= krb5_enctype_keysize(context
,
90 princ
.key_data
[i
].key_data_type
[0],
92 if (ret
== 0 && keysize
!= princ
.key_data
[i
].key_data_length
[0]) {
94 "Principal %s enctype %d, wrong length: %lu\n",
95 name
, princ
.key_data
[i
].key_data_type
[0],
96 (unsigned long)princ
.key_data
[i
].key_data_length
);
101 kadm5_free_principal_ent(kadm_handle
, &princ
);
107 check(void *opt
, int argc
, char **argv
)
109 kadm5_principal_ent_rec ent
;
111 char *realm
= NULL
, *p
, *p2
;
115 ret
= krb5_get_default_realm(context
, &realm
);
117 krb5_warn(context
, ret
, "krb5_get_default_realm");
121 realm
= strdup(argv
[0]);
123 krb5_warnx(context
, "malloc");
129 * Check krbtgt/REALM@REALM
131 * For now, just check existance
134 if (asprintf(&p
, "%s/%s@%s", KRB5_TGS_NAME
, realm
, realm
) == -1) {
135 krb5_warn(context
, errno
, "asprintf");
139 ret
= get_check_entry(p
, &ent
);
141 printf("%s doesn't exist, are you sure %s is a realm in your database",
148 kadm5_free_principal_ent(kadm_handle
, &ent
);
151 * Check kadmin/admin@REALM
154 if (asprintf(&p
, "kadmin/admin@%s", realm
) == -1) {
155 krb5_warn(context
, errno
, "asprintf");
159 ret
= get_check_entry(p
, &ent
);
161 printf("%s doesn't exist, "
162 "there is no way to do remote administration", p
);
168 kadm5_free_principal_ent(kadm_handle
, &ent
);
171 * Check kadmin/changepw@REALM
174 if (asprintf(&p
, "kadmin/changepw@%s", realm
) == -1) {
175 krb5_warn(context
, errno
, "asprintf");
179 ret
= get_check_entry(p
, &ent
);
181 printf("%s doesn't exist, "
182 "there is no way to do change password", p
);
188 kadm5_free_principal_ent(kadm_handle
, &ent
);
191 * Check for duplicate afs keys
196 krb5_warn(context
, errno
, "malloc");
201 if (asprintf(&p
, "afs/%s@%s", p2
, realm
) == -1) {
202 krb5_warn(context
, errno
, "asprintf");
208 ret
= get_check_entry(p
, &ent
);
211 kadm5_free_principal_ent(kadm_handle
, &ent
);
216 if (asprintf(&p
, "afs@%s", realm
) == -1) {
217 krb5_warn(context
, errno
, "asprintf");
221 ret
= get_check_entry(p
, &ent
);
224 kadm5_free_principal_ent(kadm_handle
, &ent
);
226 krb5_warnx(context
, "afs@REALM and afs/cellname@REALM both exists");
231 foreach_principal("*", do_check_entry
, "check", NULL
);