2000-11-10 17:50:24 +00:00
|
|
|
/* key.c - Key and keyList objects
|
|
|
|
* Copyright (C) 2000 Werner Koch (dd9jn)
|
2002-05-03 14:06:56 +00:00
|
|
|
* Copyright (C) 2001, 2002 g10 Code GmbH
|
2000-11-10 17:50:24 +00:00
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GPGME is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-11-02 15:51:15 +00:00
|
|
|
#include <string.h>
|
2000-11-10 17:50:24 +00:00
|
|
|
#include <assert.h>
|
2002-06-02 23:09:16 +00:00
|
|
|
#include <ctype.h>
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "ops.h"
|
|
|
|
#include "key.h"
|
2002-05-09 03:38:12 +00:00
|
|
|
#include "sema.h"
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
|
|
#define ALLOC_CHUNK 1024
|
2002-05-09 03:38:12 +00:00
|
|
|
#define my_isdigit(a) ((a) >='0' && (a) <= '9')
|
2000-11-10 17:50:24 +00:00
|
|
|
|
2001-05-28 17:35:10 +00:00
|
|
|
#if SIZEOF_UNSIGNED_INT < 4
|
|
|
|
#error unsigned int too short to be used as a hash value
|
|
|
|
#endif
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
struct key_cache_item_s
|
|
|
|
{
|
|
|
|
struct key_cache_item_s *next;
|
|
|
|
GpgmeKey key;
|
2001-05-28 17:35:10 +00:00
|
|
|
};
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
/* Protects all key_cache_* variables. */
|
|
|
|
DEFINE_STATIC_LOCK (key_cache_lock);
|
2001-05-28 17:35:10 +00:00
|
|
|
static int key_cache_initialized;
|
|
|
|
static struct key_cache_item_s **key_cache;
|
|
|
|
static size_t key_cache_size;
|
|
|
|
static size_t key_cache_max_chain_length;
|
|
|
|
static struct key_cache_item_s *key_cache_unused_items;
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
/* Protects all reference counters in keys. All other accesses to a
|
|
|
|
key are either read only or happen before the key is entered into
|
|
|
|
the cache. */
|
|
|
|
DEFINE_STATIC_LOCK (key_ref_lock);
|
|
|
|
|
2001-05-28 17:35:10 +00:00
|
|
|
static int
|
2002-05-09 03:38:12 +00:00
|
|
|
hextobyte (const byte *s)
|
2001-05-28 17:35:10 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
int c;
|
|
|
|
|
|
|
|
if (*s >= '0' && *s <= '9')
|
|
|
|
c = 16 * (*s - '0');
|
|
|
|
else if (*s >= 'A' && *s <= 'F')
|
|
|
|
c = 16 * (10 + *s - 'A');
|
|
|
|
else if (*s >= 'a' && *s <= 'f')
|
|
|
|
c = 16 * (10 + *s - 'a');
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
s++;
|
|
|
|
if (*s >= '0' && *s <= '9')
|
|
|
|
c += *s - '0';
|
|
|
|
else if (*s >= 'A' && *s <= 'F')
|
|
|
|
c += 10 + *s - 'A';
|
|
|
|
else if (*s >= 'a' && *s <= 'f')
|
|
|
|
c += 10 + *s - 'a';
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
return c;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hash_key (const char *fpr, unsigned int *rhash)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
unsigned int hash;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (!fpr)
|
|
|
|
return -1;
|
|
|
|
if ((c = hextobyte (fpr)) == -1)
|
|
|
|
return -1;
|
|
|
|
hash = c;
|
|
|
|
if ((c = hextobyte (fpr+2)) == -1)
|
|
|
|
return -1;
|
|
|
|
hash |= c << 8;
|
|
|
|
if ((c = hextobyte (fpr+4)) == -1)
|
|
|
|
return -1;
|
|
|
|
hash |= c << 16;
|
|
|
|
if ((c = hextobyte (fpr+6)) == -1)
|
|
|
|
return -1;
|
|
|
|
hash |= c << 24;
|
|
|
|
|
|
|
|
*rhash = hash;
|
|
|
|
return 0;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gpgme_key_cache_init (void)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
LOCK (key_cache_lock);
|
|
|
|
if (!key_cache_initialized)
|
|
|
|
{
|
|
|
|
key_cache_size = 503;
|
|
|
|
key_cache = xtrycalloc (key_cache_size, sizeof *key_cache);
|
|
|
|
if (!key_cache)
|
|
|
|
{
|
|
|
|
key_cache_size = 0;
|
|
|
|
key_cache_initialized = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* The upper bound for our cache size is
|
|
|
|
key_cache_max_chain_length * key_cache_size. */
|
|
|
|
key_cache_max_chain_length = 10;
|
|
|
|
key_cache_initialized = 1;
|
|
|
|
}
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
UNLOCK (key_cache_lock);
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_gpgme_key_cache_add (GpgmeKey key)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
struct subkey_s *k;
|
|
|
|
|
|
|
|
if (!key)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_gpgme_key_cache_init ();
|
|
|
|
|
|
|
|
LOCK (key_cache_lock);
|
|
|
|
/* Check if cache was enabled. */
|
|
|
|
if (!key_cache_size)
|
|
|
|
{
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put the key under each fingerprint into the cache. We use the
|
|
|
|
first 4 digits to calculate the hash. */
|
|
|
|
for (k = &key->keys; k; k = k->next)
|
|
|
|
{
|
|
|
|
size_t n;
|
|
|
|
unsigned int hash;
|
|
|
|
struct key_cache_item_s *item;
|
|
|
|
|
|
|
|
if (hash_key (k->fingerprint, &hash))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
hash %= key_cache_size;
|
|
|
|
for (item = key_cache[hash], n=0; item; item = item->next, n++)
|
|
|
|
{
|
|
|
|
struct subkey_s *k2;
|
|
|
|
if (item->key == key)
|
|
|
|
/* Already in cache. */
|
|
|
|
break;
|
|
|
|
/* Now do a deeper check. */
|
|
|
|
for (k2 = &item->key->keys; k2; k2 = k2->next)
|
|
|
|
{
|
|
|
|
if (k2->fingerprint && !strcmp (k->fingerprint, k2->fingerprint))
|
|
|
|
{
|
|
|
|
/* Okay, replace it with the new copy. */
|
|
|
|
gpgme_key_unref (item->key);
|
|
|
|
item->key = key;
|
|
|
|
gpgme_key_ref (item->key);
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
if (item)
|
|
|
|
continue;
|
2001-05-28 17:35:10 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (n > key_cache_max_chain_length)
|
|
|
|
{
|
|
|
|
/* Remove the last entries. */
|
|
|
|
struct key_cache_item_s *last = NULL;
|
|
|
|
|
|
|
|
for (item = key_cache[hash];
|
|
|
|
item && n < key_cache_max_chain_length;
|
|
|
|
last = item, item = item->next, n++)
|
|
|
|
;
|
|
|
|
|
|
|
|
if (last)
|
|
|
|
{
|
|
|
|
struct key_cache_item_s *next;
|
|
|
|
|
|
|
|
assert (last->next == item);
|
|
|
|
last->next = NULL;
|
|
|
|
for (; item; item = next)
|
|
|
|
{
|
|
|
|
next = item->next;
|
|
|
|
gpgme_key_unref (item->key);
|
|
|
|
item->key = NULL;
|
|
|
|
item->next = key_cache_unused_items;
|
|
|
|
key_cache_unused_items = item;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
item = key_cache_unused_items;
|
|
|
|
if (item)
|
|
|
|
{
|
|
|
|
key_cache_unused_items = item->next;
|
|
|
|
item->next = NULL;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
item = xtrymalloc (sizeof *item);
|
|
|
|
if (!item)
|
|
|
|
{
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return;
|
|
|
|
}
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
|
|
|
|
item->key = key;
|
|
|
|
gpgme_key_ref (key);
|
|
|
|
item->next = key_cache[hash];
|
|
|
|
key_cache[hash] = item;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
UNLOCK (key_cache_lock);
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GpgmeKey
|
|
|
|
_gpgme_key_cache_get (const char *fpr)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
struct key_cache_item_s *item;
|
|
|
|
unsigned int hash;
|
2001-05-28 17:35:10 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
LOCK (key_cache_lock);
|
|
|
|
/* Check if cache is enabled already. */
|
|
|
|
if (!key_cache_size)
|
|
|
|
{
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-05-28 17:35:10 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (hash_key (fpr, &hash))
|
|
|
|
{
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-05-28 17:35:10 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
hash %= key_cache_size;
|
|
|
|
for (item = key_cache[hash]; item; item = item->next)
|
|
|
|
{
|
|
|
|
struct subkey_s *k;
|
2001-05-28 17:35:10 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
for (k = &item->key->keys; k; k = k->next)
|
|
|
|
{
|
|
|
|
if (k->fingerprint && !strcmp (k->fingerprint, fpr))
|
|
|
|
{
|
|
|
|
gpgme_key_ref (item->key);
|
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return item->key;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
UNLOCK (key_cache_lock);
|
|
|
|
return NULL;
|
2001-05-28 17:35:10 +00:00
|
|
|
}
|
|
|
|
|
2000-11-10 17:50:24 +00:00
|
|
|
|
2001-01-08 20:40:25 +00:00
|
|
|
static const char *
|
2002-05-09 03:38:12 +00:00
|
|
|
pkalgo_to_string (int algo)
|
2001-01-08 20:40:25 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
switch (algo)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
return "RSA";
|
|
|
|
case 16:
|
|
|
|
case 20:
|
|
|
|
return "ElG";
|
|
|
|
case 17:
|
|
|
|
return "DSA";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-30 11:01:41 +00:00
|
|
|
static GpgmeError
|
2002-05-09 03:38:12 +00:00
|
|
|
key_new (GpgmeKey *r_key, int secret)
|
2000-11-10 17:50:24 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
GpgmeKey key;
|
|
|
|
|
|
|
|
*r_key = NULL;
|
|
|
|
key = xtrycalloc (1, sizeof *key);
|
|
|
|
if (!key)
|
|
|
|
return mk_error (Out_Of_Core);
|
|
|
|
key->ref_count = 1;
|
|
|
|
*r_key = key;
|
|
|
|
if (secret)
|
|
|
|
key->secret = 1;
|
|
|
|
return 0;
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
|
|
|
|
2001-01-30 11:01:41 +00:00
|
|
|
GpgmeError
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_key_new (GpgmeKey *r_key)
|
2001-01-30 11:01:41 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
return key_new (r_key, 0);
|
2001-01-30 11:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GpgmeError
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_key_new_secret (GpgmeKey *r_key)
|
2001-01-30 11:01:41 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
return key_new (r_key, 1);
|
2001-01-30 11:01:41 +00:00
|
|
|
}
|
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpgme_key_ref:
|
|
|
|
* @key: Key object
|
|
|
|
*
|
2002-04-26 12:38:27 +00:00
|
|
|
* To safe memory the Key objects implements reference counting.
|
2001-09-17 08:25:36 +00:00
|
|
|
* Use this function to bump the reference counter.
|
|
|
|
**/
|
2001-01-22 20:22:41 +00:00
|
|
|
void
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_ref (GpgmeKey key)
|
2001-01-22 20:22:41 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
return_if_fail (key);
|
|
|
|
LOCK (key_ref_lock);
|
|
|
|
key->ref_count++;
|
|
|
|
UNLOCK (key_ref_lock);
|
2001-01-22 20:22:41 +00:00
|
|
|
}
|
|
|
|
|
2000-12-19 10:07:32 +00:00
|
|
|
|
2001-01-30 11:01:41 +00:00
|
|
|
static struct subkey_s *
|
|
|
|
add_subkey (GpgmeKey key, int secret)
|
2000-12-19 10:07:32 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
struct subkey_s *k, *kk;
|
|
|
|
|
|
|
|
k = xtrycalloc (1, sizeof *k);
|
|
|
|
if (!k)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if(!(kk = key->keys.next))
|
|
|
|
key->keys.next = k;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (kk->next)
|
|
|
|
kk = kk->next;
|
|
|
|
kk->next = k;
|
2000-12-19 10:07:32 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
if (secret)
|
|
|
|
k->secret = 1;
|
|
|
|
return k;
|
2000-12-19 10:07:32 +00:00
|
|
|
}
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
|
2001-01-30 11:01:41 +00:00
|
|
|
struct subkey_s *
|
|
|
|
_gpgme_key_add_subkey (GpgmeKey key)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
return add_subkey (key, 0);
|
2001-01-30 11:01:41 +00:00
|
|
|
}
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
|
2001-01-30 11:01:41 +00:00
|
|
|
struct subkey_s *
|
|
|
|
_gpgme_key_add_secret_subkey (GpgmeKey key)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
return add_subkey (key, 1);
|
2001-01-30 11:01:41 +00:00
|
|
|
}
|
2000-12-19 10:07:32 +00:00
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpgme_key_release:
|
|
|
|
* @key: Key Object or NULL
|
|
|
|
*
|
|
|
|
* Release the key object. Note, that this function may not do an
|
|
|
|
* actual release if there are other shallow copies of the objects.
|
|
|
|
* You have to call this function for every newly created key object
|
|
|
|
* as well as for every gpgme_key_ref() done on the key object.
|
|
|
|
**/
|
2000-11-10 17:50:24 +00:00
|
|
|
void
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_release (GpgmeKey key)
|
2000-11-10 17:50:24 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
struct user_id_s *u, *u2;
|
|
|
|
struct subkey_s *k, *k2;
|
2000-11-10 17:50:24 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (!key)
|
|
|
|
return;
|
2000-11-10 17:50:24 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
LOCK (key_ref_lock);
|
|
|
|
assert (key->ref_count);
|
|
|
|
if (--key->ref_count)
|
|
|
|
{
|
|
|
|
UNLOCK (key_ref_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
UNLOCK (key_ref_lock);
|
2001-01-22 20:22:41 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
xfree (key->keys.fingerprint);
|
|
|
|
for (k = key->keys.next; k; k = k2)
|
|
|
|
{
|
|
|
|
k2 = k->next;
|
|
|
|
xfree (k->fingerprint);
|
|
|
|
xfree (k);
|
2000-12-19 10:07:32 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
for (u = key->uids; u; u = u2)
|
|
|
|
{
|
|
|
|
u2 = u->next;
|
|
|
|
xfree (u);
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
xfree (key->issuer_serial);
|
|
|
|
xfree (key->issuer_name);
|
|
|
|
xfree (key->chain_id);
|
|
|
|
xfree (key);
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
/**
|
|
|
|
* gpgme_key_unref:
|
|
|
|
* @key: Key Object
|
|
|
|
*
|
|
|
|
* This is an alias for gpgme_key_release().
|
|
|
|
**/
|
2001-01-22 20:22:41 +00:00
|
|
|
void
|
|
|
|
gpgme_key_unref (GpgmeKey key)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_release (key);
|
2001-01-22 20:22:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-08 20:40:25 +00:00
|
|
|
static char *
|
2002-05-09 03:38:12 +00:00
|
|
|
set_user_id_part (char *tail, const char *buf, size_t len)
|
2001-01-08 20:40:25 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
while (len && (buf[len-1] == ' ' || buf[len-1] == '\t'))
|
|
|
|
len--;
|
|
|
|
for (; len; len--)
|
|
|
|
*tail++ = *buf++;
|
|
|
|
*tail++ = 0;
|
|
|
|
return tail;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
parse_user_id (struct user_id_s *uid, char *tail)
|
2001-01-08 20:40:25 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
const char *s, *start=NULL;
|
|
|
|
int in_name = 0;
|
|
|
|
int in_email = 0;
|
|
|
|
int in_comment = 0;
|
|
|
|
|
|
|
|
for (s = uid->name; *s; s++)
|
|
|
|
{
|
|
|
|
if (in_email)
|
|
|
|
{
|
|
|
|
if (*s == '<')
|
|
|
|
/* Not legal but anyway. */
|
|
|
|
in_email++;
|
|
|
|
else if (*s == '>')
|
|
|
|
{
|
|
|
|
if (!--in_email)
|
|
|
|
{
|
|
|
|
if (!uid->email_part)
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
uid->email_part = tail;
|
|
|
|
tail = set_user_id_part ( tail, start, s-start );
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (in_comment)
|
|
|
|
{
|
|
|
|
if (*s == '(')
|
|
|
|
in_comment++;
|
|
|
|
else if (*s== ')')
|
|
|
|
{
|
|
|
|
if (!--in_comment)
|
|
|
|
{
|
|
|
|
if (!uid->comment_part)
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
uid->comment_part = tail;
|
|
|
|
tail = set_user_id_part ( tail, start, s-start );
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*s == '<')
|
|
|
|
{
|
|
|
|
if (in_name)
|
|
|
|
{
|
|
|
|
if (!uid->name_part)
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
uid->name_part = tail;
|
2002-05-09 03:38:12 +00:00
|
|
|
tail = set_user_id_part (tail, start, s-start);
|
|
|
|
}
|
2001-01-08 20:40:25 +00:00
|
|
|
in_name = 0;
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
2001-01-08 20:40:25 +00:00
|
|
|
in_email = 1;
|
|
|
|
start = s+1;
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
|
|
|
else if (*s == '(')
|
|
|
|
{
|
|
|
|
if (in_name)
|
|
|
|
{
|
|
|
|
if (!uid->name_part)
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
uid->name_part = tail;
|
|
|
|
tail = set_user_id_part (tail, start, s-start );
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
2001-01-08 20:40:25 +00:00
|
|
|
in_name = 0;
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
2001-01-08 20:40:25 +00:00
|
|
|
in_comment = 1;
|
|
|
|
start = s+1;
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
|
|
|
else if (!in_name && *s != ' ' && *s != '\t')
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
in_name = 1;
|
|
|
|
start = s;
|
2002-05-09 03:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_name)
|
|
|
|
{
|
|
|
|
if (!uid->name_part)
|
|
|
|
{
|
2001-01-08 20:40:25 +00:00
|
|
|
uid->name_part = tail;
|
2002-05-09 03:38:12 +00:00
|
|
|
tail = set_user_id_part (tail, start, s-start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Let unused parts point to an EOS. */
|
2001-01-08 20:40:25 +00:00
|
|
|
tail--;
|
|
|
|
if (!uid->name_part)
|
2002-05-09 03:38:12 +00:00
|
|
|
uid->name_part = tail;
|
2001-01-08 20:40:25 +00:00
|
|
|
if (!uid->email_part)
|
2002-05-09 03:38:12 +00:00
|
|
|
uid->email_part = tail;
|
2001-01-08 20:40:25 +00:00
|
|
|
if (!uid->comment_part)
|
2002-05-09 03:38:12 +00:00
|
|
|
uid->comment_part = tail;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
|
|
|
|
2001-12-13 15:05:35 +00:00
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
parse_x509_user_id (struct user_id_s *uid, char *tail)
|
2001-12-13 15:05:35 +00:00
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
s=uid->name;
|
2002-05-09 03:38:12 +00:00
|
|
|
if (*s == '<' && s[strlen (s) - 1] == '>')
|
2001-12-13 15:05:35 +00:00
|
|
|
uid->email_part = s;
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
/* Let unused parts point to an EOS. */
|
2001-12-13 15:05:35 +00:00
|
|
|
tail--;
|
|
|
|
if (!uid->name_part)
|
|
|
|
uid->name_part = tail;
|
|
|
|
if (!uid->email_part)
|
|
|
|
uid->email_part = tail;
|
|
|
|
if (!uid->comment_part)
|
|
|
|
uid->comment_part = tail;
|
|
|
|
}
|
|
|
|
|
2000-11-10 17:50:24 +00:00
|
|
|
/*
|
|
|
|
* Take a name from the --with-colon listing, remove certain escape sequences
|
|
|
|
* sequences and put it into the list of UIDs
|
|
|
|
*/
|
|
|
|
GpgmeError
|
2001-12-18 19:54:00 +00:00
|
|
|
_gpgme_key_append_name (GpgmeKey key, const char *s)
|
2000-11-10 17:50:24 +00:00
|
|
|
{
|
2001-12-18 19:54:00 +00:00
|
|
|
struct user_id_s *uid;
|
|
|
|
char *d;
|
|
|
|
|
|
|
|
assert (key);
|
|
|
|
/* We can malloc a buffer of the same length, because the converted
|
|
|
|
string will never be larger. Actually we allocate it twice the
|
|
|
|
size, so that we are able to store the parsed stuff there too. */
|
|
|
|
uid = xtrymalloc ( sizeof *uid + 2*strlen (s)+3);
|
|
|
|
if (!uid)
|
|
|
|
return mk_error (Out_Of_Core);
|
|
|
|
uid->revoked = 0;
|
|
|
|
uid->invalid = 0;
|
|
|
|
uid->validity = 0;
|
|
|
|
uid->name_part = NULL;
|
|
|
|
uid->email_part = NULL;
|
|
|
|
uid->comment_part = NULL;
|
|
|
|
uid->next = NULL;
|
|
|
|
d = uid->name;
|
|
|
|
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
if (*s != '\\')
|
|
|
|
*d++ = *s++;
|
|
|
|
else if (s[1] == '\\')
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
*d++ = *s++;
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else if (s[1] == 'n')
|
|
|
|
{
|
|
|
|
s += 2;
|
|
|
|
*d++ = '\n';
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else if (s[1] == 'r')
|
|
|
|
{
|
|
|
|
s += 2;
|
|
|
|
*d++ = '\r';
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else if (s[1] == 'v')
|
|
|
|
{
|
|
|
|
s += 2;
|
|
|
|
*d++ = '\v';
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else if (s[1] == 'b')
|
|
|
|
{
|
|
|
|
s += 2;
|
|
|
|
*d++ = '\b';
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else if (s[1] == '0')
|
|
|
|
{
|
|
|
|
/* Hmmm: no way to express this */
|
|
|
|
s += 2;
|
|
|
|
*d++ = '\\';
|
|
|
|
*d++ = '\0';
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2002-06-02 23:09:16 +00:00
|
|
|
else if (s[1] == 'x' && isxdigit (s[2]) && isxdigit (s[3]))
|
2001-12-18 19:54:00 +00:00
|
|
|
{
|
2002-06-02 23:09:16 +00:00
|
|
|
int val = hextobyte (&s[2]);
|
|
|
|
if (val == -1)
|
2001-12-18 19:54:00 +00:00
|
|
|
{
|
2002-06-02 23:09:16 +00:00
|
|
|
/* Should not happen. */
|
|
|
|
*d++ = *s++;
|
|
|
|
*d++ = *s++;
|
|
|
|
*d++ = *s++;
|
|
|
|
*d++ = *s++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!val)
|
|
|
|
{
|
|
|
|
*d++ = '\\';
|
|
|
|
*d++ = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*(byte*)d++ = val;
|
|
|
|
s += 4;
|
|
|
|
}
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* should not happen */
|
|
|
|
s++;
|
|
|
|
*d++ = '\\';
|
|
|
|
*d++ = *s++;
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-18 19:54:00 +00:00
|
|
|
*d++ = 0;
|
|
|
|
if (key->x509)
|
|
|
|
parse_x509_user_id (uid, d);
|
|
|
|
else
|
|
|
|
parse_user_id (uid, d);
|
|
|
|
|
|
|
|
if (key->uids)
|
|
|
|
{
|
|
|
|
struct user_id_s *u = key->uids;
|
|
|
|
while (u->next)
|
|
|
|
u = u->next;
|
|
|
|
u->next = uid;
|
|
|
|
}
|
|
|
|
else
|
2000-11-10 17:50:24 +00:00
|
|
|
key->uids = uid;
|
2001-12-18 19:54:00 +00:00
|
|
|
|
|
|
|
return 0;
|
2000-11-10 17:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-15 21:36:48 +00:00
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
add_otag (GpgmeData d, const char *tag)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_data_append_string (d, " <");
|
|
|
|
_gpgme_data_append_string (d, tag);
|
|
|
|
_gpgme_data_append_string (d, ">");
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
add_ctag (GpgmeData d, const char *tag)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_data_append_string (d, "</");
|
|
|
|
_gpgme_data_append_string (d, tag);
|
|
|
|
_gpgme_data_append_string (d, ">\n");
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
add_tag_and_string (GpgmeData d, const char *tag, const char *string)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
add_otag (d, tag);
|
|
|
|
_gpgme_data_append_string_for_xml (d, string);
|
|
|
|
add_ctag (d, tag);
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
add_tag_and_uint (GpgmeData d, const char *tag, unsigned int val)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
char buf[30];
|
|
|
|
sprintf (buf, "%u", val);
|
|
|
|
add_tag_and_string (d, tag, buf);
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-05-09 03:38:12 +00:00
|
|
|
add_tag_and_time (GpgmeData d, const char *tag, time_t val)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
char buf[30];
|
2000-11-15 21:36:48 +00:00
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (!val || val == (time_t) - 1)
|
|
|
|
return;
|
|
|
|
sprintf (buf, "%lu", (unsigned long) val);
|
|
|
|
add_tag_and_string (d, tag, buf);
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
2001-03-13 20:17:22 +00:00
|
|
|
static void
|
|
|
|
one_uid_as_xml (GpgmeData d, struct user_id_s *u)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_data_append_string (d, " <userid>\n");
|
|
|
|
if (u->invalid)
|
|
|
|
_gpgme_data_append_string (d, " <invalid/>\n");
|
|
|
|
if (u->revoked)
|
|
|
|
_gpgme_data_append_string (d, " <revoked/>\n");
|
|
|
|
add_tag_and_string (d, "raw", u->name);
|
|
|
|
if (*u->name_part)
|
|
|
|
add_tag_and_string (d, "name", u->name_part);
|
|
|
|
if (*u->email_part)
|
|
|
|
add_tag_and_string (d, "email", u->email_part);
|
|
|
|
if (*u->comment_part)
|
|
|
|
add_tag_and_string (d, "comment", u->comment_part);
|
|
|
|
_gpgme_data_append_string (d, " </userid>\n");
|
2001-03-13 20:17:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
/**
|
|
|
|
* gpgme_key_get_as_xml:
|
|
|
|
* @key: Key object
|
|
|
|
*
|
|
|
|
* Return the key object as an XML string. The classer has to free
|
|
|
|
* that string.
|
|
|
|
*
|
|
|
|
* Return value: An XML string or NULL in case of a memory problem or
|
|
|
|
* a NULL passed as @key
|
|
|
|
**/
|
2000-11-15 21:36:48 +00:00
|
|
|
char *
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_get_as_xml (GpgmeKey key)
|
2000-11-15 21:36:48 +00:00
|
|
|
{
|
2002-03-28 17:43:02 +00:00
|
|
|
GpgmeData d;
|
|
|
|
struct user_id_s *u;
|
|
|
|
struct subkey_s *k;
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (!key)
|
2002-03-28 17:43:02 +00:00
|
|
|
return NULL;
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
if (gpgme_data_new (&d))
|
2002-03-28 17:43:02 +00:00
|
|
|
return NULL;
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_data_append_string (d, "<GnupgKeyblock>\n"
|
|
|
|
" <mainkey>\n");
|
|
|
|
if (key->keys.secret)
|
|
|
|
_gpgme_data_append_string (d, " <secret/>\n");
|
|
|
|
if (key->keys.flags.invalid)
|
|
|
|
_gpgme_data_append_string (d, " <invalid/>\n");
|
|
|
|
if (key->keys.flags.revoked)
|
|
|
|
_gpgme_data_append_string (d, " <revoked/>\n");
|
|
|
|
if (key->keys.flags.expired)
|
|
|
|
_gpgme_data_append_string (d, " <expired/>\n");
|
|
|
|
if (key->keys.flags.disabled)
|
|
|
|
_gpgme_data_append_string (d, " <disabled/>\n");
|
|
|
|
add_tag_and_string (d, "keyid", key->keys.keyid);
|
2002-03-28 17:43:02 +00:00
|
|
|
if (key->keys.fingerprint)
|
2002-05-09 03:38:12 +00:00
|
|
|
add_tag_and_string (d, "fpr", key->keys.fingerprint);
|
|
|
|
add_tag_and_uint (d, "algo", key->keys.key_algo);
|
|
|
|
add_tag_and_uint (d, "len", key->keys.key_len);
|
|
|
|
add_tag_and_time (d, "created", key->keys.timestamp);
|
|
|
|
add_tag_and_time (d, "expire", key->keys.expires_at);
|
2002-07-25 16:01:55 +00:00
|
|
|
add_tag_and_string (d, "otrust",
|
|
|
|
gpgme_key_get_string_attr (key, GPGME_ATTR_OTRUST,
|
|
|
|
NULL, 0));
|
2002-03-28 17:43:02 +00:00
|
|
|
if (key->issuer_serial)
|
|
|
|
add_tag_and_string (d, "serial", key->issuer_serial);
|
|
|
|
if (key->issuer_name)
|
|
|
|
add_tag_and_string (d, "issuer", key->issuer_name);
|
|
|
|
if (key->chain_id)
|
|
|
|
add_tag_and_string (d, "chainid", key->chain_id);
|
|
|
|
_gpgme_data_append_string (d, " </mainkey>\n");
|
2002-05-09 03:38:12 +00:00
|
|
|
|
2002-03-28 17:43:02 +00:00
|
|
|
/* Now the user IDs. */
|
|
|
|
for (u = key->uids; u; u = u->next)
|
|
|
|
one_uid_as_xml (d,u);
|
|
|
|
|
2002-05-09 03:38:12 +00:00
|
|
|
/* And now the subkeys. */
|
|
|
|
for (k = key->keys.next; k; k = k->next)
|
2002-03-28 17:43:02 +00:00
|
|
|
{
|
|
|
|
_gpgme_data_append_string (d, " <subkey>\n");
|
2002-05-09 03:38:12 +00:00
|
|
|
if (k->secret)
|
|
|
|
_gpgme_data_append_string (d, " <secret/>\n");
|
|
|
|
if (k->flags.invalid)
|
|
|
|
_gpgme_data_append_string (d, " <invalid/>\n");
|
|
|
|
if (k->flags.revoked)
|
|
|
|
_gpgme_data_append_string (d, " <revoked/>\n");
|
|
|
|
if (k->flags.expired)
|
|
|
|
_gpgme_data_append_string (d, " <expired/>\n");
|
|
|
|
if (k->flags.disabled)
|
|
|
|
_gpgme_data_append_string (d, " <disabled/>\n");
|
|
|
|
add_tag_and_string (d, "keyid", k->keyid);
|
2002-03-28 17:43:02 +00:00
|
|
|
if (k->fingerprint)
|
2002-05-09 03:38:12 +00:00
|
|
|
add_tag_and_string (d, "fpr", k->fingerprint);
|
|
|
|
add_tag_and_uint (d, "algo", k->key_algo);
|
|
|
|
add_tag_and_uint (d, "len", k->key_len);
|
|
|
|
add_tag_and_time (d, "created", k->timestamp);
|
|
|
|
add_tag_and_time (d, "expire", k->expires_at);
|
2002-03-28 17:43:02 +00:00
|
|
|
_gpgme_data_append_string (d, " </subkey>\n");
|
2000-12-19 10:07:32 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
_gpgme_data_append_string (d, "</GnupgKeyblock>\n");
|
2002-03-28 17:43:02 +00:00
|
|
|
|
|
|
|
return _gpgme_data_release_and_return_string (d);
|
2000-11-15 21:36:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:09:41 +00:00
|
|
|
static const char *
|
|
|
|
capabilities_to_string (struct subkey_s *k)
|
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
static const char *const strings[8] =
|
|
|
|
{
|
|
|
|
"",
|
|
|
|
"c",
|
|
|
|
"s",
|
|
|
|
"sc",
|
|
|
|
"e",
|
|
|
|
"ec",
|
|
|
|
"es",
|
|
|
|
"esc"
|
2001-03-15 13:09:41 +00:00
|
|
|
};
|
2002-05-09 03:38:12 +00:00
|
|
|
return strings[(!!k->flags.can_encrypt << 2)
|
|
|
|
| (!!k->flags.can_sign << 1)
|
|
|
|
| (!!k->flags.can_certify )];
|
2001-03-15 13:09:41 +00:00
|
|
|
}
|
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gpgme_key_get_string_attr:
|
|
|
|
* @key: Key Object
|
|
|
|
* @what: Attribute specifier
|
|
|
|
* @reserved: Must be 0
|
|
|
|
* @idx: Index counter
|
|
|
|
*
|
|
|
|
* Return a attribute as specified by @what and @idx. Note that not
|
|
|
|
* all attributes can be returned as a string, in which case NULL is
|
|
|
|
* returned. @idx is used to iterate through attributes which do have
|
|
|
|
* more than one instance (e.g. user IDs or sub keys).
|
|
|
|
*
|
|
|
|
* Return value: NULL or an const string which is only valid as long
|
|
|
|
* as the key object itself is valid.
|
|
|
|
**/
|
2001-01-08 20:40:25 +00:00
|
|
|
const char *
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_get_string_attr (GpgmeKey key, GpgmeAttr what,
|
|
|
|
const void *reserved, int idx)
|
2001-01-08 20:40:25 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
const char *val = NULL;
|
|
|
|
struct subkey_s *k;
|
|
|
|
struct user_id_s *u;
|
|
|
|
|
|
|
|
if (!key)
|
|
|
|
return NULL;
|
|
|
|
if (reserved)
|
|
|
|
return NULL;
|
|
|
|
if (idx < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
switch (what)
|
|
|
|
{
|
|
|
|
case GPGME_ATTR_KEYID:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->keyid;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_FPR:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->fingerprint;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_ALGO:
|
|
|
|
for (k = &key->keys; k && idx; k=k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = pkalgo_to_string (k->key_algo);
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_LEN:
|
|
|
|
case GPGME_ATTR_CREATED:
|
|
|
|
case GPGME_ATTR_EXPIRE:
|
|
|
|
/* Use another get function. */
|
|
|
|
break;
|
2002-05-10 10:42:45 +00:00
|
|
|
case GPGME_ATTR_OTRUST:
|
|
|
|
switch (key->otrust)
|
|
|
|
{
|
|
|
|
case GPGME_VALIDITY_NEVER: val = "n"; break;
|
|
|
|
case GPGME_VALIDITY_MARGINAL: val = "m"; break;
|
|
|
|
case GPGME_VALIDITY_FULL: val = "f"; break;
|
|
|
|
case GPGME_VALIDITY_ULTIMATE: val = "u"; break;
|
|
|
|
default: val = "?"; break;
|
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
break;
|
|
|
|
case GPGME_ATTR_USERID:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
val = u ? u->name : NULL;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_NAME:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
val = u ? u->name_part : NULL;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_EMAIL:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
val = u ? u->email_part : NULL;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_COMMENT:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
val = u ? u->comment_part : NULL;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_VALIDITY:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
if (u)
|
|
|
|
{
|
|
|
|
switch (u->validity)
|
|
|
|
{
|
|
|
|
case GPGME_VALIDITY_UNKNOWN:
|
|
|
|
val = "?";
|
|
|
|
break;
|
|
|
|
case GPGME_VALIDITY_UNDEFINED:
|
|
|
|
val = "q";
|
|
|
|
break;
|
|
|
|
case GPGME_VALIDITY_NEVER:
|
|
|
|
val = "n";
|
|
|
|
break;
|
|
|
|
case GPGME_VALIDITY_MARGINAL:
|
|
|
|
val = "m";
|
|
|
|
break;
|
|
|
|
case GPGME_VALIDITY_FULL:
|
|
|
|
val = "f";
|
|
|
|
break;
|
|
|
|
case GPGME_VALIDITY_ULTIMATE:
|
|
|
|
val = "u";
|
|
|
|
break;
|
2001-01-11 11:56:34 +00:00
|
|
|
}
|
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
break;
|
|
|
|
case GPGME_ATTR_LEVEL:
|
|
|
|
case GPGME_ATTR_TYPE:
|
|
|
|
case GPGME_ATTR_KEY_REVOKED:
|
|
|
|
case GPGME_ATTR_KEY_INVALID:
|
|
|
|
case GPGME_ATTR_KEY_EXPIRED:
|
|
|
|
case GPGME_ATTR_KEY_DISABLED:
|
|
|
|
case GPGME_ATTR_UID_REVOKED:
|
|
|
|
case GPGME_ATTR_UID_INVALID:
|
|
|
|
case GPGME_ATTR_CAN_ENCRYPT:
|
|
|
|
case GPGME_ATTR_CAN_SIGN:
|
|
|
|
case GPGME_ATTR_CAN_CERTIFY:
|
|
|
|
/* Not used here. */
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_IS_SECRET:
|
|
|
|
if (key->secret)
|
|
|
|
val = "1";
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_KEY_CAPS:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = capabilities_to_string (k);
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_SERIAL:
|
|
|
|
val = key->issuer_serial;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_ISSUER:
|
2002-05-30 09:06:45 +00:00
|
|
|
val = idx? NULL : key->issuer_name;
|
2002-05-09 03:38:12 +00:00
|
|
|
break;
|
|
|
|
case GPGME_ATTR_CHAINID:
|
|
|
|
val = key->chain_id;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_SIG_STATUS:
|
2002-07-25 16:01:55 +00:00
|
|
|
case GPGME_ATTR_SIG_SUMMARY:
|
2002-06-11 15:33:08 +00:00
|
|
|
case GPGME_ATTR_ERRTOK:
|
2002-05-09 03:38:12 +00:00
|
|
|
/* Not of any use here. */
|
|
|
|
break;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
return val;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-17 08:25:36 +00:00
|
|
|
/**
|
|
|
|
* gpgme_key_get_ulong_attr:
|
|
|
|
* @key:
|
|
|
|
* @what:
|
|
|
|
* @reserved:
|
|
|
|
* @idx:
|
|
|
|
*
|
|
|
|
* Return a attribute as specified by @what and @idx. Note that not
|
|
|
|
* all attributes can be returned as an integer, in which case 0 is
|
|
|
|
* returned. @idx is used to iterate through attributes which do have
|
|
|
|
* more than one instance (e.g. user IDs or sub keys).
|
|
|
|
*
|
|
|
|
* See gpgme.h for a list of attributes.
|
|
|
|
*
|
|
|
|
* Return value: 0 or the requested value.
|
|
|
|
**/
|
2001-01-08 20:40:25 +00:00
|
|
|
unsigned long
|
2002-05-09 03:38:12 +00:00
|
|
|
gpgme_key_get_ulong_attr (GpgmeKey key, GpgmeAttr what,
|
|
|
|
const void *reserved, int idx)
|
2001-01-08 20:40:25 +00:00
|
|
|
{
|
2002-05-09 03:38:12 +00:00
|
|
|
unsigned long val = 0;
|
|
|
|
struct subkey_s *k;
|
|
|
|
struct user_id_s *u;
|
|
|
|
|
|
|
|
if (!key)
|
|
|
|
return 0;
|
|
|
|
if (reserved)
|
|
|
|
return 0;
|
|
|
|
if (idx < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (what)
|
|
|
|
{
|
|
|
|
case GPGME_ATTR_ALGO:
|
|
|
|
for (k = &key->keys; k && idx; k=k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = (unsigned long) k->key_algo;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_LEN:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = (unsigned long) k->key_len;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_CREATED:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->timestamp < 0 ? 0L : (unsigned long) k->timestamp;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_EXPIRE:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->expires_at < 0 ? 0L : (unsigned long) k->expires_at;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_VALIDITY:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
if (u)
|
|
|
|
val = u->validity;
|
|
|
|
break;
|
2002-05-10 10:42:45 +00:00
|
|
|
case GPGME_ATTR_OTRUST:
|
|
|
|
val = key->otrust;
|
|
|
|
break;
|
2002-05-09 03:38:12 +00:00
|
|
|
case GPGME_ATTR_IS_SECRET:
|
|
|
|
val = !!key->secret;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_KEY_REVOKED:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->flags.revoked;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_KEY_INVALID:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->flags.invalid;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_KEY_EXPIRED:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->flags.expired;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_KEY_DISABLED:
|
|
|
|
for (k = &key->keys; k && idx; k = k->next, idx--)
|
|
|
|
;
|
|
|
|
if (k)
|
|
|
|
val = k->flags.disabled;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_UID_REVOKED:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
if (u)
|
|
|
|
val = u->revoked;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_UID_INVALID:
|
|
|
|
for (u = key->uids; u && idx; u = u->next, idx--)
|
|
|
|
;
|
|
|
|
if (u)
|
|
|
|
val = u->invalid;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_CAN_ENCRYPT:
|
|
|
|
val = key->gloflags.can_encrypt;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_CAN_SIGN:
|
|
|
|
val = key->gloflags.can_sign;
|
|
|
|
break;
|
|
|
|
case GPGME_ATTR_CAN_CERTIFY:
|
|
|
|
val = key->gloflags.can_certify;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|
2002-05-09 03:38:12 +00:00
|
|
|
return val;
|
2001-01-08 20:40:25 +00:00
|
|
|
}
|