2 * decodekey.c - Routines to further decode an OpenPGP key.
4 * Copyright 2002-2008 Jonathan McDowell <noodles@earth.li>
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 #include "decodekey.h"
29 #include "keystructs.h"
35 * parse_subpackets - Parse the subpackets of a Type 4 signature.
36 * @data: The subpacket data.
37 * @keyid: A pointer to where we should return the keyid.
38 * @creationtime: A pointer to where we should return the creation time.
40 * This function parses the subkey data of a Type 4 signature and fills
41 * in the supplied variables. It also returns the length of the data
42 * processed. If the value of any piece of data is not desired a NULL
43 * can be passed instead of a pointer to a storage area for that value.
45 int parse_subpackets(unsigned char *data, uint64_t *keyid, time_t *creation)
51 log_assert(data != NULL);
53 length = (data[0] << 8) + data[1] + 2;
56 while (offset < length) {
57 packetlen = data[offset++];
58 if (packetlen > 191 && packetlen < 255) {
59 packetlen = ((packetlen - 192) << 8) +
61 } else if (packetlen == 255) {
62 packetlen = data[offset++];
64 packetlen = data[offset++];
66 packetlen = data[offset++];
68 packetlen = data[offset++];
70 switch (data[offset] & 0x7F) {
71 case OPENPGP_SIGSUB_CREATION:
73 * Signature creation time.
75 if (creation != NULL) {
76 *creation = data[offset + packetlen - 4];
78 *creation = data[offset + packetlen - 3];
80 *creation = data[offset + packetlen - 2];
82 *creation = data[offset + packetlen - 1];
85 case OPENPGP_SIGSUB_EXPIRY:
87 * Signature expiration time. Might want to output this?
90 case OPENPGP_SIGSUB_REGEX:
92 * Regular expression for UIDs this sig is over.
95 case OPENPGP_SIGSUB_ISSUER:
97 *keyid = data[offset+packetlen - 8];
99 *keyid += data[offset+packetlen - 7];
101 *keyid += data[offset+packetlen - 6];
103 *keyid += data[offset+packetlen - 5];
105 *keyid += data[offset+packetlen - 4];
107 *keyid += data[offset+packetlen - 3];
109 *keyid += data[offset+packetlen - 2];
111 *keyid += data[offset+packetlen - 1];
114 case OPENPGP_SIGSUB_NOTATION:
120 case OPENPGP_SIGSUB_KEYSERVER:
122 * Key server preferences. Including no-modify.
125 case OPENPGP_SIGSUB_PRIMARYUID:
130 case OPENPGP_SIGSUB_POLICYURI:
137 * We don't care about unrecognized packets unless bit
138 * 7 is set in which case we log a major error.
140 if (data[offset] & 0x80) {
141 logthing(LOGTHING_CRITICAL,
142 "Critical subpacket type not parsed: 0x%X",
154 * keysigs - Return the sigs on a given OpenPGP signature list.
155 * @curll: The current linked list. Can be NULL to create a new list.
156 * @sigs: The signature list we want the sigs on.
158 * Returns a linked list of stats_key elements containing the sigs on the
159 * supplied OpenPGP packet list.
161 struct ll *keysigs(struct ll *curll,
162 struct openpgp_packet_list *sigs)
166 while (sigs != NULL) {
167 keyid = sig_keyid(sigs->packet);
169 curll = lladd(curll, createandaddtohash(keyid));
176 * sig_info - Get info on a given OpenPGP signature packet
177 * @packet: The signature packet
178 * @keyid: A pointer for where to return the signature keyid
179 * @creation: A pointer for where to return the signature creation time
181 * Gets any info about a signature packet; parses the subpackets for a v4
182 * key or pulls the data directly from v2/3. NULL can be passed for any
183 * values which aren't cared about.
185 void sig_info(struct openpgp_packet *packet, uint64_t *keyid, time_t *creation)
189 if (packet != NULL) {
190 switch (packet->data[0]) {
194 *keyid = packet->data[7];
196 *keyid += packet->data[8];
198 *keyid += packet->data[9];
200 *keyid += packet->data[10];
202 *keyid += packet->data[11];
204 *keyid += packet->data[12];
206 *keyid += packet->data[13];
208 *keyid += packet->data[14];
210 if (creation != NULL) {
211 *creation = packet->data[3];
213 *creation = packet->data[4];
215 *creation = packet->data[5];
217 *creation = packet->data[6];
221 length = parse_subpackets(&packet->data[4],
223 parse_subpackets(&packet->data[length + 4],
226 * Don't bother to look at the unsigned packets.
238 * sig_keyid - Return the keyid for a given OpenPGP signature packet.
239 * @packet: The signature packet.
241 * Returns the keyid for the supplied signature packet.
243 uint64_t sig_keyid(struct openpgp_packet *packet)
247 sig_info(packet, &keyid, NULL);
254 * TODO: Abstract out; all our linked lists should be generic and then we can
257 int spsize(struct openpgp_signedpacket_list *list)
260 struct openpgp_signedpacket_list *cur;
262 for (cur = list; cur != NULL; cur = cur->next, size++) ;
268 * keyuids - Takes a key and returns an array of its UIDs
269 * @key: The key to get the uids of.
270 * @primary: A pointer to store the primary UID in.
272 * keyuids takes a public key structure and builds an array of the UIDs
273 * on the key. It also attempts to work out the primary UID and returns a
274 * separate pointer to that particular element of the array.
276 char **keyuids(struct openpgp_publickey *key, char **primary)
278 struct openpgp_signedpacket_list *curuid = NULL;
283 if (primary != NULL) {
287 if (key != NULL && key->uids != NULL) {
288 uids = malloc((spsize(key->uids) + 1) * sizeof (char *));
291 while (curuid != NULL) {
293 if (curuid->packet->tag == OPENPGP_PACKET_UID) {
294 snprintf(buf, 1023, "%.*s",
295 (int) curuid->packet->length,
296 curuid->packet->data);
297 uids[count++] = strdup(buf);
299 curuid = curuid -> next;
304 * TODO: Parse subpackets for real primary ID (v4 keys)
306 if (primary != NULL) {
315 * keysubkeys - Takes a key and returns an array of its subkey keyids.
316 * @key: The key to get the subkeys of.
318 * keysubkeys takes a public key structure and returns an array of the
319 * subkey keyids for that key.
321 uint64_t *keysubkeys(struct openpgp_publickey *key)
323 struct openpgp_signedpacket_list *cursubkey = NULL;
324 uint64_t *subkeys = NULL;
327 if (key != NULL && key->subkeys != NULL) {
328 subkeys = malloc((spsize(key->subkeys) + 1) *
330 cursubkey = key->subkeys;
331 while (cursubkey != NULL) {
332 subkeys[count++] = get_packetid(cursubkey->packet);
333 cursubkey = cursubkey -> next;