2 * Copyright (c) 1997-2002 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 "kadmin_locl.h"
35 #include <kadm5/private.h>
37 RCSID("$Id: init.c,v 1.29 2002/12/03 14:08:17 joda Exp $");
40 create_random_entry(krb5_principal princ
,
45 kadm5_principal_ent_rec ent
;
51 memset(&ent
, 0, sizeof(ent
));
52 ent
.principal
= princ
;
53 mask
|= KADM5_PRINCIPAL
;
55 ent
.max_life
= max_life
;
56 mask
|= KADM5_MAX_LIFE
;
59 ent
.max_renewable_life
= max_rlife
;
60 mask
|= KADM5_MAX_RLIFE
;
62 ent
.attributes
|= attributes
| KRB5_KDB_DISALLOW_ALL_TIX
;
63 mask
|= KADM5_ATTRIBUTES
;
65 ret
= kadm5_create_principal(kadm_handle
, &ent
, mask
, "hemlig");
68 ret
= kadm5_randkey_principal(kadm_handle
, princ
, &keys
, &n_keys
);
71 for(i
= 0; i
< n_keys
; i
++)
72 krb5_free_keyblock_contents(context
, &keys
[i
]);
74 ret
= kadm5_get_principal(kadm_handle
, princ
, &ent
,
75 KADM5_PRINCIPAL
| KADM5_ATTRIBUTES
);
78 ent
.attributes
&= (~KRB5_KDB_DISALLOW_ALL_TIX
);
80 ret
= kadm5_modify_principal(kadm_handle
, &ent
,
81 KADM5_ATTRIBUTES
|KADM5_KVNO
);
82 kadm5_free_principal_ent (kadm_handle
, &ent
);
88 static struct getargs args
[] = {
89 { "realm-max-ticket-life", 0, arg_string
, NULL
,
90 "realm max ticket lifetime" },
91 { "realm-max-renewable-life", 0, arg_string
, NULL
,
92 "realm max renewable lifetime" },
93 { "help", 'h', arg_flag
, NULL
},
96 static int num_args
= sizeof(args
) / sizeof(args
[0]);
101 arg_printusage (args
, num_args
, "init", "realm...");
105 init(int argc
, char **argv
)
109 char *realm_max_life
= NULL
;
110 char *realm_max_rlife
= NULL
;
114 krb5_deltat max_life
, max_rlife
;
116 args
[0].value
= &realm_max_life
;
117 args
[1].value
= &realm_max_rlife
;
118 args
[2].value
= &help_flag
;
120 if(getarg(args
, num_args
, argc
, argv
, &optind
) || help_flag
) {
125 if(argc
- optind
< 1) {
130 if (realm_max_life
) {
131 if (str2deltat (realm_max_life
, &max_life
) != 0) {
132 krb5_warnx (context
, "unable to parse `%s'", realm_max_life
);
136 if (realm_max_rlife
) {
137 if (str2deltat (realm_max_rlife
, &max_rlife
) != 0) {
138 krb5_warnx (context
, "unable to parse `%s'", realm_max_rlife
);
143 db
= _kadm5_s_get_db(kadm_handle
);
145 ret
= db
->open(context
, db
, O_RDWR
| O_CREAT
, 0600);
147 krb5_warn(context
, ret
, "hdb_open");
150 db
->close(context
, db
);
151 for(i
= optind
; i
< argc
; i
++){
152 krb5_principal princ
;
153 const char *realm
= argv
[i
];
155 /* Create `krbtgt/REALM' */
156 ret
= krb5_make_principal(context
, &princ
, realm
,
157 KRB5_TGS_NAME
, realm
, NULL
);
160 if (realm_max_life
== NULL
) {
162 if(edit_deltat ("Realm max ticket life", &max_life
, NULL
, 0)) {
163 krb5_free_principal(context
, princ
);
167 if (realm_max_rlife
== NULL
) {
169 if(edit_deltat("Realm max renewable ticket life", &max_rlife
,
171 krb5_free_principal(context
, princ
);
175 create_random_entry(princ
, max_life
, max_rlife
, 0);
176 krb5_free_principal(context
, princ
);
178 /* Create `kadmin/changepw' */
179 krb5_make_principal(context
, &princ
, realm
,
180 "kadmin", "changepw", NULL
);
181 create_random_entry(princ
, 5*60, 5*60,
182 KRB5_KDB_DISALLOW_TGT_BASED
|
183 KRB5_KDB_PWCHANGE_SERVICE
|
184 KRB5_KDB_DISALLOW_POSTDATED
|
185 KRB5_KDB_DISALLOW_FORWARDABLE
|
186 KRB5_KDB_DISALLOW_RENEWABLE
|
187 KRB5_KDB_DISALLOW_PROXIABLE
|
188 KRB5_KDB_REQUIRES_PRE_AUTH
);
189 krb5_free_principal(context
, princ
);
191 /* Create `kadmin/admin' */
192 krb5_make_principal(context
, &princ
, realm
,
193 "kadmin", "admin", NULL
);
194 create_random_entry(princ
, 60*60, 60*60, KRB5_KDB_REQUIRES_PRE_AUTH
);
195 krb5_free_principal(context
, princ
);
197 /* Create `changepw/kerberos' (for v4 compat) */
198 krb5_make_principal(context
, &princ
, realm
,
199 "changepw", "kerberos", NULL
);
200 create_random_entry(princ
, 60*60, 60*60,
201 KRB5_KDB_DISALLOW_TGT_BASED
|
202 KRB5_KDB_PWCHANGE_SERVICE
);
204 krb5_free_principal(context
, princ
);
206 /* Create `kadmin/hprop' for database propagation */
207 krb5_make_principal(context
, &princ
, realm
,
208 "kadmin", "hprop", NULL
);
209 create_random_entry(princ
, 60*60, 60*60,
210 KRB5_KDB_REQUIRES_PRE_AUTH
|
211 KRB5_KDB_DISALLOW_TGT_BASED
);
212 krb5_free_principal(context
, princ
);
214 /* Create `default' */
216 kadm5_principal_ent_rec ent
;
219 memset (&ent
, 0, sizeof(ent
));
220 mask
|= KADM5_PRINCIPAL
;
221 krb5_make_principal(context
, &ent
.principal
, realm
,
223 mask
|= KADM5_MAX_LIFE
;
224 ent
.max_life
= 24 * 60 * 60;
225 mask
|= KADM5_MAX_RLIFE
;
226 ent
.max_renewable_life
= 7 * ent
.max_life
;
227 ent
.attributes
= KRB5_KDB_DISALLOW_ALL_TIX
;
228 mask
|= KADM5_ATTRIBUTES
;
230 ret
= kadm5_create_principal(kadm_handle
, &ent
, mask
, "");
232 krb5_err (context
, 1, ret
, "kadm5_create_principal");
234 krb5_free_principal(context
, ent
.principal
);