]> the.earth.li Git - onak.git/blob - keydb.c
Add ability to drop overly large packets
[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_GETFULLKEYID
159 /**
160  *      getfullkeyid - Maps a 32bit key id to a 64bit one.
161  *      @keyid: The 32bit keyid.
162  *
163  *      This function maps a 32bit key id to the full 64bit one. It returns the
164  *      full keyid. If the key isn't found a keyid of 0 is returned.
165  */
166 uint64_t generic_getfullkeyid(struct onak_dbctx *dbctx, uint64_t keyid)
167 {
168         struct openpgp_publickey *publickey = NULL;
169
170         if (keyid < 0x100000000LL) {
171                 dbctx->fetch_key_id(dbctx, keyid, &publickey, false);
172                 if (publickey != NULL) {
173                         get_keyid(publickey, &keyid);
174                         free_publickey(publickey);
175                         publickey = NULL;
176                 } else {
177                         keyid = 0;
178                 }
179         }
180         
181         return keyid;
182 }
183 #endif
184
185 #ifdef NEED_UPDATEKEYS
186 /**
187  *      update_keys - Takes a list of public keys and updates them in the DB.
188  *      @keys: The keys to update in the DB.
189  *      @sendsync: Should we send a sync mail to our peers.
190  *
191  *      Takes a list of keys and adds them to the database, merging them with
192  *      the key in the database if it's already present there. The key list is
193  *      update to contain the minimum set of updates required to get from what
194  *      we had before to what we have now (ie the set of data that was added to
195  *      the DB). Returns the number of entirely new keys added.
196  */
197 int generic_update_keys(struct onak_dbctx *dbctx,
198                 struct openpgp_publickey **keys, bool sendsync)
199 {
200         struct openpgp_publickey *curkey = NULL;
201         struct openpgp_publickey *oldkey = NULL;
202         struct openpgp_publickey *prev = NULL;
203         int newkeys = 0;
204         bool intrans;
205         uint64_t keyid;
206
207         for (curkey = *keys; curkey != NULL; curkey = curkey->next) {
208                 intrans = dbctx->starttrans(dbctx);
209                 get_keyid(curkey, &keyid);
210                 logthing(LOGTHING_INFO,
211                         "Fetching key 0x%" PRIX64 ", result: %d",
212                         keyid,
213                         dbctx->fetch_key_id(dbctx, keyid, &oldkey,
214                                         intrans));
215
216                 /*
217                  * If we already have the key stored in the DB then merge it
218                  * with the new one that's been supplied. Otherwise the key
219                  * we've just got is the one that goes in the DB and also the
220                  * one that we send out.
221                  */
222                 if (oldkey != NULL) {
223                         merge_keys(oldkey, curkey);
224                         if (curkey->sigs == NULL &&
225                                         curkey->uids == NULL &&
226                                         curkey->subkeys == NULL) {
227                                 if (prev == NULL) {
228                                         *keys = curkey->next;
229                                 } else {
230                                         prev->next = curkey->next;
231                                         curkey->next = NULL;
232                                         free_publickey(curkey);
233                                         curkey = prev;
234                                 }
235                         } else {
236                                 prev = curkey;
237                                 logthing(LOGTHING_INFO,
238                                         "Merged key; storing updated key.");
239                                 dbctx->store_key(dbctx, oldkey, intrans,
240                                         true);
241                         }
242                         free_publickey(oldkey);
243                         oldkey = NULL;
244                 } else {
245                         logthing(LOGTHING_INFO,
246                                 "Storing completely new key.");
247                         dbctx->store_key(dbctx, curkey, intrans, false);
248                         newkeys++;
249                 }
250                 dbctx->endtrans(dbctx);
251         }
252
253         if (sendsync && keys != NULL) {
254                 sendkeysync(*keys);
255         }
256
257         return newkeys;
258 }
259 #endif /* NEED_UPDATEKEYS */
260
261 #ifdef NEED_GET_FP
262 static int generic_fetch_key_fp(struct onak_dbctx *dbctx,
263                 struct openpgp_fingerprint *fingerprint,
264                 struct openpgp_publickey **publickey, bool intrans)
265 {
266         uint64_t keyid;
267         int i;
268
269         if (fingerprint->length > MAX_FINGERPRINT_LEN) {
270                 return 0;
271         }
272
273         /*
274          * We assume if the backend is using this function it's not storing
275          * anything bigger than the 64 bit key ID and just truncate the
276          * fingerprint to get that value. This doesn't work for v3 keys,
277          * but there's no way to map from v3 fingerprint to v3 key ID so
278          * if the backend can't do it we're going to fail anyway.
279          */
280         keyid = 0;
281         for (i = (fingerprint->length - 8); i < fingerprint->length; i++) {
282                 keyid = (keyid << 8) + fingerprint->fp[i];
283         }
284
285         return dbctx->fetch_key_id(dbctx, keyid, publickey, intrans);
286 }
287 #endif