]> the.earth.li Git - onak.git/blob - keydb.c
f362b1adddf3e59fc338ea686e9b70c89992b331
[onak.git] / keydb.c
1 /*
2  * keydb.c - Routines for DB access that just use store/fetch.
3  *
4  * Copyright 2002-2004 Jonathan McDowell <noodles@earth.li>
5  *
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.
9  *
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
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18
19 /**
20  *      The routines in this file are meant to be used as an initial step when
21  *      adding a new db access module. They provide various functions required
22  *      of the db access module using only the store and fetch functions. As
23  *      they need to parse the actual OpenPGP data to work they are a lot
24  *      slower than custom functions however.
25  */
26
27 #include <stdbool.h>
28 #include <stdio.h>
29
30 #include "decodekey.h"
31 #include "hash.h"
32 #include "keydb.h"
33 #include "keyid.h"
34 #include "keystructs.h"
35 #include "ll.h"
36 #include "mem.h"
37 #include "merge.h"
38 #include "openpgp.h"
39 #include "sendsync.h"
40 #include "stats.h"
41
42 #ifdef NEED_KEYID2UID
43 /**
44  *      keyid2uid - Takes a keyid and returns the primary UID for it.
45  *      @keyid: The keyid to lookup.
46  */
47 char *generic_keyid2uid(struct onak_dbctx *dbctx, uint64_t keyid)
48 {
49         struct openpgp_publickey *publickey = NULL;
50         struct openpgp_signedpacket_list *curuid = NULL;
51         char buf[1024];
52
53         buf[0]=0;
54         if (dbctx->fetch_key_id(dbctx, keyid, &publickey, false) &&
55                         publickey != NULL) {
56                 curuid = publickey->uids;
57                 while (curuid != NULL && buf[0] == 0) {
58                         if (curuid->packet->tag == OPENPGP_PACKET_UID) {
59                                 snprintf(buf, 1023, "%.*s",
60                                                 (int) curuid->packet->length,
61                                                 curuid->packet->data);
62                         }
63                         curuid = curuid -> next;
64                 }
65                 free_publickey(publickey);
66         }
67
68         if (buf[0] == 0) {
69                 return NULL;
70         } else {
71                 return strdup(buf);
72         }
73 }
74 #endif
75
76 #ifdef NEED_GETKEYSIGS
77 /**
78  *      getkeysigs - Gets a linked list of the signatures on a key.
79  *      @keyid: The keyid to get the sigs for.
80  *      @revoked: Is the key revoked?
81  *
82  *      This function gets the list of signatures on a key. Used for key 
83  *      indexing and doing stats bits. If revoked is non-NULL then if the key
84  *      is revoked it's set to true.
85  */
86 struct ll *generic_getkeysigs(struct onak_dbctx *dbctx,
87                 uint64_t keyid, bool *revoked)
88 {
89         struct ll *sigs = NULL;
90         struct openpgp_signedpacket_list *uids = NULL;
91         struct openpgp_packet_list *cursig;
92         struct openpgp_publickey *publickey = NULL;
93
94         dbctx->fetch_key_id(dbctx, keyid, &publickey, false);
95         
96         if (publickey != NULL) {
97                 for (uids = publickey->uids; uids != NULL; uids = uids->next) {
98                         for (cursig = uids->sigs; cursig != NULL;
99                                         cursig = cursig->next) {
100                                 sigs = lladd(sigs,
101                                                 createandaddtohash(sig_keyid(
102                                                         cursig->packet)));
103                         }
104                 }
105                 if (revoked != NULL) {
106                         *revoked = publickey->revoked;
107                 }
108                 free_publickey(publickey);
109         }
110
111         return sigs;
112 }
113 #endif
114
115 /**
116  *      cached_getkeysigs - Gets the signatures on a key.
117  *      @keyid: The key we want the signatures for.
118  *      
119  *      This function gets the signatures on a key. It's the same as the
120  *      getkeysigs function above except we use the hash module to cache the
121  *      data so if we need it again it's already loaded.
122  */
123 struct ll *generic_cached_getkeysigs(struct onak_dbctx *dbctx, uint64_t keyid)
124 {
125         struct stats_key *key = NULL;
126         struct stats_key *signedkey = NULL;
127         struct ll        *cursig = NULL;
128         struct ll        *sigs = NULL;
129         bool              revoked = false;
130
131         if (keyid == 0)  {
132                 return NULL;
133         }
134
135         key = findinhash(keyid);
136
137         if (key == NULL || key->gotsigs == false) {
138                 sigs = dbctx->getkeysigs(dbctx, keyid, &revoked);
139                 if (sigs == NULL) {
140                         return NULL;
141                 }
142                 if (key == NULL) {
143                         key = createandaddtohash(keyid);
144                 }
145                 key->sigs = sigs;
146                 key->revoked = revoked;
147                 for (cursig = key->sigs; cursig != NULL;
148                                 cursig = cursig->next) {
149                         signedkey = (struct stats_key *) cursig->object;
150                         signedkey->signs = lladd(signedkey->signs, key);
151                 }
152                 key->gotsigs = true;
153         }
154
155         return key->sigs;
156 }
157
158 #ifdef NEED_UPDATEKEYS
159 /**
160  *      update_keys - Takes a list of public keys and updates them in the DB.
161  *      @keys: The keys to update in the DB.
162  *      @sendsync: Should we send a sync mail to our peers.
163  *
164  *      Takes a list of keys and adds them to the database, merging them with
165  *      the key in the database if it's already present there. The key list is
166  *      update to contain the minimum set of updates required to get from what
167  *      we had before to what we have now (ie the set of data that was added to
168  *      the DB). Returns the number of entirely new keys added.
169  */
170 int generic_update_keys(struct onak_dbctx *dbctx,
171                 struct openpgp_publickey **keys,
172                 struct keyarray *blacklist,
173                 bool sendsync)
174 {
175         struct openpgp_publickey **curkey, *tmp = NULL;
176         struct openpgp_publickey *oldkey = NULL;
177         struct openpgp_fingerprint fp;
178         int newkeys = 0;
179         bool intrans;
180
181         curkey = keys;
182         while (*curkey != NULL) {
183                 get_fingerprint((*curkey)->publickey, &fp);
184                 if (blacklist && array_find(blacklist, &fp)) {
185                         logthing(LOGTHING_INFO, "Ignoring blacklisted key.");
186                         tmp = *curkey;
187                         *curkey = (*curkey)->next;
188                         tmp->next = NULL;
189                         free_publickey(tmp);
190                         continue;
191                 }
192
193                 intrans = dbctx->starttrans(dbctx);
194
195                 logthing(LOGTHING_INFO,
196                         "Fetching key, result: %d",
197                         dbctx->fetch_key_fp(dbctx, &fp, &oldkey,
198                                         intrans));
199
200                 /*
201                  * If we already have the key stored in the DB then merge it
202                  * with the new one that's been supplied. Otherwise the key
203                  * we've just got is the one that goes in the DB and also the
204                  * one that we send out.
205                  */
206                 if (oldkey != NULL) {
207                         merge_keys(oldkey, *curkey);
208                         if ((*curkey)->sigs == NULL &&
209                                         (*curkey)->uids == NULL &&
210                                         (*curkey)->subkeys == NULL) {
211                                 tmp = *curkey;
212                                 *curkey = (*curkey)->next;
213                                 tmp->next = NULL;
214                                 free_publickey(tmp);
215                         } else {
216                                 logthing(LOGTHING_INFO,
217                                         "Merged key; storing updated key.");
218                                 dbctx->store_key(dbctx, oldkey, intrans,
219                                         true);
220                                 curkey = &(*curkey)->next;
221                         }
222                         free_publickey(oldkey);
223                         oldkey = NULL;
224                 } else {
225                         logthing(LOGTHING_INFO,
226                                 "Storing completely new key.");
227                         dbctx->store_key(dbctx, *curkey, intrans, false);
228                         newkeys++;
229                         curkey = &(*curkey)->next;
230                 }
231                 dbctx->endtrans(dbctx);
232         }
233
234         if (sendsync && keys != NULL && *keys != NULL) {
235                 sendkeysync(*keys);
236         }
237
238         return newkeys;
239 }
240 #endif /* NEED_UPDATEKEYS */
241
242 #ifdef NEED_GET_FP
243 static int generic_fetch_key_fp(struct onak_dbctx *dbctx,
244                 struct openpgp_fingerprint *fingerprint,
245                 struct openpgp_publickey **publickey, bool intrans)
246 {
247         uint64_t keyid;
248         int i;
249
250         if (fingerprint->length > MAX_FINGERPRINT_LEN) {
251                 return 0;
252         }
253
254         /*
255          * We assume if the backend is using this function it's not storing
256          * anything bigger than the 64 bit key ID and just truncate the
257          * fingerprint to get that value. v4 keys want the lowest 64 bits, v5
258          * keys need the top 64 bits.  This doesn't work for v3 keys,
259          * but there's no way to map from v3 fingerprint to v3 key ID so
260          * if the backend can't do it we're going to fail anyway.
261          */
262         keyid = 0;
263         if (fingerprint->length == 20) {
264                 /* v4 */
265                 for (i = (fingerprint->length - 8); i < fingerprint->length;
266                                 i++) {
267                         keyid = (keyid << 8) + fingerprint->fp[i];
268                 }
269         } else {
270                 /* v5 */
271                 for (i = 0; i < 8; i++) {
272                         keyid = (keyid << 8) + fingerprint->fp[i];
273                 }
274         }
275
276         return dbctx->fetch_key_id(dbctx, keyid, publickey, intrans);
277 }
278 #endif