2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 /* These routines provide administrative tools for managing the AuthServer.
11 There is an interactive routine that can be used to examine the database and
12 make small changes as well as subroutines to permit specialized programs to
13 update the database, change the server passwords, etc. */
15 #include <afsconfig.h>
16 #include <afs/param.h>
22 #include <afs/debug.h>
26 /* These two needed for rxgen output to work */
27 #include <sys/types.h>
38 #include <afs/cellconfig.h>
40 #include <afs/com_err.h>
41 #include <afs/afsutil.h>
47 #define CMD_PARSER_AMBIG_FIX 1 /* allow ambiguous aliases */
49 #define KA_SIXHOURS (6*3600)
51 static struct ubik_client *conn;
52 static char cell[MAXKTCREALMLEN] = "";
53 static char whoami[32];
54 static char passwd[BUFSIZ];
55 static char myName[510]; /* almost like whoami save with path and without : */
59 static char **zero_argv;
60 afs_uint32 ka_islocked();
69 code = ka_ExpandCell(0, cell, 0 /*local */ );
71 com_err(whoami, code, "Can't expand cell name");
76 /* These are the command operation procedures. */
79 DumpUser(char *user, char *arock, int showadmin, int showkey, char *inst)
81 char name[MAXKTCNAMELEN];
82 char instance[MAXKTCNAMELEN];
85 char bob[KA_TIMESTR_LEN];
87 struct kaentryinfo tentry;
89 code = ka_ParseLoginName(user, name, instance, 0);
91 com_err(whoami, code, "parsing user's name '%s'", user);
98 ubik_Call(KAM_GetEntry, conn, 0, name, inst, KAMAJORVERSION, &tentry);
100 com_err(whoami, code, "getting information for %s.%s", name, inst);
103 if (tentry.minor_version != KAMINORVERSION)
104 printf("Minor version number mismatch: got %d, expected %d\n",
105 tentry.minor_version, KAMINORVERSION);
106 if (showadmin && !(tentry.flags & KAFADMIN))
108 ka_PrintUserID("\nUser data for ", name, inst, "");
111 #define NEWPREFIX "+"
112 if (tentry.flags & KAFADMIN) {
113 printf("%sADMIN", prefix);
116 if (tentry.flags & KAFNOTGS) {
117 printf("%sNOTGS", prefix);
120 if (tentry.flags & KAFNOCPW) {
121 printf("%sNOCPW", prefix);
124 if (tentry.flags & KAFNOSEAL) {
125 printf("%sNOSEAL", prefix);
128 if (tentry.flags & KAFNEWASSOC) {
129 printf("%sNEWASSOC", prefix);
132 if (tentry.flags & KAFASSOCROOT) {
133 printf("%sASSOCROOT", prefix);
136 if (tentry.flags & KAFASSOC) {
137 printf("%sASSOC", prefix);
140 if (tentry.user_expiration <= now) {
141 printf("%sexpired", prefix);
144 if (strcmp(prefix, NEWPREFIX) == 0)
149 if ((!ka_KeyIsZero((char *)&tentry.key, sizeof(tentry.key))) && (showkey)) {
150 printf(" key (%d):", tentry.key_version);
151 ka_PrintBytes((char *)&tentry.key, sizeof(tentry.key));
153 if (tentry.keyCheckSum == 0)
154 printf(" key version is %d", tentry.key_version);
156 printf(" key (%d) cksum is %u", tentry.key_version,
159 ka_timestr(tentry.change_password_time, bob, KA_TIMESTR_LEN);
160 printf(", last cpw: %s\n", bob);
161 if (!tentry.misc_auth_bytes) {
162 printf(" password will never expire.\n");
164 (" An unlimited number of unsuccessful authentications is permitted.\n");
166 unsigned char misc_stuff[4];
169 temp = tentry.misc_auth_bytes;
171 temp = ntohl(tentry.misc_auth_bytes);
173 unpack_long(temp, misc_stuff);
175 if (!misc_stuff[0]) {
176 printf(" password will never expire.\n");
178 ka_timestr((tentry.change_password_time +
179 misc_stuff[0] * 24 * 60 * 60), bob, KA_TIMESTR_LEN);
180 printf(" password will expire: %s\n", bob);
185 (" An unlimited number of unsuccessful authentications is permitted.\n");
188 (" %d consecutive unsuccessful authentications are permitted.\n",
192 printf(" The lock time for this user is not limited.\n");
194 printf(" The lock time for this user is %4.1f minutes.\n",
195 (float)((unsigned int)misc_stuff[3] << 9) / 60.0);
197 if (!(misc_stuff[1] & KA_ISLOCKED)
198 || !ka_islocked(name, instance, &temp))
199 printf(" User is not locked.\n");
200 else if (temp == (afs_uint32) (-1L))
201 printf(" User is locked forever.\n");
203 ka_timestr(temp, bob, KA_TIMESTR_LEN);
204 printf(" User is locked until %s\n", bob);
210 char exp[KA_TIMESTR_LEN];
211 ka_timestr(tentry.user_expiration, exp, KA_TIMESTR_LEN);
212 if (tentry.user_expiration < now)
213 printf(" DISABLED entry at %s.", exp);
214 else if (tentry.user_expiration == NEVERDATE)
215 printf(" entry never expires.");
217 printf(" entry expires on %s.", exp);
219 printf(" Max ticket lifetime %.2f hours.\n",
220 tentry.max_ticket_lifetime / 3600.0);
221 ka_timestr(tentry.modification_time, bob, KA_TIMESTR_LEN);
222 printf(" last mod on %s by ", bob);
223 ka_PrintUserID("", tentry.modification_user.name,
224 tentry.modification_user.instance, "\n");
225 if ((tentry.reserved3 & 0xffff0000) == 0x12340000) {
226 int short reused = (short)tentry.reserved3;
228 printf(" permit password reuse\n");
230 printf(" don't permit password reuse\n");
237 ListUsers(struct cmd_syndesc *as, char *arock)
242 afs_int32 next_index;
243 int code, all = 0, showa = 0;
244 int showkey = (as->parms[2].items != NULL);
246 if (as->parms[0].items)
248 if (as->parms[1].items) {
252 for (index = 0; 1; index = next_index) {
254 ubik_Call(KAM_ListEntry, conn, 0, index, &next_index, &count,
257 com_err(whoami, code, "calling KAM_ListEntry");
263 printf("next_index (%d) is negative: ", next_index);
264 if (strlen(name.name) == 0)
265 printf("name is zero length: ");
267 DumpUser(name.name, NULL, showa, showkey, name.instance);
269 ka_PrintUserID("", name.name, name.instance, "\n");
276 ExamineUser(struct cmd_syndesc *as, char *arock)
278 int showkey = (as->parms[1].items != NULL);
279 return DumpUser(as->parms[0].items->data, arock, 0, showkey, NULL);
289 handle_errors(int code, /* error code to handle */
290 struct OKerrors OKlist[], /* list of errors & messages that should be ignored */
292 { /* set this if we should retry, clear otherwise */
295 for (i = 0; OKlist[i].code; i++) {
296 if (OKlist[i].code == code) {
297 printf("%s\n", OKlist[i].msg);
298 *persist = 0; /* we're done */
303 printf(" : [%s] %s", error_table_name(code), error_message(code));
306 printf(", wait one second\n");
310 case RX_CALL_TIMEOUT:
311 printf(" (retrying)\n");
316 *persist = 0; /* don't retry these errors */
321 CreateUser(struct cmd_syndesc *as, char *arock)
324 char name[MAXKTCNAMELEN];
325 char instance[MAXKTCNAMELEN];
326 struct ktc_encryptionKey key;
329 struct OKerrors OKlist[2];
332 code = ka_ParseLoginName(as->parms[0].items->data, name, instance, 0);
334 com_err(whoami, code, "parsing user's name '%s'",
335 as->parms[0].items->data);
338 ka_StringToKey(as->parms[1].items->data, cell, &key);
341 code = ubik_Call(KAM_CreateUser, conn, 0, name, instance, key);
344 ka_PrintUserID("Creating user ", name, instance, " ");
345 code = handle_errors(code, OKlist, &persist);
351 DeleteUser(struct cmd_syndesc *as, char *arock)
354 char name[MAXKTCNAMELEN];
355 char instance[MAXKTCNAMELEN];
358 struct OKerrors OKlist[2];
360 code = ka_ParseLoginName(as->parms[0].items->data, name, instance, 0);
362 com_err(whoami, code, "parsing user's name '%s'",
363 as->parms[0].items->data);
368 code = ubik_Call(KAM_DeleteUser, conn, 0, name, instance);
371 ka_PrintUserID("Deleting user ", name, instance, " ");
372 code = handle_errors(code, OKlist, &persist);
378 read_time_interval(char *str, afs_int32 * seconds)
384 str = strncpy(buf, str, sizeof(buf));
385 s = strchr(str, ':');
389 *s++ = '\0'; /* separate hours and minutes */
390 sec = atoi(str) * 3600 + atoi(s) * 60;
397 parse_flags(char *name, char *inst, char *str, afs_int32 * flags)
399 struct kaentryinfo tentry;
405 int addop; /* 1=add bit; 0=remove bit */
409 str = lcstring(bitspec, str, sizeof(bitspec));
411 if (strncmp(str, "0x", 2) == 0) /* 0x => hex */
412 sscanf(str, "0x%lx", &f);
413 else if (*str == '0') /* assume octal */
414 sscanf(str, "%lo", &f);
415 else /* just assume hex */
416 sscanf(str, "%lx", &f);
423 if (strchr("+-", *str))
424 addop = (*str++ == '+');
425 else if (*str == '_') {
431 ubik_Call(KAM_GetEntry, conn, 0, name, inst, KAMAJORVERSION,
434 com_err(whoami, code,
435 "could get current flag value for %s.%s", name, inst);
452 if (strcmp(bit, "admin") == 0)
454 else if (strcmp(bit, "noadmin") == 0)
455 flag = KAFADMIN, addop = !addop;
456 else if (strcmp(bit, "notgs") == 0)
458 else if (strcmp(bit, "tgs") == 0)
459 flag = KAFNOTGS, addop = !addop;
460 else if (strcmp(bit, "noseal") == 0)
462 else if (strcmp(bit, "seal") == 0)
463 flag = KAFNOSEAL, addop = !addop;
464 else if (strcmp(bit, "nocpw") == 0)
466 else if (strcmp(bit, "cpw") == 0)
467 flag = KAFNOCPW, addop = !addop;
468 else if (strcmp(bit, "newassoc") == 0)
470 else if (strcmp(bit, "nonewassoc") == 0)
471 flag = KAFNEWASSOC, addop = !addop;
474 ("Illegal bit name: %s; choices are: [no]admin, [no]tgs, [no]seal, [no]cpw\n",
487 addop = 1; /* get next op */
488 else if ((*str == '-') || (*str == '_'))
491 printf("Illegal combination operator: %c\n", *str);
497 *flags = (f & KAF_SETTABLE_FLAGS) | KAFNORMAL;
501 #define seriouserror(code) ((code <0) || ((code != UNOSERVERS) && (code != UNOQUORUM) && code != UNOTSYNC))
503 /* return MAXLONG if locked forever */
505 ka_islocked(char *name, char *instance, afs_uint32 * when)
515 ubik_CallIter(KAM_LockStatus, conn, UPUBIKONLY, &count, name,
516 instance, &tempwhen, /*spares */ 0, 0, 0,
517 0, 0, 0, 0, 0, 0, 0, 0,
520 if (seriouserror(code))
521 com_err(whoami, code, "");
522 } else if (tempwhen) { /* user is locked */
523 if (!*when || tempwhen < *when) {
527 } else /* ! tempwhen ==> user is not locked */
530 } while (code != UNOSERVERS);
536 Unlock(struct cmd_syndesc *as, char *arock)
538 afs_int32 code, rcode = 0;
541 char name[MAXKTCNAMELEN];
542 char instance[MAXKTCNAMELEN];
544 code = ka_ParseLoginName(as->parms[0].items->data, name, instance, 0);
546 com_err(whoami, code, "parsing user's name '%s'",
547 as->parms[0].items->data);
553 code = ubik_CallIter(KAM_Unlock, conn, 0, &count, name, instance,
554 /*spares */ 0, 0, 0, 0);
555 if (code && (code != UNOSERVERS)) {
557 if (conn && conn->conns[count - 1]
558 && conn->conns[count - 1]->peer) {
559 server = conn->conns[count - 1]->peer->host;
561 com_err(whoami, code,
562 "so %s.%s may still be locked (on server %d.%d.%d.%d)",
563 name, instance, ((server >> 24) & 0xFF),
564 ((server >> 16) & 0xFF), ((server >> 8) & 0xFF),
571 } while (code != UNOSERVERS);
577 SetFields(struct cmd_syndesc *as, char *arock)
580 char name[MAXKTCNAMELEN];
581 char instance[MAXKTCNAMELEN];
584 afs_int32 lifetime = 0;
585 afs_int32 maxAssociates = -1;
586 afs_int32 pwexpiry = 0;
587 afs_int32 was_spare = 0;
588 char misc_auth_bytes[4];
591 code = ka_ParseLoginName(as->parms[0].items->data, name, instance, 0);
593 com_err(whoami, code, "parsing user's name '%s'",
594 as->parms[0].items->data);
598 if (as->parms[1].items) {
599 code = parse_flags(name, instance, as->parms[1].items->data, &flags);
602 ("Illegal flag specification: %s, should be of the form <'='|'+'|'-'|'_'>bitname{<'+'|'-'>bitname}*\n",
603 as->parms[1].items->data);
607 if (as->parms[2].items) {
609 char *s = strncpy(buf, as->parms[2].items->data, sizeof(buf));
610 code = ktime_DateToInt32(s, &expiration);
612 printf("Illegal time format %s: %s\n", as->parms[2].items->data,
613 ktime_GetDateUsage());
616 if (expiration == 0) {
617 fprintf(stderr, "Expiration time must be after (about) 1970.\n");
620 if (expiration < time(0)) {
622 "Warning: expiration being set into the past, account will be disabled.\n");
628 if (as->parms[3].items) {
629 code = read_time_interval(as->parms[3].items->data, &lifetime);
634 /* no point in doing this any sooner than necessary */
635 for (i = 0; i < 4; misc_auth_bytes[i++] = 0);
637 if (as->parms[4].items) {
638 if (util_isint(as->parms[4].items->data))
639 pwexpiry = atoi(as->parms[4].items->data);
642 "Password lifetime specified must be a non-negative decimal integer.\n");
645 if (pwexpiry < 0 || pwexpiry > 254) {
647 "Password lifetime range must be [0..254] days.\n");
648 fprintf(stderr, "Zero represents an unlimited lifetime.\n");
651 misc_auth_bytes[0] = pwexpiry + 1;
655 if (as->parms[5].items) {
657 reuse = (as->parms[5].items->data);
659 if (!strcmp(reuse, "yes")) {
660 misc_auth_bytes[1] = KA_REUSEPW;
661 } else if (strcmp(reuse, "no")) {
663 "must specify \"yes\" or \"no\": \"yes\" assumed\n");
664 misc_auth_bytes[1] = KA_REUSEPW;
666 misc_auth_bytes[1] = KA_NOREUSEPW;
670 if (as->parms[6].items) {
674 if (util_isint(as->parms[6].items->data)
675 && ((nfailures = atoi(as->parms[6].items->data)) < 255)) {
676 misc_auth_bytes[2] = nfailures + 1;
678 fprintf(stderr, "Failure limit must be in [0..254].\n");
679 fprintf(stderr, "Zero represents unlimited login attempts.\n");
684 if (as->parms[7].items) {
685 int locktime, hrs, mins;
689 s = as->parms[7].items->data;
691 sscanf(s, "%d:%d", &hrs, &mins);
693 sscanf(s, "%d", &mins);
695 locktime = hrs * 60 + mins;
696 if (hrs < 0 || hrs > 36 || mins < 0) {
698 "Lockout times must be either minutes or hh:mm.\n");
699 fprintf(stderr, "Lockout times must be less than 36 hours.\n");
701 } else if (locktime > 36 * 60) {
703 "Lockout times must be either minutes or hh:mm.\n");
704 fprintf(stderr, "Lockout times must be less than 36 hours.\n");
706 "Continuing with lock time of exactly 36 hours...\n");
709 locktime = (locktime * 60 + 511) >> 9; /* ceil(l*60/512) */
710 misc_auth_bytes[3] = locktime + 1; /* will be 1 if user said 0 */
713 if (as->parms[8].items) {
714 maxAssociates = atoi(as->parms[6].items->data);
715 if (maxAssociates < 0) {
716 printf("Illegal maximum number of associates\n");
721 was_spare = pack_long(misc_auth_bytes);
723 if (was_spare || flags || expiration || lifetime || (maxAssociates >= 0))
725 ubik_Call(KAM_SetFields, conn, 0, name, instance, flags,
726 expiration, lifetime, maxAssociates, was_spare,
729 printf("Must specify one of the optional parameters\n");
733 com_err(whoami, code, "calling KAM_SetFields for %s.%s", name,
739 StringToKey(struct cmd_syndesc *as, char *arock)
742 char realm[MAXKTCREALMLEN];
743 struct ktc_encryptionKey key;
745 if (as->parms[1].items) {
746 code = ka_ExpandCell(as->parms[1].items->data, realm, 0 /*local */ );
748 com_err(whoami, code,
749 "expanding %s as cell name, attempting to continue",
750 as->parms[1].items->data);
752 ucstring(realm, realm, sizeof(realm));
754 if (code = DefaultCell())
756 ucstring(realm, cell, sizeof(realm));
758 ka_StringToKey(as->parms[0].items->data, realm, &key);
760 printf("Converting %s in realm '%s' yields key='",
761 as->parms[0].items->data, realm);
762 ka_PrintBytes((char *)&key, sizeof(key));
765 des_string_to_key(as->parms[0].items->data, &key);
767 printf("Converting %s with the DES string to key yields key='",
768 as->parms[0].items->data);
769 ka_PrintBytes((char *)&key, sizeof(key));
776 SetPassword(struct cmd_syndesc *as, char *arock)
779 char name[MAXKTCNAMELEN];
780 char instance[MAXKTCNAMELEN];
781 char realm[MAXKTCREALMLEN];
782 struct ktc_encryptionKey key;
785 code = ka_ParseLoginName(as->parms[0].items->data, name, instance, realm);
787 com_err(whoami, code, "parsing user's name '%s'",
788 as->parms[0].items->data);
792 if (strlen(realm) == 0)
793 ucstring(realm, cell, sizeof(realm));
795 if (as->parms[1].items && as->parms[2].items) {
796 printf("Can't specify both a password and a key\n");
798 } else if (as->parms[1].items) {
799 (void)init_child(myName);
800 (void)give_to_child(passwd); /* old password */
801 code = password_bad(as->parms[1].items->data);
802 (void)terminate_child();
805 ka_StringToKey(as->parms[1].items->data, realm, &key);
806 } else if (as->parms[2].items) {
807 if (ka_ReadBytes(as->parms[2].items->data, (char *)&key, sizeof(key))
809 printf("Key must be 8 bytes: '%s' was too long\n",
810 as->parms[2].items->data);
814 printf("Must specify new password or key\n");
819 if (as->parms[3].items)
820 sscanf(as->parms[3].items->data, "%d", &kvno);
822 #if defined(AFS_S390_LINUX20_ENV) && !defined(AFS_S390X_LINUX20_ENV)
823 code = ubik_Call(KAM_SetPassword, conn, 0, name, instance, kvno, 0, key);
825 code = ubik_Call(KAM_SetPassword, conn, 0, name, instance, kvno, key);
828 com_err(whoami, code, "so can't set password for %s.%s", name,
833 #define PrintPrincipal(p,n,l) \
834 PrintName((p)->name, (p)->instance, (p)->cell, l, n)
837 PrintName(char *name, char *inst, char *acell, int buflen, char *buf)
840 int left; /* if ConvertBytes stops early */
849 left = ka_ConvertBytes(buf, buflen, name, strlen(name));
853 com_err(whoami, code, "PrintName: principal name was '%s'.'%s'@'%s'",
860 if (nlen + len + 1 >= buflen)
863 left = ka_ConvertBytes(buf + nlen, buflen - nlen, inst, len);
871 char *lcell = ka_LocalCell();
874 if (strcmp(acell, lcell) != 0) {
875 /* only append cell if not the local cell */
876 if (nlen + len + 1 >= buflen)
879 left = ka_ConvertBytes(buf + nlen, buflen - nlen, acell, len);
888 #define PrintedPrincipal(p) PrintedName ((p)->name, (p)->instance, (p)->cell)
890 /* PrintedName - returned a pointer to a static string in which the formated
891 * name has been stored. */
894 PrintedName(char *name, char *inst, char *cell)
896 static char printedName[128];
898 code = PrintName(name, inst, cell, sizeof(printedName), printedName);
902 strncpy(printedName, name, sizeof(printedName));
903 printedName[sizeof(printedName) - 8] = 0;
904 strcat(printedName, "<error>");
910 ListTicket(struct ktc_principal *server, int verbose)
913 struct ktc_token token; /* the token we're printing */
914 struct ktc_principal client;
915 char UserName[sizeof(struct ktc_principal)];
916 char ServerName[sizeof(struct ktc_principal)];
917 afs_int32 now = time(0);
918 char bob[KA_TIMESTR_LEN];
920 /* get the ticket info itself */
921 code = ktc_GetToken(server, &token, sizeof(token), &client);
923 com_err(whoami, code, "failed to get token info for server %s",
924 PrintedPrincipal(server));
927 code = PrintPrincipal(&client, UserName, sizeof(UserName));
930 /* spaces are printed as "\040" */
931 if (UserName[0] == 0)
933 else if (strncmp(UserName, "AFS\\040ID\\040", 13) == 0) {
934 printf("User's (AFS ID %s) tokens", UserName + 13);
935 } else if (strncmp(UserName, "Unix\\040UID\\040", 15) == 0) {
938 printf("User %s's tokens", UserName);
940 code = PrintPrincipal(server, ServerName, sizeof(ServerName));
943 printf(" for %s ", ServerName);
945 if (token.startTime > now) {
946 ka_timestr(token.startTime, bob, KA_TIMESTR_LEN);
947 printf("[>> POSTDATED 'till %s <<]", bob);
950 if (token.endTime <= now)
951 printf("[>> Expired <<]\n");
953 ka_timestr(token.endTime, bob, KA_TIMESTR_LEN);
954 printf("[Expires %s]\n", bob);
957 printf("SessionKey: ");
958 ka_PrintBytes((char *)&token.sessionKey, sizeof(token.sessionKey));
959 printf("\nTicket (kvno = %d, len = %d): ", token.kvno,
961 ka_PrintBytes((char *)token.ticket, token.ticketLen);
968 GetTicket(struct cmd_syndesc *as, char *arock)
971 struct ktc_principal server;
972 struct ktc_token token;
973 afs_int32 life = KA_SIXHOURS;
975 if (as->parms[1].items) {
976 code = read_time_interval(as->parms[1].items->data, &life);
981 ka_ParseLoginName(as->parms[0].items->data, server.name,
982 server.instance, server.cell);
984 com_err(whoami, code, "parsing user's name '%s'",
985 as->parms[0].items->data);
988 if (server.cell[0] == 0) {
989 if (code = DefaultCell())
991 strcpy(server.cell, cell);
993 code = ka_ExpandCell(server.cell, server.cell, 0 /*local */ );
995 com_err(whoami, code, "Can't expand cell name");
1000 token.ticketLen = 0; /* in case there are no tokens */
1002 ka_GetServerToken(server.name, server.instance, server.cell, life,
1003 &token, /*new */ 1, /*dosetpag */ 0);
1005 com_err(whoami, code, "getting ticket for %s",
1006 PrintedPrincipal(&server));
1008 code = ListTicket(&server, /*verbose */ 1);
1014 GetPassword(struct cmd_syndesc *as, char *arock)
1017 char name[MAXKTCNAMELEN];
1018 struct ktc_encryptionKey key;
1019 static struct ubik_client *lpbkConn = 0;
1021 /* no instance allowed */
1022 code = ka_ParseLoginName(as->parms[0].items->data, name, 0, 0);
1025 com_err(whoami, code,
1026 "getting %s's password via loopback connection to GetPassword",
1028 /* if we got a timeout, print a clarification, too */
1031 "%s: please note that this command must be run locally on a database server machine.\n",
1036 if (lpbkConn == 0) {
1037 struct rx_connection *conns[2];
1038 struct rx_securityClass *sc;
1039 int si; /* security class index */
1044 sc = rxnull_NewClientSecurityObject();
1045 si = RX_SCINDEX_NULL;
1047 rx_NewConnection(htonl(INADDR_LOOPBACK), htons(AFSCONF_KAUTHPORT),
1048 KA_MAINTENANCE_SERVICE, sc, si);
1050 code = ubik_ClientInit(conns, &lpbkConn);
1054 code = ubik_Call(KAM_GetPassword, lpbkConn, 0, name, &key);
1055 /* Lets close down the ubik_Client connection now */
1056 ubik_ClientDestroy(lpbkConn);
1060 ka_PrintBytes((char *)&key, sizeof(key));
1066 GetRandomKey(struct cmd_syndesc *as, char *arock)
1069 struct ktc_encryptionKey key;
1071 code = ubik_Call(KAM_GetRandomKey, conn, 0, &key);
1073 com_err(whoami, code, "so can't get random key");
1077 ka_PrintBytes((char *)&key, sizeof(key));
1079 for (i = 0; i < sizeof(key); i++) {
1080 printf("%0.2x", ((char *)&key)[i] & 0xff);
1092 Statistics(struct cmd_syndesc *as, char *arock)
1098 char bob[KA_TIMESTR_LEN];
1101 ubik_Call(KAM_GetStats, conn, 0, KAMAJORVERSION, &admins, &statics,
1104 printf("call to GetStats failed: %s\n", ka_ErrorString(code));
1107 if (statics.minor_version != KAMINORVERSION)
1108 printf("Minor version number mismatch: got %d, expected %d\n",
1109 statics.minor_version, KAMINORVERSION);
1110 printf("%d allocs, %d frees, %d password changes\n", statics.allocs,
1111 statics.frees, statics.cpws);
1112 printf("Hash table utilization = %f%%\n",
1113 (double)dynamics.hashTableUtilization / 100.0);
1114 ka_timestr(dynamics.start_time, bob, KA_TIMESTR_LEN);
1115 printf("From host %lx started at %s:\n", dynamics.host, bob);
1117 #define print_stat(name) if (dynamics.name.requests) printf (" of %d requests for %s, %d were aborted.\n", dynamics.name.requests, # name, dynamics.name.aborts)
1118 print_stat(Authenticate);
1119 print_stat(ChangePassword);
1120 print_stat(GetTicket);
1121 print_stat(CreateUser);
1122 print_stat(SetPassword);
1123 print_stat(SetFields);
1124 print_stat(DeleteUser);
1125 print_stat(GetEntry);
1126 print_stat(ListEntry);
1127 print_stat(GetStats);
1128 print_stat(GetPassword);
1129 print_stat(GetRandomKey);
1131 print_stat(UAuthenticate);
1132 print_stat(UGetTicket);
1134 #if (KAMAJORVERSION>5)
1135 print cpu stats printf("%d string checks\n", dynamics.string_checks);
1137 printf("Used %.3f seconds of CPU time.\n",
1138 dynamics.string_checks / 1000.0);
1140 printf("%d admin accounts\n", admins);
1145 DebugInfo(struct cmd_syndesc *as, char *arock)
1148 struct ka_debugInfo info;
1152 char bob[KA_TIMESTR_LEN];
1155 if (as->parms[0].items) {
1156 struct ubik_client *iConn;
1158 ka_SingleServerConn(cell, as->parms[0].items->data,
1159 KA_MAINTENANCE_SERVICE, 0, &iConn);
1161 struct afsconf_cell cellinfo;
1163 com_err(whoami, code, "couldn't find host %s in cell %s",
1164 as->parms[0].items->data, cell);
1165 code = ka_GetServers(cell, &cellinfo);
1167 com_err(whoami, code, "getting servers in cell %s", cell);
1169 printf("Servers in cell %s, are:\n", cell);
1170 for (i = 0; i < cellinfo.numServers; i++)
1171 printf(" %s\n", cellinfo.hostName[i]);
1175 code = ubik_Call(KAM_Debug, iConn, 0, KAMAJORVERSION, 0, &info);
1176 ubik_ClientDestroy(iConn);
1178 code = ubik_Call(KAM_Debug, conn, 0, KAMAJORVERSION, 0, &info);
1181 com_err(whoami, code, "call to Debug failed");
1186 if (info.minorVersion != KAMINORVERSION)
1187 printf("Minor version number mismatch: got %d, expected %d\n",
1188 info.minorVersion, KAMINORVERSION);
1191 #if (KAMAJORVERSION>5)
1198 timeOffset = -timeOffset;
1199 if (timeOffset > 60) {
1201 ("WARNING: Large server client clock skew: %d seconds. Call itself took %d seconds.\n",
1202 timeOffset, now - start);
1204 ka_timestr(info.startTime, bob, KA_TIMESTR_LEN);
1205 printf("From host %lx started %sat %s:\n", info.host,
1206 (info.noAuth ? "w/o authorization " : ""), bob);
1207 ka_timestr(info.lastTrans, bob, KA_TIMESTR_LEN);
1208 printf("Last trans was %s at %s\n", info.lastOperation, bob);
1209 ka_timestr(info.dbHeaderRead, bob, KA_TIMESTR_LEN);
1210 printf("Header last read %s.\n", bob);
1211 printf("db version=%d, keyVersion=%d, key cache version=%d\n",
1212 info.dbVersion, info.dbSpecialKeysVersion, info.kcVersion);
1213 printf("db ptrs: free %d, eof %d, kvno %d.\n", info.dbFreePtr,
1214 info.dbEofPtr, info.dbKvnoPtr);
1215 ka_timestr(info.nextAutoCPW, bob, KA_TIMESTR_LEN);
1216 printf("Next autoCPW at %s or in %d updates.\n", bob,
1217 info.updatesRemaining);
1218 if (info.cheader_lock || info.keycache_lock)
1219 printf("locks: cheader %08lx, keycache %08lx\n", info.cheader_lock,
1220 info.keycache_lock);
1221 printf("Last authentication for %s, last admin user was %s\n",
1222 info.lastAuth, info.lastAdmin);
1223 printf("Last TGS op was a %s ticket was for %s\n", info.lastTGSServer,
1225 printf("Last UDP TGS was a %s ticket for %s. UDP Authenticate for %s\n",
1226 info.lastUTGSServer, info.lastUTGS, info.lastUAuth);
1227 printf("key cache size %d, used %d.\n", info.kcSize, info.kcUsed);
1228 if (info.kcUsed > KADEBUGKCINFOSIZE) {
1229 printf("insufficient room to return all key cache entries!\n");
1230 info.kcUsed = KADEBUGKCINFOSIZE;
1232 for (i = 0; i < info.kcUsed; i++)
1233 ka_timestr(info.kcInfo[i].used, bob, KA_TIMESTR_LEN);
1234 printf("%32s %c %2x(%2x) used %s\n", info.kcInfo[i].principal,
1235 (info.kcInfo[i].primary ? '*' : ' '), info.kcInfo[i].kvno,
1236 info.kcInfo[i].keycksum, bob);
1241 Interactive(struct cmd_syndesc *as, char *arock)
1248 Quit(struct cmd_syndesc *as, char *arock)
1255 MyAfterProc(struct cmd_syndesc *as)
1257 if (!strcmp(as->name, "help"))
1260 /* Determine if we need to destory the ubik connection.
1261 * Closing it avoids resends of packets.
1264 ubik_ClientDestroy(conn);
1271 int init = 0, noauth;
1272 char name[MAXKTCNAMELEN];
1273 char instance[MAXKTCNAMELEN];
1274 char newCell[MAXKTCREALMLEN];
1275 afs_int32 serverList[MAXSERVERS];
1278 NoAuth(struct cmd_syndesc *as, char *arock)
1285 MyBeforeProc(struct cmd_syndesc *as, char *arock)
1287 extern struct passwd *getpwuid();
1288 struct ktc_encryptionKey key;
1289 struct ktc_principal auth_server, auth_token, client;
1290 char realm[MAXKTCREALMLEN];
1292 struct ktc_token token, *pToken;
1293 int i, acode, code = 0;
1296 char *ws = strrchr(as->a0name, '/');
1298 ws++; /* skip everything before the "/" */
1301 if (strlen(ws) > 0) {
1302 strncpy(whoami, ws, sizeof(whoami));
1303 if (strlen(whoami) + 1 >= sizeof(whoami))
1304 strcpy(whoami, "kas:");
1306 strcat(whoami, ":");
1309 /* append sub-command name */
1310 strncat(whoami, as->name, sizeof(whoami) - strlen(whoami) - 1);
1313 if (as->parms[12].name == 0)
1316 assert(as->parms[13].name && as->parms[14].name && as->parms[15].name
1317 && as->parms[16].name);
1319 /* MyAfterProc() destroys the conn, but just to be sure */
1321 code = ubik_ClientDestroy(conn);
1325 if (!init || as->parms[12].items || as->parms[13].items
1326 || as->parms[14].items || as->parms[15].items
1327 || as->parms[16].items) {
1328 strcpy(instance, "");
1329 strcpy(newCell, "");
1331 if (as->parms[12].items) { /* -admin_username */
1333 ka_ParseLoginName(as->parms[12].items->data, name, instance,
1336 com_err(whoami, code, "parsing user's name '%s'",
1337 as->parms[12].items->data);
1342 DWORD len = MAXKTCNAMELEN;
1343 if (!GetUserName((LPTSTR) name, &len)) {
1344 printf("Can't get user name \n");
1348 /* No explicit name provided: use Unix uid. */
1349 struct passwd *pw = getpwuid(getuid());
1351 printf("Can't figure out your name from your user id.\n");
1354 strncpy(name, pw->pw_name, sizeof(name));
1358 if (as->parms[14].items) { /* -cell */
1359 if (strlen(newCell) > 0) {
1360 printf("Duplicate cell specification not allowed\n");
1362 strncpy(newCell, as->parms[14].items->data, sizeof(newCell));
1365 code = ka_ExpandCell(newCell, newCell, 0 /*local */ );
1367 com_err(whoami, code, "Can't expand cell name");
1370 strcpy(cell, newCell);
1372 if (as->parms[15].items) { /* -servers */
1373 struct cmd_item *ip;
1374 char *ap[MAXSERVERS + 2];
1378 for (ip = as->parms[15].items, i = 2; ip; ip = ip->next, i++)
1380 code = ubik_ParseClientList(i, ap, serverList);
1382 com_err(whoami, code, "could not parse server list");
1385 ka_ExplicitCell(cell, serverList);
1388 noauth = (as->parms[16].items ? 1 : 0); /* -noauth */
1393 token.ticketLen = 0; /* in case there are no tokens */
1394 if (!noauth) { /* Will prompt for a password */
1395 /* first see if there's already an admin ticket */
1397 ka_GetAdminToken(0, 0, cell, 0, KA_SIXHOURS, &token,
1399 if (code) { /* if not then get key and try again */
1400 if (as->parms[13].items) { /* if password specified */
1401 strncpy(passwd, as->parms[13].items->data, sizeof(passwd));
1402 memset(as->parms[13].items->data, 0,
1403 strlen(as->parms[13].items->data));
1405 char msg[MAXKTCNAMELEN + 50];
1406 if (as->parms[12].items)
1407 sprintf(msg, "Administrator's (%s) Password: ", name);
1409 sprintf(msg, "Password for %s: ", name);
1410 code = read_pw_string(passwd, sizeof(passwd), msg, 0);
1413 else if (strlen(passwd) == 0)
1414 code = KANULLPASSWORD;
1416 com_err(whoami, code, "reading password");
1420 ka_StringToKey(passwd, cell, &key);
1422 ka_GetAdminToken(name, instance, cell, &key, KA_SIXHOURS,
1423 &token, 0 /* !new */ );
1424 if (code == KABADREQUEST) {
1425 des_string_to_key(passwd, &key);
1427 ka_GetAdminToken(name, instance, cell, &key, KA_SIXHOURS,
1428 &token, 0 /* !new */ );
1430 if ((code == KABADREQUEST) && (strlen(passwd) > 8)) {
1431 /* try with only the first 8 characters incase they set
1432 * their password with an old style passwd program. */
1434 ka_StringToKey(passwd, cell, &key);
1436 ka_GetAdminToken(name, instance, cell, &key, KA_SIXHOURS,
1437 &token, 0 /* !new */ );
1440 "Warning: you have typed a password longer than 8 characters, but only the\n");
1442 "first 8 characters were actually significant. If you change your password\n");
1444 "again this warning message will go away.\n");
1451 reason = "password was incorrect";
1454 reason = "Authentication Server was unavailable";
1457 reason = (char *)error_message(code);
1460 "%s: Auth. as %s to AuthServer failed: %s\nProceeding w/o authentication\n",
1461 whoami, PrintedName(name, instance, cell), reason);
1463 /* get an Authentication token while were at it. */
1464 if (ka_CellToRealm(cell, realm, 0) != 0)
1466 strcpy(auth_server.name, KA_TGS_NAME);
1467 strcpy(auth_server.instance, realm);
1468 strcpy(auth_server.cell, cell);
1470 (&auth_server, &auth_token, sizeof(struct ktc_token),
1473 ka_GetAuthToken(name, instance, cell, &key,
1474 MAXKTCTICKETLIFETIME, (afs_int32 *) 0
1475 /*Don't need pwd expiration info here */
1477 if (acode && (acode != code)) /* codes are usually the same */
1478 com_err(whoami, code,
1479 "getting Authentication token for %s",
1480 PrintedName(name, instance, cell));
1482 memset(&key, 0, sizeof(key));
1486 pToken = ((token.ticketLen == 0) ? 0 : &token);
1487 code = ka_AuthServerConn(cell, KA_MAINTENANCE_SERVICE, pToken, &conn);
1488 if (code && pToken) {
1489 com_err(whoami, code,
1490 "connecting to AuthServer: now trying w/o authentication");
1491 code = ka_AuthServerConn(cell, KA_MAINTENANCE_SERVICE, 0, &conn);
1493 com_err(whoami, code,
1494 "making unauthenticated connection to AuthServer");
1497 com_err(whoami, code,
1498 "Couldn't establish connection to Authentication Server");
1502 /* now default unspecified password by prompting from terminal */
1503 if (as->nParms >= 12)
1504 for (i = 0; i < 12; i++)
1505 if (as->parms[i].name && (as->parms[i].items == 0)) {
1506 char *p = as->parms[i].name; /* parameter name */
1507 int l = strlen(p); /* length of name */
1508 /* does parameter end in "password" */
1509 if (strcmp(p + (l - 8), "password") == 0) {
1511 char password[BUFSIZ];
1512 struct cmd_item *ip;
1516 code = read_pw_string(password, sizeof(password), msg, 1);
1519 else if (strlen(password) == 0)
1520 code = KANULLPASSWORD;
1522 com_err(whoami, code, "prompting for %s", p + 1);
1525 ip = (struct cmd_item *)malloc(sizeof(struct cmd_item));
1526 ip->data = (char *)malloc(strlen(password) + 1);
1528 strcpy(ip->data, password);
1529 as->parms[i].items = ip;
1532 if (!conn) { /* if all else fails... */
1533 code = NoAuth(0, 0); /* get unauthenticated conn */
1540 /* These are some helpful command that deal with the cache managers tokens. */
1543 ForgetTicket(struct cmd_syndesc *as, char *arock)
1548 struct ktc_principal server;
1550 if (as->parms[0].items) {
1551 char *name = as->parms[0].items->data;
1553 ka_ParseLoginName(name, server.name, server.instance,
1556 com_err(whoami, code, "couldn't interpret name '%s'", name);
1559 if (server.cell[0] == 0) {
1560 if (code = DefaultCell())
1562 strcpy(server.cell, cell);
1564 code = ka_ExpandCell(server.cell, server.cell, 0 /*local */ );
1566 com_err(whoami, code, "Can't expand cell name");
1570 code = ktc_ForgetToken(&server);
1572 com_err(whoami, code, "couldn't remove tokens for %s",
1573 PrintedPrincipal(&server));
1577 if (!as->parms[1].items) {
1578 fprintf(stderr, "Must specify server name or -all\n");
1581 code = ktc_ForgetAllTokens();
1583 com_err(whoami, code, "couldn't delete all tokens");
1588 code = ktc_ForgetAllTokens();
1590 com_err(whoami, code, "couldn't delete all tokens");
1597 ListTickets(struct cmd_syndesc *as, char *arock)
1600 int index, newIndex;
1601 struct ktc_principal server;
1604 if (as->parms[1].items)
1606 if (as->parms[0].items) {
1607 char *name = as->parms[0].items->data;
1609 ka_ParseLoginName(name, server.name, server.instance,
1612 com_err(whoami, code, "couldn't interpret name '%s'", name);
1615 if (server.cell[0] == 0) {
1616 if (code = DefaultCell())
1618 strcpy(server.cell, cell);
1620 code = ka_ExpandCell(server.cell, server.cell, 0 /*local */ );
1622 com_err(whoami, code, "Can't expand cell name");
1626 code = ListTicket(&server, verbose);
1628 for (index = 0;; index = newIndex) {
1629 code = ktc_ListTokens(index, &newIndex, &server);
1631 if (code == KTC_NOENT)
1632 code = 0; /* end of list */
1635 code = ListTicket(&server, verbose);
1641 add_std_args(register struct cmd_syndesc *ts)
1644 /* 12 */ cmd_AddParm(ts, "-admin_username", CMD_SINGLE, CMD_OPTIONAL,
1645 "admin principal to use for authentication");
1646 /* 13 */ cmd_AddParm(ts, "-password_for_admin", CMD_SINGLE, CMD_OPTIONAL,
1648 /* 14 */ cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
1649 /* 15 */ cmd_AddParm(ts, "-servers", CMD_LIST, CMD_OPTIONAL,
1650 "explicit list of authentication servers");
1651 /* 16 */ cmd_AddParm(ts, "-noauth", CMD_FLAG, CMD_OPTIONAL,
1652 "don't authenticate");
1656 ka_AdminInteractive(int cmd_argc, char *cmd_argv[])
1659 register struct cmd_syndesc *ts;
1665 strncpy(myName, *cmd_argv, 509);
1667 cmd_SetBeforeProc(MyBeforeProc, NULL);
1668 cmd_SetAfterProc(MyAfterProc, NULL);
1670 ts = cmd_CreateSyntax("interactive", Interactive, 0,
1671 "enter interactive mode");
1674 ts = cmd_CreateSyntax("noauthentication", NoAuth, 0,
1675 "connect to AuthServer w/o using token");
1677 ts = cmd_CreateSyntax("list", ListUsers, 0, "list all users in database");
1678 cmd_AddParm(ts, "-long", CMD_FLAG, CMD_OPTIONAL,
1679 "show detailed info about each user");
1680 cmd_AddParm(ts, "-showadmin", CMD_FLAG, CMD_OPTIONAL,
1681 "show all cell administrators");
1682 cmd_AddParm(ts, "-showkey", CMD_FLAG, CMD_OPTIONAL,
1683 "show the user's actual key rather than the checksum");
1685 cmd_CreateAlias(ts, "ls");
1687 ts = cmd_CreateSyntax("examine", ExamineUser, 0,
1688 "examine the entry for a user");
1689 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1690 cmd_AddParm(ts, "-showkey", CMD_FLAG, CMD_OPTIONAL,
1691 "show the user's actual key rather than the checksum");
1694 ts = cmd_CreateSyntax("create", CreateUser, 0,
1695 "create an entry for a user");
1696 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1697 cmd_AddParm(ts, "-initial_password", CMD_SINGLE, CMD_OPTIONAL,
1698 "initial password");
1701 ts = cmd_CreateSyntax("delete", DeleteUser, 0, "delete a user");
1702 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1704 cmd_CreateAlias(ts, "rm");
1706 ts = cmd_CreateSyntax("setfields", SetFields, 0,
1707 "set various fields in a user's entry");
1708 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1709 cmd_AddParm(ts, "-flags", CMD_SINGLE, CMD_OPTIONAL,
1710 "hex flag value or flag name expression");
1711 cmd_AddParm(ts, "-expiration", CMD_SINGLE, CMD_OPTIONAL,
1712 "date of account expiration");
1713 cmd_AddParm(ts, "-lifetime", CMD_SINGLE, CMD_OPTIONAL,
1714 "maximum ticket lifetime");
1715 cmd_AddParm(ts, "-pwexpires", CMD_SINGLE, CMD_OPTIONAL,
1716 "number days password is valid ([0..254])");
1717 cmd_AddParm(ts, "-reuse", CMD_SINGLE, CMD_OPTIONAL,
1718 "permit password reuse (yes/no)");
1719 cmd_AddParm(ts, "-attempts", CMD_SINGLE, CMD_OPTIONAL,
1720 "maximum successive failed login tries ([0..254])");
1721 cmd_AddParm(ts, "-locktime", CMD_SINGLE, CMD_OPTIONAL,
1722 "failure penalty [hh:mm or minutes]");
1724 cmd_AddParm(ts, "-associates", CMD_SINGLE, CMD_OPTIONAL,
1725 "maximum associate instances");
1728 cmd_CreateAlias(ts, "sf");
1731 ts = cmd_CreateSyntax("unlock", Unlock, 0,
1732 "Enable authentication ID after max failed attempts exceeded");
1733 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "authentication ID");
1737 ts = cmd_CreateSyntax("stringtokey", StringToKey, 0,
1738 "convert a string to a key");
1739 cmd_AddParm(ts, "-string", CMD_SINGLE, 0, "password string");
1740 cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
1742 ts = cmd_CreateSyntax("setpassword", SetPassword, 0,
1743 "set a user's password");
1744 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1745 cmd_AddParm(ts, "-new_password", CMD_SINGLE, CMD_OPTIONAL,
1748 cmd_AddParm(ts, "-kvno", CMD_SINGLE, CMD_OPTIONAL, "key version number");
1750 cmd_CreateAlias(ts, "sp");
1751 #ifdef CMD_PARSER_AMBIG_FIX
1752 cmd_CreateAlias(ts, "setpasswd");
1755 /* set a user's key */
1756 ts = cmd_CreateSyntax("setkey", SetPassword, 0, (char *)CMD_HIDDEN);
1757 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1759 cmd_AddParm(ts, "-new_key", CMD_SINGLE, 0, "eight byte new key");
1761 cmd_AddParm(ts, "-kvno", CMD_SINGLE, CMD_OPTIONAL, "key version number");
1764 /* get a user's password */
1765 ts = cmd_CreateSyntax("getpassword", GetPassword, 0, (char *)CMD_HIDDEN);
1766 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of user");
1767 /* don't take standard args */
1768 /* add_std_args (ts); */
1769 #ifdef CMD_PARSER_AMBIG_FIX
1770 cmd_CreateAlias(ts, "getpasswd");
1773 /* get a random key */
1774 ts = cmd_CreateSyntax("getrandomkey", GetRandomKey, 0,
1775 (char *)CMD_HIDDEN);
1778 /* get a ticket for a specific server */
1779 ts = cmd_CreateSyntax("getticket", GetTicket, 0, (char *)CMD_HIDDEN);
1780 cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "name of server");
1781 cmd_AddParm(ts, "-lifetime", CMD_SINGLE, CMD_OPTIONAL, "ticket lifetime");
1784 ts = cmd_CreateSyntax("statistics", Statistics, 0,
1785 "show statistics for AuthServer");
1788 /* show debugging info from AuthServer */
1789 ts = cmd_CreateSyntax("debuginfo", DebugInfo, 0, (char *)CMD_HIDDEN);
1790 cmd_AddParm(ts, "-hostname", CMD_SINGLE, CMD_OPTIONAL,
1791 "authentication server host name");
1794 ts = cmd_CreateSyntax("forgetticket", ForgetTicket, 0,
1795 "delete user's tickets");
1797 cmd_AddParm(ts, "-name", CMD_SINGLE, (CMD_OPTIONAL | CMD_HIDE),
1800 cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "delete all tickets");
1802 ts = cmd_CreateSyntax("listtickets", ListTickets, 0,
1803 "show all cache manager tickets");
1804 cmd_AddParm(ts, "-name", CMD_SINGLE, CMD_OPTIONAL, "name of server");
1805 cmd_AddParm(ts, "-long", CMD_FLAG, CMD_OPTIONAL,
1806 "show session key and ticket");
1808 ts = cmd_CreateSyntax("quit", Quit, 0, "exit program");
1811 conn = 0; /* no connection yet */
1812 zero_argc = cmd_argc;
1813 zero_argv = cmd_argv;
1815 strcpy(whoami, "kas");
1817 if (code = cmd_Dispatch(cmd_argc, cmd_argv)) {
1826 s = fgets(line, sizeof(line), stdin);
1828 return 0; /* EOF on input */
1829 for (i = strlen(line) - 1; i >= 0 && isspace(line[i]); i--)
1832 continue; /* blank line */
1835 cmd_ParseLine(line, argv, &argc, sizeof(argv) / sizeof(argv[0]));
1837 com_err(whoami, code, "parsing line: '%s'", line);
1840 code = cmd_Dispatch(argc, argv);