mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-24 22:09:57 +01:00
* options.h, g10.c (main), keylist.c (list_keyblock_print): Add
"show-unusable-uids" list-option to show revoked and/or expired user IDs.
This commit is contained in:
parent
0d8bd2eace
commit
e70e41612f
@ -1,3 +1,9 @@
|
||||
2003-09-25 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* options.h, g10.c (main), keylist.c (list_keyblock_print): Add
|
||||
"show-unusable-uids" list-option to show revoked and/or expired
|
||||
user IDs.
|
||||
|
||||
2003-09-24 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* keyedit.c (show_key_with_all_names): Show names a little neater
|
||||
|
@ -1398,8 +1398,11 @@ main( int argc, char **argv )
|
||||
case oNoTTY: tty_no_terminal(1); break;
|
||||
case oDryRun: opt.dry_run = 1; break;
|
||||
case oInteractive: opt.interactive = 1; break;
|
||||
case oVerbose: g10_opt_verbose++;
|
||||
opt.verbose++; opt.list_sigs=1; break;
|
||||
case oVerbose:
|
||||
g10_opt_verbose++;
|
||||
opt.verbose++;
|
||||
opt.list_options|=LIST_SHOW_UNUSABLE_UIDS;
|
||||
break;
|
||||
case oKOption: set_cmd( &cmd, aKMode ); break;
|
||||
|
||||
case oBatch: opt.batch = 1; nogreeting = 1; break;
|
||||
@ -1767,6 +1770,7 @@ main( int argc, char **argv )
|
||||
{"show-keyserver-url",LIST_SHOW_KEYSERVER},
|
||||
{"show-validity",LIST_SHOW_VALIDITY},
|
||||
{"show-long-keyid",LIST_SHOW_LONG_KEYID},
|
||||
{"show-unusable-uids",LIST_SHOW_UNUSABLE_UIDS},
|
||||
{"show-keyring",LIST_SHOW_KEYRING},
|
||||
{"show-sig-expire",LIST_SHOW_SIG_EXPIRE},
|
||||
{NULL,0}
|
||||
|
@ -580,8 +580,9 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
||||
u32 keyid[2];
|
||||
int any=0;
|
||||
struct sig_stats *stats=opaque;
|
||||
int skip_sigs=0;
|
||||
int newformat=((opt.list_options&LIST_SHOW_VALIDITY) && !secret)
|
||||
|| (opt.list_options&LIST_SHOW_LONG_KEYID);
|
||||
|| (opt.list_options & (LIST_SHOW_LONG_KEYID | LIST_SHOW_UNUSABLE_UIDS));
|
||||
|
||||
/* get the keyid from the keyblock */
|
||||
node = find_kbnode( keyblock, secret? PKT_SECRET_KEY : PKT_PUBLIC_KEY );
|
||||
@ -641,24 +642,31 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
||||
for( kbctx=NULL; (node=walk_kbnode( keyblock, &kbctx, 0)) ; ) {
|
||||
if( node->pkt->pkttype == PKT_USER_ID && !opt.fast_list_mode ) {
|
||||
int indent;
|
||||
/* don't list revoked or expired UIDS unless we are in
|
||||
* verbose mode and signature listing has not been
|
||||
* requested */
|
||||
if ( !opt.verbose && !opt.list_sigs &&
|
||||
(node->pkt->pkt.user_id->is_revoked ||
|
||||
node->pkt->pkt.user_id->is_expired ))
|
||||
continue;
|
||||
PKT_user_id *uid=node->pkt->pkt.user_id;
|
||||
|
||||
if(attrib_fp && node->pkt->pkt.user_id->attrib_data!=NULL)
|
||||
dump_attribs(node->pkt->pkt.user_id,pk,sk);
|
||||
if((uid->is_expired || uid->is_revoked)
|
||||
&& !(opt.list_options&LIST_SHOW_UNUSABLE_UIDS))
|
||||
{
|
||||
skip_sigs=1;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
skip_sigs=0;
|
||||
|
||||
if(attrib_fp && uid->attrib_data!=NULL)
|
||||
dump_attribs(uid,pk,sk);
|
||||
|
||||
if(!any && newformat)
|
||||
printf("\n");
|
||||
|
||||
if((opt.list_options&LIST_SHOW_VALIDITY) && pk)
|
||||
if(uid->is_revoked || uid->is_expired)
|
||||
printf("uid%*s[%s] ",
|
||||
(opt.list_options&LIST_SHOW_LONG_KEYID)?16:8,"",
|
||||
uid->is_revoked?"revoked":"expired");
|
||||
else if((opt.list_options&LIST_SHOW_VALIDITY) && pk)
|
||||
{
|
||||
const char *validity=
|
||||
trust_value_to_string(get_validity(pk,node->pkt->pkt.user_id));
|
||||
trust_value_to_string(get_validity(pk,uid));
|
||||
|
||||
/* Includes the 3 spaces for [, ], and " ". */
|
||||
indent=((opt.list_options&LIST_SHOW_LONG_KEYID)?23:15)
|
||||
@ -670,17 +678,12 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
||||
printf("uid%*s[%s] ",indent,"",validity);
|
||||
}
|
||||
else if(newformat)
|
||||
printf("uid%*s",26,"");
|
||||
printf("uid%*s",
|
||||
(opt.list_options&LIST_SHOW_LONG_KEYID)?26:18,"");
|
||||
else if(any)
|
||||
printf("uid%*s",29,"");
|
||||
|
||||
if ( node->pkt->pkt.user_id->is_revoked )
|
||||
fputs ("[revoked] ", stdout);
|
||||
if ( node->pkt->pkt.user_id->is_expired )
|
||||
fputs ("[expired] ", stdout);
|
||||
|
||||
print_utf8_string( stdout, node->pkt->pkt.user_id->name,
|
||||
node->pkt->pkt.user_id->len );
|
||||
print_utf8_string( stdout, uid->name, uid->len );
|
||||
putchar('\n');
|
||||
if( !any ) {
|
||||
if( fpr )
|
||||
@ -690,10 +693,8 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
||||
any = 1;
|
||||
}
|
||||
|
||||
if((opt.list_options&LIST_SHOW_PHOTOS)
|
||||
&& node->pkt->pkt.user_id->attribs!=NULL)
|
||||
show_photos(node->pkt->pkt.user_id->attribs,
|
||||
node->pkt->pkt.user_id->numattribs,pk,sk);
|
||||
if((opt.list_options&LIST_SHOW_PHOTOS) && uid->attribs!=NULL)
|
||||
show_photos(uid->attribs,uid->numattribs,pk,sk);
|
||||
}
|
||||
else if( node->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
|
||||
u32 keyid2[2];
|
||||
@ -747,7 +748,9 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
||||
if( fpr > 1 )
|
||||
print_fingerprint( NULL, sk2, 0 );
|
||||
}
|
||||
else if( opt.list_sigs && node->pkt->pkttype == PKT_SIGNATURE ) {
|
||||
else if( opt.list_sigs
|
||||
&& node->pkt->pkttype == PKT_SIGNATURE
|
||||
&& !skip_sigs ) {
|
||||
PKT_signature *sig = node->pkt->pkt.signature;
|
||||
int sigrc;
|
||||
char *sigstr;
|
||||
|
@ -228,20 +228,21 @@ struct {
|
||||
#define EXPORT_INCLUDE_ATTRIBUTES 4
|
||||
#define EXPORT_INCLUDE_SENSITIVE_REVKEYS 8
|
||||
|
||||
#define LIST_SHOW_PHOTOS 1
|
||||
#define LIST_SHOW_POLICY 2
|
||||
#define LIST_SHOW_NOTATION 4
|
||||
#define LIST_SHOW_KEYSERVER 8
|
||||
#define LIST_SHOW_VALIDITY 16
|
||||
#define LIST_SHOW_LONG_KEYID 32
|
||||
#define LIST_SHOW_KEYRING 64
|
||||
#define LIST_SHOW_SIG_EXPIRE 128
|
||||
#define LIST_SHOW_PHOTOS (1<<0)
|
||||
#define LIST_SHOW_POLICY (1<<1)
|
||||
#define LIST_SHOW_NOTATION (1<<2)
|
||||
#define LIST_SHOW_KEYSERVER (1<<3)
|
||||
#define LIST_SHOW_VALIDITY (1<<4)
|
||||
#define LIST_SHOW_LONG_KEYID (1<<5)
|
||||
#define LIST_SHOW_UNUSABLE_UIDS (1<<6)
|
||||
#define LIST_SHOW_KEYRING (1<<7)
|
||||
#define LIST_SHOW_SIG_EXPIRE (1<<8)
|
||||
|
||||
#define VERIFY_SHOW_PHOTOS 1
|
||||
#define VERIFY_SHOW_POLICY 2
|
||||
#define VERIFY_SHOW_NOTATION 4
|
||||
#define VERIFY_SHOW_KEYSERVER 8
|
||||
#define VERIFY_SHOW_VALIDITY 16
|
||||
#define VERIFY_SHOW_LONG_KEYID 32
|
||||
#define VERIFY_SHOW_PHOTOS (1<<0)
|
||||
#define VERIFY_SHOW_POLICY (1<<1)
|
||||
#define VERIFY_SHOW_NOTATION (1<<2)
|
||||
#define VERIFY_SHOW_KEYSERVER (1<<3)
|
||||
#define VERIFY_SHOW_VALIDITY (1<<4)
|
||||
#define VERIFY_SHOW_LONG_KEYID (1<<5)
|
||||
|
||||
#endif /*G10_OPTIONS_H*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user