2 * Copyright (c) 1997-2006 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"
39 change(void *server_handle
,
43 krb5_key_salt_tuple
*ks_tuple
,
47 kadm5_server_context
*context
= server_handle
;
54 memset(&ent
, 0, sizeof(ent
));
55 if (!context
->keep_open
) {
56 ret
= context
->db
->hdb_open(context
->context
, context
->db
, O_RDWR
, 0);
61 ret
= kadm5_log_init(context
);
65 ret
= context
->db
->hdb_fetch_kvno(context
->context
, context
->db
, princ
,
66 HDB_F_DECRYPT
|HDB_F_GET_ANY
|HDB_F_ADMIN_DATA
, 0, &ent
);
70 if (keepold
|| cond
) {
72 * We save these for now so we can handle password history checking;
73 * we handle keepold further below.
75 ret
= hdb_add_current_keys_to_history(context
->context
, &ent
.entry
);
80 if (context
->db
->hdb_capability_flags
& HDB_CAP_F_HANDLE_PASSWORDS
) {
81 ret
= context
->db
->hdb_password(context
->context
, context
->db
,
82 &ent
, password
, cond
);
87 num_keys
= ent
.entry
.keys
.len
;
88 keys
= ent
.entry
.keys
.val
;
90 ent
.entry
.keys
.len
= 0;
91 ent
.entry
.keys
.val
= NULL
;
93 ret
= _kadm5_set_keys(context
, &ent
.entry
, n_ks_tuple
, ks_tuple
,
96 _kadm5_free_keys(context
->context
, num_keys
, keys
);
99 _kadm5_free_keys(context
->context
, num_keys
, keys
);
104 ext
= hdb_find_extension(&ent
.entry
, choice_HDB_extension_data_hist_keys
);
106 existsp
= _kadm5_exists_keys_hist(ent
.entry
.keys
.val
,
108 &ext
->data
.u
.hist_keys
);
112 ret
= KADM5_PASS_REUSE
;
113 krb5_set_error_message(context
->context
, ret
,
114 "Password reuse forbidden");
120 ent
.entry
.flags
.require_pwchange
= 0;
125 memset(&ext
, 0, sizeof (ext
));
126 ext
.mandatory
= FALSE
;
127 ext
.data
.element
= choice_HDB_extension_data_hist_keys
;
128 ret
= hdb_replace_extension(context
->context
, &ent
.entry
, &ext
);
133 ret
= hdb_seal_keys(context
->context
, context
->db
, &ent
.entry
);
137 ret
= _kadm5_set_modifier(context
, &ent
.entry
);
141 ret
= _kadm5_bump_pw_expire(context
, &ent
.entry
);
145 /* This logs the change for iprop and writes to the HDB */
146 ret
= kadm5_log_modify(context
, &ent
.entry
,
147 KADM5_ATTRIBUTES
| KADM5_PRINCIPAL
|
148 KADM5_MOD_NAME
| KADM5_MOD_TIME
|
149 KADM5_KEY_DATA
| KADM5_KVNO
|
150 KADM5_PW_EXPIRATION
| KADM5_TL_DATA
);
153 hdb_free_entry(context
->context
, &ent
);
155 (void) kadm5_log_end(context
);
156 if (!context
->keep_open
) {
158 ret2
= context
->db
->hdb_close(context
->context
, context
->db
);
159 if (ret
== 0 && ret2
!= 0)
162 return _kadm5_error_code(ret
);
168 * change the password of `princ' to `password' if it's not already that.
172 kadm5_s_chpass_principal_cond(void *server_handle
,
173 krb5_principal princ
,
175 const char *password
)
177 return change (server_handle
, princ
, keepold
, 0, NULL
, password
, 1);
181 * change the password of `princ' to `password'
185 kadm5_s_chpass_principal(void *server_handle
,
186 krb5_principal princ
,
189 krb5_key_salt_tuple
*ks_tuple
,
190 const char *password
)
192 return change (server_handle
, princ
, keepold
,
193 n_ks_tuple
, ks_tuple
, password
, 0);
197 * change keys for `princ' to `keys'
201 kadm5_s_chpass_principal_with_key(void *server_handle
,
202 krb5_principal princ
,
205 krb5_key_data
*key_data
)
207 kadm5_server_context
*context
= server_handle
;
211 memset(&ent
, 0, sizeof(ent
));
212 if (!context
->keep_open
) {
213 ret
= context
->db
->hdb_open(context
->context
, context
->db
, O_RDWR
, 0);
218 ret
= kadm5_log_init(context
);
222 ret
= context
->db
->hdb_fetch_kvno(context
->context
, context
->db
, princ
, 0,
223 HDB_F_GET_ANY
|HDB_F_ADMIN_DATA
, &ent
);
224 if(ret
== HDB_ERR_NOENTRY
)
227 ret
= hdb_add_current_keys_to_history(context
->context
, &ent
.entry
);
231 ret
= _kadm5_set_keys2(context
, &ent
.entry
, n_key_data
, key_data
);
235 ret
= _kadm5_set_modifier(context
, &ent
.entry
);
238 ret
= _kadm5_bump_pw_expire(context
, &ent
.entry
);
243 ret
= hdb_seal_keys(context
->context
, context
->db
, &ent
.entry
);
249 memset(&ext
, 0, sizeof (ext
));
250 ext
.mandatory
= FALSE
;
251 ext
.data
.element
= choice_HDB_extension_data_hist_keys
;
252 ext
.data
.u
.hist_keys
.len
= 0;
253 ext
.data
.u
.hist_keys
.val
= NULL
;
254 hdb_replace_extension(context
->context
, &ent
.entry
, &ext
);
257 /* This logs the change for iprop and writes to the HDB */
258 ret
= kadm5_log_modify(context
, &ent
.entry
,
259 KADM5_PRINCIPAL
| KADM5_MOD_NAME
|
260 KADM5_MOD_TIME
| KADM5_KEY_DATA
| KADM5_KVNO
|
261 KADM5_PW_EXPIRATION
| KADM5_TL_DATA
);
264 hdb_free_entry(context
->context
, &ent
);
266 (void) kadm5_log_end(context
);
267 if (!context
->keep_open
) {
269 ret2
= context
->db
->hdb_close(context
->context
, context
->db
);
270 if (ret
== 0 && ret2
!= 0)
273 return _kadm5_error_code(ret
);