From: Ken Raeburn Date: Fri, 18 May 2007 05:56:13 +0000 (+0000) Subject: Remove unused files X-Git-Tag: krb5-1.7-alpha1~1108 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0be84296eaaa7432b0e13edd1e9bc5d1557befef;p=krb5.git Remove unused files git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19551 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/kadmin/dbutil/kdb5_edit.M b/src/kadmin/dbutil/kdb5_edit.M deleted file mode 100644 index 217c266b1..000000000 --- a/src/kadmin/dbutil/kdb5_edit.M +++ /dev/null @@ -1,182 +0,0 @@ -.\" admin/edit/kdb5_edit.M -.\" -.\" Copyright 1990 by the Massachusetts Institute of Technology. -.\" -.\" 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. Furthermore if you modify this software you must label -.\" your software as modified software and not distribute it in such a -.\" fashion that it might be confused with the original M.I.T. software. -.\" 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. -.\" -.\" -.TH KDB5_EDIT 8 -.SH NAME -kdb5_edit \- edit a Kerberos V5 principal database -.SH SYNOPSIS -.B kdb5_edit -[ -.B \-r -.I realm -] [ -.B \-d -.I dbname -] [ -.B \-k -.I keytype -] [ -.B \-M -.I mkeyname -] [ -.B \-e -.I enctype -] [ -.B \-m -] [ -.B \-R -.I command -] [ -.B \-s -.I script -] [ -.B \-f -.I stashfile -] -.br -.SH DESCRIPTION -.I kdb5_edit -allows an administrator to add, delete, and edit entries in a Kerberos -version 5 principal database. -After themaster key is verified, commands are to -.I kdb5_edit -are issued using one of three mechanisms. If a single command is supplied -using the -.B \-R -.I command -argument, then that single command is processed and execution ceases. If a -script file is provided using the -.B \-s -.I script -argument, then commands are read from this file until either an error occurs -or an end of file is detected. Finally, if neither a command or a script is -specified, the invoker is placed into a shell-like command loop, from which -[s]he may issue commands to modify the -database. -.PP -The -.B \-r -.I realm -option specifies the realm of the database; -by default the realm returned by -.IR krb5_default_local_realm (3) -is used. -.PP -The -.B \-d -.I dbname -option specifies the name under which the principal database is stored; -by default the database is in DEFAULT_DBM_FILE (defined in ). -.PP -The -.B \-k -.I keytype -option specifies the key type of the master key in the database; the default is -the string representation of DEFAULT_KDC_KEYTYPE (defined in ). -.PP -The -.B \-f -.I stashfile -option specifies the filename of the stashed V5 master key. The default is -defined as DEFAULT_KEYFILE_STUB in and is -typically $(prefix)/lib/krb5kdc/.k5.REALMNAME. (In previous -releases, this would have been /.k5.REALMNAME.) -.PP -The -.B \-M -.I mkeyname -option specifies the principal name for the master key in the database; -the default is KRB5_KDB_M_NAME (defined in ). -.PP -The -.B \-e -.I enctype -option specifies the encryption type to be used when placing entries in -the database; the default is the string representation of DEFAULT_KDC_ETYPE -(defined in ). -.PP -The -.B \-m -option specifies that the master database password should be fetched -from the keyboard rather than from a file on disk. -.SH AVAILABLE COMMANDS - -The following is a list of commands and their aliases that the system -administrator may use to manipulate the database: - -.IP add_new_key,ank -Add new entry to Kerberos database (prompting for password) - -.IP change_pwd_key,cpw -Change key of an entry in the Kerberos database (prompting for password) - -.IP add_rnd_key,ark -Add new entry to Kerberos database, using a random key - -.IP change_rnd_key,crk -Change key of an entry in the Kerberos database (select a new random key) - -.IP delete_entry,delent,del -Delete an entry from the database - -.IP extract_srvtab,xst,ex_st -Extract service key table - -.IP extract_v4_srvtab,xst4 -Extract service key table - -.IP modify_entry,modent -Modify entry - -.IP list_db,ldb -List database entries - -.IP dump_db,ddb -Dump database entries to a file - -.IP load_db,lddb -Load database entries from a file - -.IP set_dbname,sdbn -Change database name - -.IP enter_master_key,emk -Enter the master key for a database - -.IP change_working_directory,cwd,cd -Change working directory - -.IP print_working_direcotry,pwd -Print working directory - -.IP list_requests,lr,? -List available requests. - -.IP quit,exit,q -Exit program. - -.SH SEE ALSO -krb5(3), krb5kdc(8), ss(3) -.SH BUGS - diff --git a/src/kadmin/dbutil/util.c b/src/kadmin/dbutil/util.c deleted file mode 100644 index 246a6cb74..000000000 --- a/src/kadmin/dbutil/util.c +++ /dev/null @@ -1,158 +0,0 @@ -/* - * admin/edit/util.c - * - * Copyright 1992 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. Furthermore if you modify this software you must label - * your software as modified software and not distribute it in such a - * fashion that it might be confused with the original M.I.T. software. - * 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. - * - * Utilities for kdb5_edit. - * - * Some routines derived from code contributed by the Sandia National - * Laboratories. Sandia National Laboratories also makes no - * representations about the suitability of the modifications, or - * additions to this software for any purpose. It is provided "as is" - * without express or implied warranty. - * - */ - -#include "k5-int.h" -#include "./kdb5_edit.h" - -#ifndef HAVE_STRSTR -char * -strstr(s1, s2) -char *s1; -char *s2; -{ - int s2len; - int i; - char *temp_ptr; - - temp_ptr = s1; - for ( i = 0; i < strlen(s1); i++) { - if (memcmp(temp_ptr, s2, strlen(s2)) == 0) return(temp_ptr); - temp_ptr += 1; - } - return ((char *) 0); -} -#endif /* HAVE_STRSTR */ - -void -parse_token(token_in, must_be_first_char, num_tokens, tokens_out) -char *token_in; -int *must_be_first_char; -int *num_tokens; -char *tokens_out; -{ - int i, j; - int token_count = 0; - - i = 0; - j = 0; - - /* Eliminate Up Front Asterisks */ - *must_be_first_char = 1; - for (i = 0; token_in[i] == '*'; i++) { - *must_be_first_char = 0; - } - - if (i == strlen(token_in)) { - *num_tokens = 0; - return; - } - - /* Fill first token_out */ - token_count++; - while ((token_in[i] != '*') && (token_in[i] != '\0')) { - tokens_out[j] = token_in[i]; - j++; - i++; - } - - if (i == strlen(token_in)) { - tokens_out[j] = '\0'; - *num_tokens = token_count; - return; - } - - /* Then All Subsequent Tokens */ - while (i < strlen(token_in)) { - if (token_in[i] == '*') { - token_count++; - tokens_out[j] = '\t'; - } else { - tokens_out[j] = token_in[i]; - } - i++; - j++; - } - tokens_out[j] = '\0'; - - if (tokens_out[j - 1] == '\t') { - token_count--; - tokens_out[j - 1] = '\0'; - } - - *num_tokens = token_count; - return; -} - -int -check_for_match(search_field, must_be_first_character, chk_entry, - num_tokens, type) -int must_be_first_character; -char *search_field; -krb5_db_entry *chk_entry; -int num_tokens; -int type; -{ - char token1[256]; - char *found1; - char token2[256]; - char *found2; - char token3[256]; - char *found3; - char *local_entry; - - local_entry = chk_entry->princ->data[type].data; - - token1[0] = token2[0] = token3[0] = '\0'; - - (void) sscanf(search_field, "%s\t%s\t%s", token1, token2, token3); - - found1 = strstr(local_entry, token1); - - if (must_be_first_character && (found1 != local_entry)) return(0); - - if (found1 && (num_tokens == 1)) return(1); - - if (found1 && (num_tokens > 1)) { - found2 = strstr(local_entry, token2); - if (found2 && (found2 > found1) && (num_tokens == 2)) return(1); - } - - if ((found2 > found1) && (num_tokens == 3)) { - found3 = strstr(local_entry, token3); - if (found3 && (found3 > found2) && (found2 > found1)) return(1); - } - return(0); -} -