1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
* Openvision retains the copyright to derivative works of
* this source code. Do *NOT* create a derivative of this
* source code before consulting with your legal department.
* Do *NOT* integrate *ANY* of this source code into another
* product before consulting with your legal department.
*
* For further information, read the top-level Openvision
* copyright which is contained in the top-level MIT Kerberos
* copyright.
*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
*/
/*
* admin/destroy/kdb5_destroy.c
*
* Copyright 1990 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.
*
*
* kdb_dest(roy): destroy the named database.
*
* This version knows about DBM format databases.
*/
#include "k5-int.h"
#include <stdio.h>
#include "com_err.h"
#include <kadm5/admin.h>
#include <kdb.h>
#include <libintl.h>
#include "kdb5_util.h"
extern int exit_status;
extern krb5_boolean dbactive;
extern kadm5_config_params global_params;
void
kdb5_destroy(argc, argv)
int argc;
char *argv[];
{
extern char *optarg;
extern int optind;
int optchar;
char *dbname;
char buf[5];
krb5_error_code retval1;
krb5_context context;
int force = 0;
char ufilename[MAX_FILENAME];
retval1 = kadm5_init_krb5_context(&context);
if( retval1 )
{
/* Solaris Kerberos */
com_err(progname, retval1, "while initializing krb5_context");
exit(1);
}
if ((retval1 = krb5_set_default_realm(context,
util_context->default_realm))) {
/* Solaris Kerberos */
com_err(progname, retval1, "while setting default realm name");
exit(1);
}
/* Solaris Kerberos */
#if 0
if (strrchr(argv[0], '/'))
argv[0] = strrchr(argv[0], '/')+1;
#endif
dbname = global_params.dbname;
optind = 1;
while ((optchar = getopt(argc, argv, "f")) != -1) {
switch(optchar) {
case 'f':
force++;
break;
case '?':
default:
usage();
return;
/*NOTREACHED*/
}
}
if (!force) {
printf(gettext("Deleting KDC database stored in '%s', "
"are you sure?\n"), dbname);
printf(gettext("(type 'yes' or 'y' to confirm)? "));
if (fgets(buf, sizeof(buf), stdin) == NULL) {
exit_status++; return;
}
if ((strncmp(buf, gettext("yes\n"),
strlen(gettext("yes\n"))) != 0) &&
(strncmp(buf, gettext("y\n"),
strlen(gettext("y\n"))) != 0)) {
printf(gettext("database not deleted !! '%s'...\n"),
dbname);
exit_status++; return;
}
printf(gettext("OK, deleting database '%s'...\n"), dbname);
}
retval1 = krb5_db_destroy(context, db5util_db_args);
/* check for a stash file and delete it if necessary */
if (global_params.stash_file == NULL) {
char stash[MAXPATHLEN+1];
extern krb5_principal master_princ;
krb5_data *realm = krb5_princ_realm(context, master_princ);
(void) strlcpy(stash, DEFAULT_KEYFILE_STUB, sizeof (stash));
/*
* realm->data is not necessarily NULL terminated so be
* careful how much data is copied here. Don't overrun
* the "stash" buffer and dont overrun the realm->data buffer,
* copy the smaller of the 2 lengths.
*/
(void) strncat(stash, realm->data,
(realm->length < (MAXPATHLEN-strlen(stash)) ? realm->length :
MAXPATHLEN-strlen(stash)));
global_params.stash_file = (char *)strdup(stash);
}
if (!access(global_params.stash_file, F_OK))
(void)unlink(global_params.stash_file);
if (retval1) {
/* Solaris Kerberos */
com_err(progname, retval1,
gettext("deleting database '%s'"), dbname);
exit_status++; return;
}
if (global_params.iprop_enabled) {
if (strlcpy(ufilename, dbname, MAX_FILENAME) >= MAX_FILENAME) {
exit_status++;
return;
}
if (strlcat(ufilename, ".ulog", MAX_FILENAME) >= MAX_FILENAME) {
exit_status++;
return;
}
(void) unlink(ufilename);
}
dbactive = FALSE;
printf(gettext("** Database '%s' destroyed.\n"), dbname);
return;
}
|