/* * admin/edit/dump.c * * Copyright 1990,1991 by the Massachusetts Institute of Technology. * All Rights Reserved. * * Export of this software from the United States of America may * require a specific license from the United States Government. * It is the responsibility of any person or organization contemplating * export to obtain such a license before exporting. * * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and * distribute this software and its documentation for any purpose and * without fee is hereby granted, provided that the above copyright * notice appear in all copies and that both that copyright notice and * this permission notice appear in supporting documentation, and that * the name of M.I.T. not be used in advertising or publicity pertaining * to distribution of the software without specific, written prior * permission. M.I.T. makes no representations about the suitability of * this software for any purpose. It is provided "as is" without express * or implied warranty. * * * Dump a KDC database */ #include "k5-int.h" #include "com_err.h" #include "kdb5_edit.h" #include struct dump_record { char *comerr_name; FILE *f; }; static char ld_vers[] = "kdb5_edit load_dump version 2.0\n"; krb5_encrypt_block master_encblock; extern char *current_dbname; extern krb5_boolean dbactive; extern int exit_status; extern krb5_context edit_context; void update_ok_file(); krb5_error_code dump_iterator(ptr, entry) krb5_pointer ptr; krb5_db_entry *entry; { krb5_error_code retval; struct dump_record *arg = (struct dump_record *) ptr; char *name=NULL, *mod_name=NULL; int i; if (retval = krb5_unparse_name(edit_context, entry->principal, &name)) { com_err(arg->comerr_name, retval, "while unparsing principal"); exit_status++; return retval; } if (retval = krb5_unparse_name(edit_context, entry->mod_name, &mod_name)) { free(name); com_err(arg->comerr_name, retval, "while unparsing principal"); exit_status++; return retval; } fprintf(arg->f, "%d\t%d\t%d\t%d\t%d\t%d\t%s\t%d\t", strlen(name), strlen(mod_name), entry->key.length, entry->alt_key.length, entry->salt_length, entry->alt_salt_length, name, entry->key.keytype); for (i=0; ikey.length; i++) { fprintf(arg->f, "%02x", *(entry->key.contents+i)); } fprintf(arg->f, "\t%u\t%u\t%u\t%u\t%u\t%u\t%u\t%u\t%u\t%u\t%s\t%u\t%u\t%u\t", entry->kvno, entry->max_life, entry->max_renewable_life, entry->mkvno, entry->expiration, entry->pw_expiration, entry->last_pwd_change, entry->last_success, entry->last_failed, entry->fail_auth_count, mod_name, entry->mod_date, entry->attributes, entry->salt_type); for (i=0; isalt_length; i++) { fprintf(arg->f, "%02x", *(entry->salt+i)); } fprintf(arg->f, "\t%u\t", entry->alt_key.keytype); for (i=0; ialt_key.length; i++) { fprintf(arg->f, "%02x", *(entry->alt_key.contents+i)); } fprintf(arg->f, "\t%u\t", entry->alt_salt_type); for (i=0; ialt_salt_length; i++) { fprintf(arg->f, "%02x", *(entry->alt_salt+i)); } for (i=0; i < 8; i++) { fprintf(arg->f, "\t%u", entry->expansion[i]); } fprintf(arg->f, ";\n"); free(name); free(mod_name); return 0; } /*ARGSUSED*/ void dump_db(argc, argv) int argc; char **argv; { FILE *f; struct dump_record arg; if (argc > 2) { com_err(argv[0], 0, "Usage: %s filename", argv[0]); exit_status++; return; } if (!dbactive) { com_err(argv[0], 0, Err_no_database); exit_status++; return; } if (argc == 2) { /* * Make sure that we don't open and truncate on the fopen, * since that may hose an on-going kprop process. * * We could also control this by opening for read and * write, doing an flock with LOCK_EX, and then * truncating the file once we have gotten the lock, * but that would involve more OS dependancies than I * want to get into. */ unlink(argv[1]); if (!(f = fopen(argv[1], "w"))) { com_err(argv[0], errno, "While opening file %s for writing", argv[1]); exit_status++; return; } } else { f = stdout; } fputs(ld_vers, f); arg.comerr_name = argv[0]; arg.f = f; (void) krb5_db_iterate(edit_context, dump_iterator, (krb5_pointer) &arg); if (argc == 2) fclose(f); if (argv[1]) update_ok_file(argv[1]); } void update_ok_file (file_name) char *file_name; { /* handle slave locking/failure stuff */ char *file_ok; int fd; static char ok[]=".dump_ok"; if ((file_ok = (char *)malloc(strlen(file_name) + strlen(ok) + 1)) == NULL) { com_err(progname, ENOMEM, "while allocating filename for update_ok_file"); exit_status++; return; } strcpy(file_ok, file_name); strcat(file_ok, ok); if ((fd = open(file_ok, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0) { com_err(progname, errno, "while creating 'ok' file, '%s'", file_ok); exit_status++; free(file_ok); return; } if (write(fd, "", 1) != 1) { com_err(progname, errno, "while writing to 'ok' file, '%s'", file_ok); exit_status++; free(file_ok); return; } free(file_ok); close(fd); return; } /* * Reads a name (actually, any string) of the specified length, * containing any characters, and the character following the string. * Returns a negative number if the specified number of characters * can't be read or if the character following them isn't a tab. * * If successful, adds a null to the end of the string and returns the * number of newlines read into it (usually 0). * * There must be enough space in the passed-in buffer for len * characters followed by a null. */ int read_name(f, buf, len) FILE *f; char *buf; int len; { char *ptr; int c; int newlines = 0; for (ptr = buf; (ptr - buf < len) && ((c = fgetc(f)) >= 0); ptr++) { *ptr = c; if (c == '\n') newlines++; } if (ptr - buf < len) return -1; if ((c = fgetc(f)) < 0) return -1; if (c != '\t') return -1; *ptr = '\0'; return newlines; } void load_db(argc, argv) int argc; char **argv; { FILE *f; krb5_db_entry entry; krb5_error_code retval; int name_len, mod_name_len, key_len, alt_key_len; int salt_len, alt_salt_len; int i, one; char *name, *mod_name; int name_ret; char *new_dbname; int ch; int load_error = 0; int lineno = 0; int stype; int tmp1, tmp2, tmp3; char buf[64]; /* Must be longer than ld_vers */ if (argc != 3) { com_err(argv[0], 0, "Usage: %s filename dbname", argv[0]); exit_status++; return; } if (!(new_dbname = malloc(strlen(argv[2])+2))) { com_err(argv[0], 0, "No room to allocate new database name!"); exit_status++; return; } strcpy(new_dbname, argv[2]); strcat(new_dbname, "~"); if (retval = krb5_db_create(edit_context, new_dbname)) { com_err(argv[0], retval, "while creating database '%s'", new_dbname); exit_status++; return; } if (dbactive) { if ((retval = krb5_db_fini(edit_context)) && retval != KRB5_KDB_DBNOTINITED) { com_err(argv[0], retval, "while closing previous database"); exit_status++; return; } } if (retval = krb5_db_set_name(edit_context, new_dbname)) { com_err(argv[0], retval, "while setting active database to '%s'", new_dbname ); exit(1); } if (retval = krb5_db_init(edit_context)) { com_err(argv[0], retval, "while initializing database %s", new_dbname ); exit(1); } if (!(f = fopen(argv[1], "r"))) { com_err(argv[0], errno, "While opening file %s for reading", argv[1]); exit_status++; return; } fgets(buf, sizeof(buf), f); if (strcmp(buf, ld_vers)) { com_err(argv[0], 0, "Bad dump file version"); load_error++; goto error_out; } lineno++; for (;;) { int nitems; lineno++; memset((char *)&entry, 0, sizeof(entry)); nitems = fscanf(f, "%d\t%d\t%d\t%d\t%d\t%d\t", &name_len, &mod_name_len, &key_len, &alt_key_len, &salt_len, &alt_salt_len); if (nitems == EOF) break; if (nitems != 6) { fprintf(stderr, "Couldn't parse line #%d\n", lineno); load_error++; break; } if (!(name = malloc(name_len+1))) { com_err(argv[0], errno, "While allocating space for name"); load_error++; goto cleanup; } if (!(mod_name = malloc(mod_name_len+1))) { com_err(argv[0], errno, "While allocating space for mod_name"); load_error++; goto cleanup; } entry.key.length = key_len; if (key_len) { if (!(entry.key.contents = (krb5_octet *) malloc(key_len+1))) { com_err(argv[0], errno, "While allocating space for the key"); load_error++; goto cleanup; } } entry.alt_key.length = alt_key_len; if (alt_key_len) { if (!(entry.alt_key.contents = (krb5_octet *) malloc(alt_key_len+1))) { com_err(argv[0], errno, "While allocating space for alt_key"); load_error++; goto cleanup; } } entry.salt_length = salt_len; if (salt_len) { if (!(entry.salt = (krb5_octet *) malloc(salt_len+1))) { com_err(argv[0], errno, "While allocating space for the salt"); load_error++; goto cleanup; } } entry.alt_salt_length = alt_salt_len; if (alt_salt_len) { if (!(entry.alt_salt = (krb5_octet *) malloc(alt_salt_len+1))) { com_err(argv[0], errno, "While allocating space for the alt_salt"); load_error++; goto cleanup; } } if ((name_ret = read_name(f, name, name_len)) < 0) { fprintf(stderr, "Couldn't parse line #%d\n", lineno); load_error++; break; } lineno += name_ret; if (fscanf(f, "%d\t", &tmp1) != 1) { fprintf(stderr, "Couldn't parse line #%d\n", lineno); load_error++; break; } /* keytype is probably a short, but might not be. To avoid problems with scanf, read into a variable of known type then copy the value. */ entry.key.keytype = tmp1; for (i=0; i