 15e416b777
			
		
	
	15e416b777
	
	
	
		
			
			running ipropd of an update. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4339 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			622 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			622 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 1997, 1998 Kungliga Tekniska Högskolan
 | |
|  * (Royal Institute of Technology, Stockholm, Sweden). 
 | |
|  * All rights reserved. 
 | |
|  *
 | |
|  * Redistribution and use in source and binary forms, with or without 
 | |
|  * modification, are permitted provided that the following conditions 
 | |
|  * are met: 
 | |
|  *
 | |
|  * 1. Redistributions of source code must retain the above copyright 
 | |
|  *    notice, this list of conditions and the following disclaimer. 
 | |
|  *
 | |
|  * 2. Redistributions in binary form must reproduce the above copyright 
 | |
|  *    notice, this list of conditions and the following disclaimer in the 
 | |
|  *    documentation and/or other materials provided with the distribution. 
 | |
|  *
 | |
|  * 3. All advertising materials mentioning features or use of this software 
 | |
|  *    must display the following acknowledgement: 
 | |
|  *      This product includes software developed by Kungliga Tekniska 
 | |
|  *      Högskolan and its contributors. 
 | |
|  *
 | |
|  * 4. Neither the name of the Institute nor the names of its contributors 
 | |
|  *    may be used to endorse or promote products derived from this software 
 | |
|  *    without specific prior written permission. 
 | |
|  *
 | |
|  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
 | |
|  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 | |
|  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 | |
|  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
 | |
|  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 | |
|  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
 | |
|  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 | |
|  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
 | |
|  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
 | |
|  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 | |
|  * SUCH DAMAGE. 
 | |
|  */
 | |
| 
 | |
| #include "kadm5_locl.h"
 | |
| 
 | |
| RCSID("$Id$");
 | |
| 
 | |
| /*
 | |
|  * A log record consists of:
 | |
|  *
 | |
|  * version number		4 bytes
 | |
|  * time in seconds		4 bytes
 | |
|  * operation (enum kadm_ops)	4 bytes
 | |
|  * length of record		4 bytes
 | |
|  * data...			n bytes
 | |
|  * length of record		4 bytes
 | |
|  * version number		4 bytes
 | |
|  *
 | |
|  */
 | |
| 
 | |
| static kadm5_ret_t
 | |
| get_version (int fd, u_int32_t *ver)
 | |
| {
 | |
|     int ret;
 | |
|     krb5_storage *sp;
 | |
|     int32_t old_version;
 | |
| 
 | |
|     ret = lseek (fd, 0, SEEK_END);
 | |
|     if(ret < 0)
 | |
| 	return errno;
 | |
|     if(ret == 0) {
 | |
| 	*ver = 0;
 | |
| 	return 0;
 | |
|     }
 | |
|     sp = krb5_storage_from_fd (fd);
 | |
|     sp->seek(sp, -4, SEEK_CUR);
 | |
|     krb5_ret_int32 (sp, &old_version);
 | |
|     *ver = old_version;
 | |
|     krb5_storage_free(sp);
 | |
|     lseek (fd, 0, SEEK_END);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_init (kadm5_server_context *context)
 | |
| {
 | |
|     int fd;
 | |
|     kadm5_ret_t ret;
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
| 
 | |
|     if (log_context->log_fd != -1)
 | |
| 	return 0;
 | |
|     fd = open (log_context->log_file, O_RDWR | O_CREAT, 0600);
 | |
|     if (fd < 0)
 | |
| 	return errno;
 | |
|     if (flock (fd, LOCK_EX) < 0) {
 | |
| 	close (fd);
 | |
| 	return errno;
 | |
|     }
 | |
| 
 | |
|     ret = get_version (fd, &log_context->version);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
| 
 | |
|     log_context->log_fd  = fd;
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_end (kadm5_server_context *context)
 | |
| {
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
|     int fd = log_context->log_fd;
 | |
| 
 | |
|     flock (fd, LOCK_UN);
 | |
|     close(fd);
 | |
|     log_context->log_fd = -1;
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static kadm5_ret_t
 | |
| kadm5_log_preamble (kadm5_server_context *context,
 | |
| 		    krb5_storage *sp,
 | |
| 		    enum kadm_ops op)
 | |
| {
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
|     kadm5_ret_t kadm_ret;
 | |
| 
 | |
|     kadm_ret = kadm5_log_init (context);
 | |
|     if (kadm_ret)
 | |
| 	return kadm_ret;
 | |
| 
 | |
|     krb5_store_int32 (sp, ++log_context->version);
 | |
|     krb5_store_int32 (sp, time(NULL));
 | |
|     krb5_store_int32 (sp, op);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static kadm5_ret_t
 | |
| kadm5_log_postamble (kadm5_log_context *context,
 | |
| 		     krb5_storage *sp)
 | |
| {
 | |
|     krb5_store_int32 (sp, context->version);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * flush the log record in `sp'.
 | |
|  */
 | |
| 
 | |
| static kadm5_ret_t
 | |
| kadm5_log_flush (kadm5_log_context *log_context,
 | |
| 		 krb5_storage *sp)
 | |
| {
 | |
|     krb5_data data;
 | |
|     size_t len;
 | |
|     int ret;
 | |
| 
 | |
|     krb5_storage_to_data(sp, &data);
 | |
|     len = data.length;
 | |
|     ret = write (log_context->log_fd, data.data, len);
 | |
|     if (ret != len) {
 | |
| 	krb5_data_free(&data);
 | |
| 	return errno;
 | |
|     }
 | |
|     if (fsync (log_context->log_fd) < 0) {
 | |
| 	krb5_data_free(&data);
 | |
| 	return errno;
 | |
|     }
 | |
|     /*
 | |
|      * Try to send a signal to any running `ipropd-master'
 | |
|      */
 | |
|     sendto (log_context->socket_fd,
 | |
| 	    &log_context->version,
 | |
| 	    sizeof(log_context->version),
 | |
| 	    0,
 | |
| 	    (struct sockaddr *)&log_context->socket_name,
 | |
| 	    sizeof(log_context->socket_name));
 | |
| 
 | |
|     krb5_data_free(&data);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Add a `create' operation to the log.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_create (kadm5_server_context *context,
 | |
| 		  hdb_entry *ent)
 | |
| {
 | |
|     krb5_storage *sp;
 | |
|     kadm5_ret_t ret;
 | |
|     krb5_data value;
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
| 
 | |
|     sp = krb5_storage_emem();
 | |
|     ret = hdb_entry2value (context->context, ent, &value);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_preamble (context, sp, kadm_create);
 | |
|     if (ret) {
 | |
| 	krb5_data_free (&value);
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     krb5_store_int32 (sp, value.length);
 | |
|     sp->store(sp, value.data, value.length);
 | |
|     krb5_store_int32 (sp, value.length);
 | |
|     krb5_data_free (&value);
 | |
|     ret = kadm5_log_postamble (log_context, sp);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_flush (log_context, sp);
 | |
|     krb5_storage_free (sp);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ret = kadm5_log_end (context);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Read the data of a create log record from `sp' and change the
 | |
|  * database.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_replay_create (kadm5_server_context *context,
 | |
| 			 u_int32_t ver,
 | |
| 			 u_int32_t len,
 | |
| 			 krb5_storage *sp)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_data data;
 | |
|     hdb_entry ent;
 | |
| 
 | |
|     krb5_data_alloc (&data, len);
 | |
|     sp->fetch (sp, data.data, len);
 | |
|     ret = hdb_value2entry (context->context, &data, &ent);
 | |
|     krb5_data_free(&data);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ret = context->db->store(context->context, context->db, 0, &ent);
 | |
|     hdb_free_entry (context->context, &ent);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Add a `delete' operation to the log.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_delete (kadm5_server_context *context,
 | |
| 		  krb5_principal princ)
 | |
| {
 | |
|     krb5_storage *sp;
 | |
|     kadm5_ret_t ret;
 | |
|     off_t off;
 | |
|     off_t len;
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
| 
 | |
|     sp = krb5_storage_emem();
 | |
|     ret = kadm5_log_preamble (context, sp, kadm_delete);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     krb5_store_int32 (sp, 0);
 | |
|     off = sp->seek (sp, 0, SEEK_CUR);
 | |
|     krb5_store_principal (sp, princ);
 | |
|     len = sp->seek (sp, 0, SEEK_CUR) - off;
 | |
|     sp->seek(sp, -(len + 4), SEEK_CUR);
 | |
|     krb5_store_int32 (sp, len);
 | |
|     sp->seek(sp, len, SEEK_CUR);
 | |
|     krb5_store_int32 (sp, len);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_postamble (log_context, sp);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_flush (log_context, sp);
 | |
|     krb5_storage_free (sp);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ret = kadm5_log_end (context);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Read a `delete' log operation from `sp' and apply it.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_replay_delete (kadm5_server_context *context,
 | |
| 			 u_int32_t ver,
 | |
| 			 u_int32_t len,
 | |
| 			 krb5_storage *sp)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     hdb_entry ent;
 | |
| 
 | |
|     krb5_ret_principal (sp, &ent.principal);
 | |
| 
 | |
|     ret = context->db->delete(context->context, context->db, &ent);
 | |
|     krb5_free_principal (context->context, ent.principal);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Add a `rename' operation to the log.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_rename (kadm5_server_context *context,
 | |
| 		  krb5_principal source,
 | |
| 		  hdb_entry *ent)
 | |
| {
 | |
|     krb5_storage *sp;
 | |
|     kadm5_ret_t ret;
 | |
|     off_t off;
 | |
|     off_t len;
 | |
|     krb5_data value;
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
| 
 | |
|     sp = krb5_storage_emem();
 | |
|     ret = hdb_entry2value (context->context, ent, &value);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_preamble (context, sp, kadm_rename);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free(sp);
 | |
| 	krb5_data_free (&value);
 | |
| 	return ret;
 | |
|     }
 | |
|     krb5_store_int32 (sp, 0);
 | |
|     off = sp->seek (sp, 0, SEEK_CUR);
 | |
|     krb5_store_principal (sp, source);
 | |
|     sp->store(sp, value.data, value.length);
 | |
|     krb5_data_free (&value);
 | |
|     len = sp->seek (sp, 0, SEEK_CUR) - off;
 | |
| 
 | |
|     sp->seek(sp, -(len + 4), SEEK_CUR);
 | |
|     krb5_store_int32 (sp, len);
 | |
|     sp->seek(sp, len, SEEK_CUR);
 | |
|     krb5_store_int32 (sp, len);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_postamble (log_context, sp);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_flush (log_context, sp);
 | |
|     krb5_storage_free (sp);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ret = kadm5_log_end (context);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Read a `rename' log operation from `sp' and apply it.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_replay_rename (kadm5_server_context *context,
 | |
| 			 u_int32_t ver,
 | |
| 			 u_int32_t len,
 | |
| 			 krb5_storage *sp)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_principal source;
 | |
|     hdb_entry source_ent, target_ent;
 | |
|     krb5_data value;
 | |
|     off_t off;
 | |
|     size_t princ_len, data_len;
 | |
| 
 | |
|     off = sp->seek(sp, 0, SEEK_CUR);
 | |
|     krb5_ret_principal (sp, &source);
 | |
|     princ_len = sp->seek(sp, 0, SEEK_CUR) - off;
 | |
|     data_len = len - princ_len;
 | |
|     krb5_data_alloc (&value, data_len);
 | |
|     sp->fetch (sp, value.data, data_len);
 | |
|     ret = hdb_value2entry (context->context, &value, &target_ent);
 | |
|     krb5_data_free(&value);
 | |
|     if (ret) {
 | |
| 	krb5_free_principal (context->context, source);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = context->db->store (context->context, context->db, 0, &target_ent);
 | |
|     hdb_free_entry (context->context, &target_ent);
 | |
|     if (ret) {
 | |
| 	krb5_free_principal (context->context, source);
 | |
| 	return ret;
 | |
|     }
 | |
|     source_ent.principal = source;
 | |
|     ret = context->db->delete (context->context, context->db, &source_ent);
 | |
|     krb5_free_principal (context->context, source);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| 
 | |
| /*
 | |
|  * Add a `modify' operation to the log.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_modify (kadm5_server_context *context,
 | |
| 		  hdb_entry *ent,
 | |
| 		  u_int32_t mask)
 | |
| {
 | |
|     krb5_storage *sp;
 | |
|     kadm5_ret_t ret;
 | |
|     krb5_data value;
 | |
|     u_int32_t len;
 | |
|     kadm5_log_context *log_context = &context->log_context;
 | |
| 
 | |
|     sp = krb5_storage_emem();
 | |
|     ret = hdb_entry2value (context->context, ent, &value);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_preamble (context, sp, kadm_modify);
 | |
|     if (ret) {
 | |
| 	krb5_data_free (&value);
 | |
| 	krb5_storage_free(sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     len = value.length + 4;
 | |
|     krb5_store_int32 (sp, len);
 | |
|     krb5_store_int32 (sp, mask);
 | |
|     sp->store(sp, value.data, value.length);
 | |
|     krb5_data_free (&value);
 | |
|     krb5_store_int32 (sp, len);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_postamble (log_context, sp);
 | |
|     if (ret) {
 | |
| 	krb5_storage_free (sp);
 | |
| 	return ret;
 | |
|     }
 | |
|     ret = kadm5_log_flush (log_context, sp);
 | |
|     krb5_storage_free (sp);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ret = kadm5_log_end (context);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Read a `modify' log operation from `sp' and apply it.
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_replay_modify (kadm5_server_context *context,
 | |
| 			 u_int32_t ver,
 | |
| 			 u_int32_t len,
 | |
| 			 krb5_storage *sp)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     u_int32_t mask;
 | |
|     krb5_data value;
 | |
|     hdb_entry ent, log_ent;
 | |
| 
 | |
|     krb5_ret_int32 (sp, &mask);
 | |
|     len -= 4;
 | |
|     krb5_data_alloc (&value, len);
 | |
|     sp->fetch (sp, value.data, len);
 | |
|     ret = hdb_value2entry (context->context, &value, &log_ent);
 | |
|     krb5_data_free(&value);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     ent.principal = log_ent.principal;
 | |
|     log_ent.principal = NULL;
 | |
|     ret = context->db->fetch(context->context, context->db, &ent);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
|     if (mask & KADM5_PRINC_EXPIRE_TIME) {
 | |
| 	if (ent.valid_end == NULL)
 | |
| 	    ent.valid_end = malloc(sizeof(*ent.valid_end));
 | |
| 	*ent.valid_end = *log_ent.valid_end;
 | |
|     }
 | |
|     if (mask & KADM5_PW_EXPIRATION) {
 | |
| 	if (ent.pw_end == NULL)
 | |
| 	    ent.pw_end = malloc(sizeof(*ent.pw_end));
 | |
| 	*ent.pw_end = *log_ent.pw_end;
 | |
|     }
 | |
|     if (mask & KADM5_LAST_PWD_CHANGE) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_ATTRIBUTES) {
 | |
| 	ent.flags = log_ent.flags;
 | |
|     }
 | |
|     if (mask & KADM5_MAX_LIFE) {
 | |
| 	if (ent.max_life == NULL)
 | |
| 	    ent.max_life = malloc (sizeof(*ent.max_life));
 | |
| 	*ent.max_life = *log_ent.max_life;
 | |
|     }
 | |
|     if ((mask & KADM5_MOD_TIME) && (mask & KADM5_MOD_NAME)) {
 | |
| 	if (ent.modified_by == NULL) {
 | |
| 	    ent.modified_by = malloc(sizeof(*ent.modified_by));
 | |
| 	} else
 | |
| 	    free_Event(ent.modified_by);
 | |
| 	copy_Event(log_ent.modified_by, ent.modified_by);
 | |
|     }
 | |
|     if (mask & KADM5_KVNO) {
 | |
| 	ent.kvno = log_ent.kvno;
 | |
|     }
 | |
|     if (mask & KADM5_MKVNO) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_AUX_ATTRIBUTES) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_POLICY) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_POLICY_CLR) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_MAX_RLIFE) {
 | |
| 	if (ent.max_renew == NULL)
 | |
| 	    ent.max_renew = malloc (sizeof(*ent.max_renew));
 | |
| 	*ent.max_renew = *log_ent.max_renew;
 | |
|     }
 | |
|     if (mask & KADM5_LAST_SUCCESS) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_LAST_FAILED) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_FAIL_AUTH_COUNT) {
 | |
| 	abort ();		/* XXX */
 | |
|     }
 | |
|     if (mask & KADM5_KEY_DATA) {
 | |
| 	size_t len;
 | |
| 	int i;
 | |
| 
 | |
| 	for (i = 0; i < ent.keys.len; ++i)
 | |
| 	    free_Key(&ent.keys.val[i]);
 | |
| 	free (ent.keys.val);
 | |
| 
 | |
| 	len = log_ent.keys.len;
 | |
| 
 | |
| 	ent.keys.len = len;
 | |
| 	ent.keys.val = malloc(len * sizeof(*ent.keys.val));
 | |
| 	for (i = 0; i < ent.keys.len; ++i)
 | |
| 	    copy_Key(&log_ent.keys.val[i],
 | |
| 		     &ent.keys.val[i]);
 | |
|     }
 | |
|     ret = context->db->store(context->context, context->db, 1, &ent);
 | |
|     hdb_free_entry (context->context, &ent);
 | |
|     hdb_free_entry (context->context, &log_ent);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Call `func' for each log record in the log in `context'
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_foreach (kadm5_server_context *context,
 | |
| 		   void (*func)(u_int32_t ver,
 | |
| 				time_t timestamp,
 | |
| 				enum kadm_ops op,
 | |
| 				u_int32_t len,
 | |
| 				krb5_storage *sp))
 | |
| {
 | |
|     int fd = context->log_context.log_fd;
 | |
|     krb5_storage *sp;
 | |
| 
 | |
|     lseek (fd, 0, SEEK_SET);
 | |
|     sp = krb5_storage_from_fd (fd);
 | |
|     for (;;) {
 | |
| 	int32_t ver, timestamp, op, len;
 | |
| 
 | |
| 	if(krb5_ret_int32 (sp, &ver) != 0)
 | |
| 	    break;
 | |
| 	krb5_ret_int32 (sp, ×tamp);
 | |
| 	krb5_ret_int32 (sp, &op);
 | |
| 	krb5_ret_int32 (sp, &len);
 | |
| 	(*func)(ver, timestamp, op, len, sp);
 | |
| 	sp->seek(sp, 8, SEEK_CUR);
 | |
|     }
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Replay a record from the log
 | |
|  */
 | |
| 
 | |
| kadm5_ret_t
 | |
| kadm5_log_replay (kadm5_server_context *context,
 | |
| 		  enum kadm_ops op,
 | |
| 		  u_int32_t ver,
 | |
| 		  u_int32_t len,
 | |
| 		  krb5_storage *sp)
 | |
| {
 | |
|     switch (op) {
 | |
|     case kadm_create :
 | |
| 	return kadm5_log_replay_create (context, ver, len, sp);
 | |
|     case kadm_delete :
 | |
| 	return kadm5_log_replay_delete (context, ver, len, sp);
 | |
|     case kadm_rename :
 | |
| 	return kadm5_log_replay_rename (context, ver, len, sp);
 | |
|     case kadm_modify :
 | |
| 	return kadm5_log_replay_modify (context, ver, len, sp);
 | |
|     default :
 | |
| 	return KADM5_FAILURE;
 | |
|     }
 | |
| }
 |