Initial import from FreeBSD RELENG_4:
[dragonfly.git] / crypto / kerberosIV / kuser / kdestroy.c
1 /*
2  * Copyright (c) 1998, 1999 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
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. 
16  *
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. 
20  *
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 
31  * SUCH DAMAGE. 
32  */
33
34 #include "kuser_locl.h"
35 #include <kafs.h>
36 #include <getarg.h>
37
38 RCSID("$Id: kdestroy.c,v 1.17 1999/12/02 16:58:36 joda Exp $");
39
40 #ifdef LEGACY_KDESTROY
41 int ticket_flag = 1;
42 int unlog_flag  = 0;
43 #else
44 int ticket_flag = -1;
45 int unlog_flag  = -1;
46 #endif
47 int quiet_flag;
48 int help_flag;
49 int version_flag;
50
51 struct getargs args[] = {
52     { "quiet",          'q',    arg_flag,       &quiet_flag, 
53       "don't print any messages" },
54     { NULL,             'f',    arg_flag,       &quiet_flag },
55     { "tickets",        't',    arg_flag,       &ticket_flag,
56     "destroy tickets" },
57     { "unlog",          'u',    arg_flag,       &unlog_flag,
58       "destroy AFS tokens" },
59     { "version",        0,      arg_flag,       &version_flag },
60     { "help",           'h',    arg_flag,       &help_flag }
61 };
62
63 int num_args = sizeof(args) / sizeof(args[0]);
64
65 static void
66 usage(int code)
67 {
68     arg_printusage(args, num_args, NULL, "");
69     exit(code);
70 }
71
72 int
73 main(int argc, char **argv)
74 {
75     int optind = 0;
76     int ret = RET_TKFIL;
77
78     set_progname(argv[0]);
79     if(getarg(args, num_args, argc, argv, &optind))
80         usage(1);
81
82     if(help_flag)
83         usage(0);
84
85     if(version_flag) {
86         print_version(NULL);
87         exit(0);
88     }
89     
90     if (unlog_flag == -1 && ticket_flag == -1)
91         unlog_flag = ticket_flag = 1;
92
93     if (ticket_flag)
94         ret = dest_tkt();
95
96     if (unlog_flag && k_hasafs())
97         k_unlog();
98
99     if (!quiet_flag) {
100         if (ret == KSUCCESS)
101             printf("Tickets destroyed.\n");
102         else if (ret == RET_TKFIL)
103             printf("No tickets to destroy.\n");
104         else {
105             printf("Tickets NOT destroyed.\n");
106         }
107     }
108
109     if (ret == KSUCCESS || ret == RET_TKFIL)
110         return 0;
111     else
112         return 1;
113 }