2 * Copyright (c) 1997-2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "kuser_locl.h"
37 #include "parse_units.h"
38 #include "heimtools-commands.h"
41 printable_time_internal(time_t t
, int x
)
46 if ((p
= ctime(&t
)) == NULL
)
47 strlcpy(s
, "?", sizeof(s
));
49 strlcpy(s
, p
+ 4, sizeof(s
));
55 printable_time(time_t t
)
57 return printable_time_internal(t
, 20);
61 printable_time_long(time_t t
)
63 return printable_time_internal(t
, 20);
66 #define COL_ISSUED NP_(" Issued","")
67 #define COL_EXPIRES NP_(" Expires", "")
68 #define COL_FLAGS NP_("Flags", "")
69 #define COL_NAME NP_(" Name", "")
70 #define COL_PRINCIPAL NP_(" Principal", "in klist output")
71 #define COL_PRINCIPAL_KVNO NP_(" Principal (kvno)", "in klist output")
72 #define COL_CACHENAME NP_(" Cache name", "name in klist output")
73 #define COL_DEFCACHE NP_("", "")
76 print_cred(krb5_context context
, krb5_creds
*cred
, rtbl_t ct
, int do_flags
)
82 krb5_timeofday (context
, &sec
);
85 if(cred
->times
.starttime
)
86 rtbl_add_column_entry(ct
, COL_ISSUED
,
87 printable_time(cred
->times
.starttime
));
89 rtbl_add_column_entry(ct
, COL_ISSUED
,
90 printable_time(cred
->times
.authtime
));
92 if(cred
->times
.endtime
> sec
)
93 rtbl_add_column_entry(ct
, COL_EXPIRES
,
94 printable_time(cred
->times
.endtime
));
96 rtbl_add_column_entry(ct
, COL_EXPIRES
, N_(">>>Expired<<<", ""));
97 ret
= krb5_unparse_name (context
, cred
->server
, &str
);
99 krb5_err(context
, 1, ret
, "krb5_unparse_name");
100 rtbl_add_column_entry(ct
, COL_PRINCIPAL
, str
);
103 if(cred
->flags
.b
.forwardable
)
105 if(cred
->flags
.b
.forwarded
)
107 if(cred
->flags
.b
.proxiable
)
109 if(cred
->flags
.b
.proxy
)
111 if(cred
->flags
.b
.may_postdate
)
113 if(cred
->flags
.b
.postdated
)
115 if(cred
->flags
.b
.renewable
)
117 if(cred
->flags
.b
.initial
)
119 if(cred
->flags
.b
.invalid
)
121 if(cred
->flags
.b
.pre_authent
)
123 if(cred
->flags
.b
.hw_authent
)
126 rtbl_add_column_entry(ct
, COL_FLAGS
, s
);
132 print_cred_verbose(krb5_context context
, krb5_creds
*cred
, int do_json
)
139 if (do_json
) { /* XXX support more json formating later */
140 printf("{ \"verbose-supported\" : false }");
144 krb5_timeofday (context
, &sec
);
146 ret
= krb5_unparse_name(context
, cred
->server
, &str
);
149 printf(N_("Server: %s\n", ""), str
);
152 ret
= krb5_unparse_name(context
, cred
->client
, &str
);
155 printf(N_("Client: %s\n", ""), str
);
158 if (!krb5_is_config_principal(context
, cred
->client
)) {
163 decode_Ticket(cred
->ticket
.data
, cred
->ticket
.length
, &t
, &len
);
164 ret
= krb5_enctype_to_string(context
, t
.enc_part
.etype
, &s
);
165 printf(N_("Ticket etype: ", ""));
170 printf(N_("unknown-enctype(%d)", ""), t
.enc_part
.etype
);
173 printf(N_(", kvno %d", ""), *t
.enc_part
.kvno
);
175 if(cred
->session
.keytype
!= t
.enc_part
.etype
) {
176 ret
= krb5_enctype_to_string(context
, cred
->session
.keytype
, &str
);
178 krb5_warn(context
, ret
, "session keytype");
180 printf(N_("Session key: %s\n", "enctype"), str
);
185 printf(N_("Ticket length: %lu\n", ""),
186 (unsigned long)cred
->ticket
.length
);
188 printf(N_("Auth time: %s\n", ""),
189 printable_time_long(cred
->times
.authtime
));
190 if(cred
->times
.authtime
!= cred
->times
.starttime
)
191 printf(N_("Start time: %s\n", ""),
192 printable_time_long(cred
->times
.starttime
));
193 printf(N_("End time: %s", ""),
194 printable_time_long(cred
->times
.endtime
));
195 if(sec
> cred
->times
.endtime
)
196 printf(N_(" (expired)", ""));
198 if(cred
->flags
.b
.renewable
)
199 printf(N_("Renew till: %s\n", ""),
200 printable_time_long(cred
->times
.renew_till
));
203 unparse_flags(TicketFlags2int(cred
->flags
.b
),
204 asn1_TicketFlags_units(),
205 flags
, sizeof(flags
));
206 printf(N_("Ticket flags: %s\n", ""), flags
);
208 printf(N_("Addresses: ", ""));
209 if (cred
->addresses
.len
!= 0) {
210 for(j
= 0; j
< cred
->addresses
.len
; j
++){
214 ret
= krb5_print_address(&cred
->addresses
.val
[j
],
215 buf
, sizeof(buf
), &len
);
221 printf(N_("addressless", ""));
227 * Print all tickets in `ccache' on stdout, verbosily iff do_verbose.
231 print_tickets (krb5_context context
,
233 krb5_principal principal
,
239 char *str
, *name
, *fullname
;
241 krb5_cc_cursor cursor
;
247 ret
= krb5_unparse_name (context
, principal
, &str
);
249 krb5_err (context
, 1, ret
, "krb5_unparse_name");
251 ret
= krb5_cc_get_full_name(context
, ccache
, &fullname
);
253 krb5_err (context
, 1, ret
, "krb5_cc_get_full_name");
256 printf ("%17s: %s\n", N_("Credentials cache", ""), fullname
);
257 printf ("%17s: %s\n", N_("Principal", ""), str
);
259 ret
= krb5_cc_get_friendly_name(context
, ccache
, &name
);
261 if (strcmp(name
, str
) != 0)
262 printf ("%17s: %s\n", N_("Friendly name", ""), name
);
268 printf ("%17s: %d\n", N_("Cache version", ""),
269 krb5_cc_get_version(context
, ccache
));
271 krb5_cc_set_flags(context
, ccache
, KRB5_TC_NOTICKET
);
274 ret
= krb5_cc_get_kdc_offset(context
, ccache
, &sec
);
276 if (ret
== 0 && do_verbose
&& sec
!= 0) {
288 unparse_time (val
, buf
, sizeof(buf
));
290 printf ("%17s: %s%s\n", N_("KDC time offset", ""),
291 sig
== -1 ? "-" : "", buf
);
295 printf ("{ \"cache\" : \"%s\", \"principal\" : \"%s\", ", fullname
, str
);
298 ret
= krb5_cc_start_seq_get (context
, ccache
, &cursor
);
300 krb5_err(context
, 1, ret
, "krb5_cc_start_seq_get");
304 rtbl_add_column(ct
, COL_ISSUED
, 0);
305 rtbl_add_column(ct
, COL_EXPIRES
, 0);
307 rtbl_add_column(ct
, COL_FLAGS
, 0);
308 rtbl_add_column(ct
, COL_PRINCIPAL
, 0);
309 rtbl_set_separator(ct
, " ");
311 rtbl_set_flags(ct
, RTBL_JSON
);
312 printf("\"tickets\" : ");
315 if (do_verbose
&& do_json
)
316 printf("\"tickets\" : [");
317 while ((ret
= krb5_cc_next_cred (context
,
321 if (!do_hidden
&& krb5_is_config_principal(context
, creds
.server
)) {
323 }else if(do_verbose
){
324 print_cred_verbose(context
, &creds
, do_json
);
326 print_cred(context
, &creds
, ct
, do_flags
);
328 krb5_free_cred_contents (context
, &creds
);
330 if(ret
!= KRB5_CC_END
)
331 krb5_err(context
, 1, ret
, "krb5_cc_get_next");
332 ret
= krb5_cc_end_seq_get (context
, ccache
, &cursor
);
334 krb5_err (context
, 1, ret
, "krb5_cc_end_seq_get");
336 rtbl_format(ct
, stdout
);
347 * Check if there's a tgt for the realm of `principal' and ccache and
348 * if so return 0, else 1
352 check_for_tgt (krb5_context context
,
354 krb5_principal principal
,
360 krb5_const_realm client_realm
;
363 krb5_cc_clear_mcred(&pattern
);
365 client_realm
= krb5_principal_get_realm(context
, principal
);
367 ret
= krb5_make_principal (context
, &pattern
.server
,
368 client_realm
, KRB5_TGS_NAME
, client_realm
, NULL
);
370 krb5_err (context
, 1, ret
, "krb5_make_principal");
371 pattern
.client
= principal
;
373 ret
= krb5_cc_retrieve_cred (context
, ccache
, 0, &pattern
, &creds
);
374 krb5_free_principal (context
, pattern
.server
);
376 if (ret
== KRB5_CC_NOTFOUND
)
378 krb5_err (context
, 1, ret
, "krb5_cc_retrieve_cred");
381 expired
= time(NULL
) > creds
.times
.endtime
;
384 *expiration
= creds
.times
.endtime
;
386 krb5_free_cred_contents (context
, &creds
);
392 * Print a list of all AFS tokens
398 display_tokens(int do_verbose
)
401 unsigned char t
[4096];
402 struct ViceIoctl parms
;
404 parms
.in
= (void *)&i
;
405 parms
.in_size
= sizeof(i
);
406 parms
.out
= (void *)t
;
407 parms
.out_size
= sizeof(t
);
410 int32_t size_secret_tok
, size_public_tok
;
412 struct ClearToken ct
;
413 unsigned char *r
= t
;
415 char buf1
[20], buf2
[20];
417 if(k_pioctl(NULL
, VIOCGETTOK
, &parms
, 0) < 0) {
422 if(parms
.out_size
> sizeof(t
))
424 if(parms
.out_size
< sizeof(size_secret_tok
))
426 t
[min(parms
.out_size
,sizeof(t
)-1)] = 0;
427 memcpy(&size_secret_tok
, r
, sizeof(size_secret_tok
));
428 /* dont bother about the secret token */
429 r
+= size_secret_tok
+ sizeof(size_secret_tok
);
430 if (parms
.out_size
< (r
- t
) + sizeof(size_public_tok
))
432 memcpy(&size_public_tok
, r
, sizeof(size_public_tok
));
433 r
+= sizeof(size_public_tok
);
434 if (parms
.out_size
< (r
- t
) + size_public_tok
+ sizeof(int32_t))
436 memcpy(&ct
, r
, size_public_tok
);
437 r
+= size_public_tok
;
438 /* there is a int32_t with length of cellname, but we dont read it */
439 r
+= sizeof(int32_t);
442 gettimeofday (&tv
, NULL
);
443 strlcpy (buf1
, printable_time(ct
.BeginTimestamp
),
445 if (do_verbose
|| tv
.tv_sec
< ct
.EndTimestamp
)
446 strlcpy (buf2
, printable_time(ct
.EndTimestamp
),
449 strlcpy (buf2
, N_(">>> Expired <<<", ""), sizeof(buf2
));
451 printf("%s %s ", buf1
, buf2
);
453 if ((ct
.EndTimestamp
- ct
.BeginTimestamp
) & 1)
454 printf(N_("User's (AFS ID %d) tokens for %s", ""), ct
.ViceId
, cell
);
456 printf(N_("Tokens for %s", ""), cell
);
458 printf(" (%d)", ct
.AuthHandle
);
465 * display the ccache in `cred_cache'
469 display_v5_ccache (krb5_context context
, krb5_ccache ccache
,
470 int do_test
, int do_verbose
,
471 int do_flags
, int do_hidden
,
475 krb5_principal principal
;
479 ret
= krb5_cc_get_principal (context
, ccache
, &principal
);
487 krb5_warnx(context
, N_("No ticket file: %s", ""),
488 krb5_cc_get_name(context
, ccache
));
491 krb5_err (context
, 1, ret
, "krb5_cc_get_principal");
494 exit_status
= check_for_tgt (context
, ccache
, principal
, NULL
);
496 print_tickets (context
, ccache
, principal
, do_verbose
,
497 do_flags
, do_hidden
, do_json
);
499 ret
= krb5_cc_close (context
, ccache
);
501 krb5_err (context
, 1, ret
, "krb5_cc_close");
503 krb5_free_principal (context
, principal
);
513 list_caches(krb5_context context
, struct klist_options
*opt
)
515 krb5_cccol_cursor cursor
;
516 const char *cdef_name
;
522 cdef_name
= krb5_cc_default_name(context
);
523 if (cdef_name
== NULL
)
524 krb5_errx(context
, 1, "krb5_cc_default_name");
525 def_name
= strdup(cdef_name
);
527 ret
= krb5_cccol_cursor_new(context
, &cursor
);
528 if (ret
== KRB5_CC_NOSUPP
)
531 krb5_err (context
, 1, ret
, "krb5_cc_cache_get_first");
534 rtbl_add_column(ct
, COL_DEFCACHE
, 0);
535 rtbl_add_column(ct
, COL_NAME
, 0);
536 rtbl_add_column(ct
, COL_CACHENAME
, 0);
537 rtbl_add_column(ct
, COL_EXPIRES
, 0);
538 rtbl_add_column(ct
, COL_DEFCACHE
, 0);
539 rtbl_set_prefix(ct
, " ");
540 rtbl_set_column_prefix(ct
, COL_DEFCACHE
, "");
541 rtbl_set_column_prefix(ct
, COL_NAME
, " ");
543 rtbl_set_flags(ct
, RTBL_JSON
);
545 while (krb5_cccol_cursor_next(context
, cursor
, &id
) == 0) {
546 krb5_principal principal
= NULL
;
551 ret
= krb5_cc_get_principal(context
, id
, &principal
);
555 expired
= check_for_tgt (context
, id
, principal
, &t
);
557 ret
= krb5_cc_get_friendly_name(context
, id
, &name
);
562 rtbl_add_column_entry(ct
, COL_NAME
, name
);
566 str
= N_(">>> Expired <<<", "");
568 str
= printable_time(t
);
569 rtbl_add_column_entry(ct
, COL_EXPIRES
, str
);
571 ret
= krb5_cc_get_full_name(context
, id
, &fname
);
573 krb5_err (context
, 1, ret
, "krb5_cc_get_full_name");
575 rtbl_add_column_entry(ct
, COL_CACHENAME
, fname
);
578 else if (strcmp(fname
, def_name
) == 0)
579 rtbl_add_column_entry(ct
, COL_DEFCACHE
, "*");
581 rtbl_add_column_entry(ct
, COL_DEFCACHE
, "");
585 krb5_cc_close(context
, id
);
587 krb5_free_principal(context
, principal
);
590 krb5_cccol_cursor_free(context
, &cursor
);
593 rtbl_format(ct
, stdout
);
607 klist(struct klist_options
*opt
, int argc
, char **argv
)
620 if(opt
->version_flag
) {
625 if (opt
->list_all_flag
) {
626 exit_status
= list_caches(heimtools_context
, opt
);
633 if (opt
->all_content_flag
) {
634 krb5_cc_cache_cursor cursor
;
637 ret
= krb5_cc_cache_get_first(heimtools_context
, NULL
, &cursor
);
639 krb5_err(heimtools_context
, 1, ret
, "krb5_cc_cache_get_first");
643 while (krb5_cc_cache_next(heimtools_context
, cursor
, &id
) == 0) {
644 if (opt
->json_flag
&& !first
)
647 exit_status
|= display_v5_ccache(heimtools_context
, id
, do_test
,
648 do_verbose
, opt
->flags_flag
,
649 opt
->hidden_flag
, opt
->json_flag
);
655 krb5_cc_cache_end_seq_get(heimtools_context
, cursor
);
659 if(opt
->cache_string
) {
660 ret
= krb5_cc_resolve(heimtools_context
, opt
->cache_string
, &id
);
662 krb5_err(heimtools_context
, 1, ret
, "%s", opt
->cache_string
);
664 ret
= krb5_cc_default(heimtools_context
, &id
);
666 krb5_err(heimtools_context
, 1, ret
, "krb5_cc_resolve");
668 exit_status
= display_v5_ccache(heimtools_context
, id
, do_test
,
669 do_verbose
, opt
->flags_flag
,
670 opt
->hidden_flag
, opt
->json_flag
);
676 if (opt
->tokens_flag
&& k_hasafs()) {
679 display_tokens(opt
->verbose_flag
);