2 * keydb_db4.c - Routines to store and fetch keys in a DB4 database.
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.
20 #include <sys/types.h>
33 #include "charfuncs.h"
37 #include "decodekey.h"
38 #include "keystructs.h"
41 #include "onak-conf.h"
45 #define DB4_UPGRADE_FILE "db_upgrade.lck"
48 * dbenv - our database environment.
50 static DB_ENV *dbenv = NULL;
53 * numdb - The number of database files we have.
55 static int numdbs = 16;
58 * dbconn - our connections to the key database files.
60 static DB **dbconns = NULL;
63 * worddb - our connection to the word database.
65 static DB *worddb = NULL;
68 * id32db - our connection to the 32bit ID database.
70 static DB *id32db = NULL;
73 * skshashdb - our connection to the SKS hash database.
75 static DB *skshashdb = NULL;
78 * txn - our current transaction id.
80 static DB_TXN *txn = NULL;
82 DB *keydb(uint64_t keyid)
88 return(dbconns[keytrun % numdbs]);
92 * db4_errfunc - Direct DB errors to logfile
94 * Basic function to take errors from the DB library and output them to
95 * the logfile rather than stderr.
97 #if (DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR < 3)
98 static void db4_errfunc(const char *errpfx, const char *errmsg)
100 static void db4_errfunc(const DB_ENV *edbenv, const char *errpfx,
105 logthing(LOGTHING_DEBUG, "db4 error: %s:%s", errpfx, errmsg);
107 logthing(LOGTHING_DEBUG, "db4 error: %s", errmsg);
114 * starttrans - Start a transaction.
116 * Start a transaction. Intended to be used if we're about to perform many
117 * operations on the database to help speed it all up, or if we want
118 * something to only succeed if all relevant operations are successful.
120 static bool db4_starttrans(void)
124 log_assert(dbenv != NULL);
125 log_assert(txn == NULL);
127 ret = dbenv->txn_begin(dbenv,
128 NULL, /* No parent transaction */
132 logthing(LOGTHING_CRITICAL,
133 "Error starting transaction: %s",
142 * endtrans - End a transaction.
144 * Ends a transaction.
146 static void db4_endtrans(void)
150 log_assert(dbenv != NULL);
151 log_assert(txn != NULL);
153 ret = txn->commit(txn,
156 logthing(LOGTHING_CRITICAL,
157 "Error ending transaction: %s",
167 * cleanupdb - De-initialize the key database.
169 * This function should be called upon program exit to allow the DB to
170 * cleanup after itself.
172 static void db4_cleanupdb(void)
177 dbenv->txn_checkpoint(dbenv, 0, 0, 0);
178 if (skshashdb != NULL) {
179 skshashdb->close(skshashdb, 0);
182 if (id32db != NULL) {
183 id32db->close(id32db, 0);
186 if (worddb != NULL) {
187 worddb->close(worddb, 0);
190 for (i = 0; i < numdbs; i++) {
191 if (dbconns[i] != NULL) {
192 dbconns[i]->close(dbconns[i], 0);
198 dbenv->close(dbenv, 0);
204 * db4_upgradedb - Upgrade a DB4 database
206 * Called if we discover we need to upgrade our DB4 database; ie if
207 * we're running with a newer version of db4 than the database was
210 static int db4_upgradedb(int numdb)
219 snprintf(buf, sizeof(buf) - 1, "%s/%s", config.db_dir,
221 lockfile_fd = open(buf, O_RDWR | O_CREAT | O_EXCL, 0600);
222 if (lockfile_fd < 0) {
223 if (errno == EEXIST) {
224 while (stat(buf, &statbuf) == 0) ;
227 logthing(LOGTHING_CRITICAL, "Couldn't open database "
228 "update lock file: %s", strerror(errno));
232 snprintf(buf, sizeof(buf) - 1, "%d", getpid());
233 write(lockfile_fd, buf, strlen(buf));
236 logthing(LOGTHING_NOTICE, "Upgrading DB4 database");
237 ret = db_env_create(&dbenv, 0);
238 dbenv->set_errcall(dbenv, &db4_errfunc);
239 dbenv->remove(dbenv, config.db_dir, 0);
241 for (i = 0; i < numdb; i++) {
242 ret = db_create(&curdb, NULL, 0);
244 snprintf(buf, sizeof(buf) - 1, "%s/keydb.%d.db",
246 logthing(LOGTHING_DEBUG, "Upgrading %s", buf);
247 ret = curdb->upgrade(curdb, buf, 0);
248 curdb->close(curdb, 0);
250 logthing(LOGTHING_ERROR, "Error upgrading DB %s : %s",
256 ret = db_create(&curdb, NULL, 0);
258 snprintf(buf, sizeof(buf) - 1, "%s/worddb", config.db_dir);
259 logthing(LOGTHING_DEBUG, "Upgrading %s", buf);
260 ret = curdb->upgrade(curdb, buf, 0);
261 curdb->close(curdb, 0);
263 logthing(LOGTHING_ERROR, "Error upgrading DB %s : %s",
268 ret = db_create(&curdb, NULL, 0);
270 snprintf(buf, sizeof(buf) - 1, "%s/id32db", config.db_dir);
271 logthing(LOGTHING_DEBUG, "Upgrading %s", buf);
272 ret = curdb->upgrade(curdb, buf, 0);
273 curdb->close(curdb, 0);
275 logthing(LOGTHING_ERROR, "Error upgrading DB %s : %s",
280 ret = db_create(&curdb, NULL, 0);
282 snprintf(buf, sizeof(buf) - 1, "%s/skshashdb", config.db_dir);
283 logthing(LOGTHING_DEBUG, "Upgrading %s", buf);
284 ret = curdb->upgrade(curdb, buf, 0);
285 curdb->close(curdb, 0);
287 logthing(LOGTHING_ERROR, "Error upgrading DB %s : %s",
292 snprintf(buf, sizeof(buf) - 1, "%s/%s", config.db_dir,
300 * initdb - Initialize the key database.
302 * This function should be called before any of the other functions in
303 * this file are called in order to allow the DB to be initialized ready
306 static void db4_initdb(bool readonly)
316 snprintf(buf, sizeof(buf) - 1, "%s/%s", config.db_dir,
318 ret = stat(buf, &statbuf);
319 while ((ret == 0) || (errno != ENOENT)) {
321 logthing(LOGTHING_CRITICAL, "Couldn't stat upgrade "
322 "lock file: %s (%d)", strerror(errno), ret);
325 logthing(LOGTHING_DEBUG, "DB4 upgrade in progress; waiting.");
327 ret = stat(buf, &statbuf);
331 snprintf(buf, sizeof(buf) - 1, "%s/num_keydb", config.db_dir);
332 numdb = fopen(buf, "r");
334 if (fgets(buf, sizeof(buf), numdb) != NULL) {
338 } else if (!readonly) {
339 logthing(LOGTHING_ERROR, "Couldn't open num_keydb: %s",
341 numdb = fopen(buf, "w");
343 fprintf(numdb, "%d", numdbs);
346 logthing(LOGTHING_ERROR,
347 "Couldn't write num_keydb: %s",
352 dbconns = calloc(numdbs, sizeof (DB *));
353 if (dbconns == NULL) {
354 logthing(LOGTHING_CRITICAL,
355 "Couldn't allocate memory for dbconns");
360 ret = db_env_create(&dbenv, 0);
362 logthing(LOGTHING_CRITICAL,
363 "db_env_create: %s", db_strerror(ret));
368 * Up the number of locks we're allowed at once. We base this on
369 * the maximum number of keys we're going to return.
371 maxlocks = config.maxkeys * 16;
372 if (maxlocks < 1000) {
375 dbenv->set_lk_max_locks(dbenv, maxlocks);
376 dbenv->set_lk_max_objects(dbenv, maxlocks);
379 * Enable deadlock detection so that we don't block indefinitely on
380 * anything. What we really want is simple 2 state locks, but I'm not
381 * sure how to make the standard DB functions do that yet.
384 dbenv->set_errcall(dbenv, &db4_errfunc);
385 ret = dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT);
387 logthing(LOGTHING_CRITICAL,
388 "db_env_create: %s", db_strerror(ret));
393 ret = dbenv->open(dbenv, config.db_dir,
394 DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_LOCK |
398 #ifdef DB_VERSION_MISMATCH
399 if (ret == DB_VERSION_MISMATCH) {
400 dbenv->close(dbenv, 0);
402 ret = db4_upgradedb(numdbs);
404 ret = db_env_create(&dbenv, 0);
407 dbenv->set_errcall(dbenv, &db4_errfunc);
408 dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT);
409 ret = dbenv->open(dbenv, config.db_dir,
410 DB_INIT_LOG | DB_INIT_MPOOL |
411 DB_INIT_LOCK | DB_INIT_TXN |
412 DB_CREATE | DB_RECOVER,
416 dbenv->txn_checkpoint(dbenv,
425 logthing(LOGTHING_CRITICAL,
426 "Error opening db environment: %s (%s)",
429 dbenv->close(dbenv, 0);
437 for (i = 0; !ret && i < numdbs; i++) {
438 ret = db_create(&dbconns[i], dbenv, 0);
440 logthing(LOGTHING_CRITICAL,
441 "db_create: %s", db_strerror(ret));
445 snprintf(buf, 1023, "keydb.%d.db", i);
450 ret = dbconns[i]->open(dbconns[i],
458 logthing(LOGTHING_CRITICAL,
459 "Error opening key database:"
470 ret = db_create(&worddb, dbenv, 0);
472 logthing(LOGTHING_CRITICAL, "db_create: %s",
478 ret = worddb->set_flags(worddb, DB_DUP);
482 ret = worddb->open(worddb, txn, "worddb", "worddb", DB_BTREE,
486 logthing(LOGTHING_CRITICAL,
487 "Error opening word database: %s (%s)",
494 ret = db_create(&id32db, dbenv, 0);
496 logthing(LOGTHING_CRITICAL, "db_create: %s",
502 ret = id32db->set_flags(id32db, DB_DUP);
506 ret = id32db->open(id32db, txn, "id32db", "id32db", DB_HASH,
510 logthing(LOGTHING_CRITICAL,
511 "Error opening id32 database: %s (%s)",
518 ret = db_create(&skshashdb, dbenv, 0);
520 logthing(LOGTHING_CRITICAL, "db_create: %s",
526 ret = skshashdb->open(skshashdb, txn, "skshashdb",
527 "skshashdb", DB_HASH,
531 logthing(LOGTHING_CRITICAL,
532 "Error opening skshash database: %s (%s)",
544 logthing(LOGTHING_CRITICAL,
545 "Error opening database; exiting");
553 * getfullkeyid - Maps a 32bit key id to a 64bit one.
554 * @keyid: The 32bit keyid.
556 * This function maps a 32bit key id to the full 64bit one. It returns the
557 * full keyid. If the key isn't found a keyid of 0 is returned.
559 static uint64_t db4_getfullkeyid(uint64_t keyid)
563 uint32_t shortkeyid = 0;
566 if (keyid < 0x100000000LL) {
567 ret = id32db->cursor(id32db,
572 shortkeyid = keyid & 0xFFFFFFFF;
574 memset(&key, 0, sizeof(key));
575 memset(&data, 0, sizeof(data));
576 key.data = &shortkeyid;
577 key.size = sizeof(shortkeyid);
578 data.flags = DB_DBT_MALLOC;
580 ret = cursor->c_get(cursor,
586 keyid = *(uint64_t *) data.data;
588 if (data.data != NULL) {
594 ret = cursor->c_close(cursor);
602 * fetch_key - Given a keyid fetch the key from storage.
603 * @keyid: The keyid to fetch.
604 * @publickey: A pointer to a structure to return the key in.
605 * @intrans: If we're already in a transaction.
607 * We use the hex representation of the keyid as the filename to fetch the
608 * key from. The key is stored in the file as a binary OpenPGP stream of
609 * packets, so we can just use read_openpgp_stream() to read the packets
610 * in and then parse_keys() to parse the packets into a publickey
613 static int db4_fetch_key(uint64_t keyid, struct openpgp_publickey **publickey,
616 struct openpgp_packet_list *packets = NULL;
620 struct buffer_ctx fetchbuf;
622 if (keyid < 0x100000000LL) {
623 keyid = db4_getfullkeyid(keyid);
626 memset(&key, 0, sizeof(key));
627 memset(&data, 0, sizeof(data));
632 key.size = sizeof(keyid);
639 ret = keydb(keyid)->get(keydb(keyid),
646 fetchbuf.buffer = data.data;
648 fetchbuf.size = data.size;
649 read_openpgp_stream(buffer_fetchchar, &fetchbuf,
651 parse_keys(packets, publickey);
652 free_packet_list(packets);
655 } else if (ret != DB_NOTFOUND) {
656 logthing(LOGTHING_ERROR,
657 "Problem retrieving key: %s",
668 int worddb_cmp(const void *d1, const void *d2)
670 return memcmp(d1, d2, 12);
674 * fetch_key_text - Trys to find the keys that contain the supplied text.
675 * @search: The text to search for.
676 * @publickey: A pointer to a structure to return the key in.
678 * This function searches for the supplied text and returns the keys that
681 static int db4_fetch_key_text(const char *search,
682 struct openpgp_publickey **publickey)
690 char *searchtext = NULL;
691 struct ll *wordlist = NULL;
692 struct ll *curword = NULL;
693 struct keyarray keylist = { NULL, 0, 0 };
694 struct keyarray newkeylist = { NULL, 0, 0 };
698 searchtext = strdup(search);
699 wordlist = makewordlist(wordlist, searchtext);
701 for (curword = wordlist; curword != NULL; curword = curword->next) {
704 ret = worddb->cursor(worddb,
709 memset(&key, 0, sizeof(key));
710 memset(&data, 0, sizeof(data));
711 key.data = curword->object;
712 key.size = strlen(curword->object);
713 data.flags = DB_DBT_MALLOC;
714 ret = cursor->c_get(cursor,
718 while (ret == 0 && strncmp(key.data, curword->object,
720 ((char *) curword->object)[key.size] == 0) {
722 for (i = 4; i < 12; i++) {
724 keyid += ((unsigned char *)
729 * Only add the keys containing this word if this is
730 * our first pass (ie we have no existing key list),
731 * or the key contained a previous word.
733 if (firstpass || array_find(&keylist, keyid)) {
734 array_add(&newkeylist, keyid);
740 ret = cursor->c_get(cursor,
745 array_free(&keylist);
746 keylist = newkeylist;
747 newkeylist.keys = NULL;
748 newkeylist.count = newkeylist.size = 0;
749 if (data.data != NULL) {
753 ret = cursor->c_close(cursor);
758 llfree(wordlist, NULL);
761 if (keylist.count > config.maxkeys) {
762 keylist.count = config.maxkeys;
766 for (i = 0; i < keylist.count; i++) {
767 numkeys += db4_fetch_key(keylist.keys[i],
771 array_free(&keylist);
780 static int db4_fetch_key_skshash(const struct skshash *hash,
781 struct openpgp_publickey **publickey)
788 ret = skshashdb->cursor(skshashdb,
793 memset(&key, 0, sizeof(key));
794 memset(&data, 0, sizeof(data));
795 key.data = (void *) hash->hash;
796 key.size = sizeof(hash->hash);
797 data.flags = DB_DBT_MALLOC;
799 ret = cursor->c_get(cursor,
805 keyid = *(uint64_t *) data.data;
807 if (data.data != NULL) {
813 ret = cursor->c_close(cursor);
816 return db4_fetch_key(keyid, publickey, false);
820 * delete_key - Given a keyid delete the key from storage.
821 * @keyid: The keyid to delete.
822 * @intrans: If we're already in a transaction.
824 * This function deletes a public key from whatever storage mechanism we
825 * are using. Returns 0 if the key existed.
827 static int db4_delete_key(uint64_t keyid, bool intrans)
829 struct openpgp_publickey *publickey = NULL;
832 uint32_t shortkeyid = 0;
833 uint64_t *subkeyids = NULL;
837 char *primary = NULL;
838 unsigned char worddb_data[12];
839 struct ll *wordlist = NULL;
840 struct ll *curword = NULL;
841 bool deadlock = false;
848 db4_fetch_key(keyid, &publickey, true);
851 * Walk through the uids removing the words from the worddb.
853 if (publickey != NULL) {
854 uids = keyuids(publickey, &primary);
857 for (i = 0; ret == 0 && uids[i] != NULL; i++) {
858 wordlist = makewordlist(wordlist, uids[i]);
861 ret = worddb->cursor(worddb,
866 for (curword = wordlist; curword != NULL && !deadlock;
867 curword = curword->next) {
868 memset(&key, 0, sizeof(key));
869 memset(&data, 0, sizeof(data));
870 key.data = curword->object;
871 key.size = strlen(key.data);
872 data.data = worddb_data;
873 data.size = sizeof(worddb_data);
876 * Our data is the key creation time followed by the
879 worddb_data[ 0] = publickey->publickey->data[1];
880 worddb_data[ 1] = publickey->publickey->data[2];
881 worddb_data[ 2] = publickey->publickey->data[3];
882 worddb_data[ 3] = publickey->publickey->data[4];
883 worddb_data[ 4] = (keyid >> 56) & 0xFF;
884 worddb_data[ 5] = (keyid >> 48) & 0xFF;
885 worddb_data[ 6] = (keyid >> 40) & 0xFF;
886 worddb_data[ 7] = (keyid >> 32) & 0xFF;
887 worddb_data[ 8] = (keyid >> 24) & 0xFF;
888 worddb_data[ 9] = (keyid >> 16) & 0xFF;
889 worddb_data[10] = (keyid >> 8) & 0xFF;
890 worddb_data[11] = keyid & 0xFF;
892 ret = cursor->c_get(cursor,
898 ret = cursor->c_del(cursor, 0);
902 logthing(LOGTHING_ERROR,
903 "Problem deleting word: %s "
904 "(0x%016" PRIX64 ")",
907 if (ret == DB_LOCK_DEADLOCK) {
912 ret = cursor->c_close(cursor);
915 ret = skshashdb->cursor(skshashdb,
919 get_skshash(publickey, &hash);
921 memset(&key, 0, sizeof(key));
922 memset(&data, 0, sizeof(data));
923 key.data = hash.hash;
924 key.size = sizeof(hash.hash);
926 data.size = sizeof(keyid);
928 ret = cursor->c_get(cursor,
934 ret = cursor->c_del(cursor, 0);
938 logthing(LOGTHING_ERROR,
939 "Problem deleting skshash: %s "
940 "(0x%016" PRIX64 ")",
943 if (ret == DB_LOCK_DEADLOCK) {
948 ret = cursor->c_close(cursor);
952 * Free our UID and word lists.
954 llfree(wordlist, NULL);
955 for (i = 0; uids[i] != NULL; i++) {
961 free_publickey(publickey);
966 ret = id32db->cursor(id32db,
971 shortkeyid = keyid & 0xFFFFFFFF;
973 memset(&key, 0, sizeof(key));
974 memset(&data, 0, sizeof(data));
975 key.data = &shortkeyid;
976 key.size = sizeof(shortkeyid);
978 data.size = sizeof(keyid);
980 ret = cursor->c_get(cursor,
986 ret = cursor->c_del(cursor, 0);
990 logthing(LOGTHING_ERROR,
991 "Problem deleting short keyid: %s "
992 "(0x%016" PRIX64 ")",
995 if (ret == DB_LOCK_DEADLOCK) {
1000 subkeyids = keysubkeys(publickey);
1002 while (subkeyids != NULL && subkeyids[i] != 0) {
1003 shortkeyid = subkeyids[i++] & 0xFFFFFFFF;
1005 memset(&key, 0, sizeof(key));
1006 memset(&data, 0, sizeof(data));
1007 key.data = &shortkeyid;
1008 key.size = sizeof(shortkeyid);
1010 data.size = sizeof(keyid);
1012 ret = cursor->c_get(cursor,
1018 ret = cursor->c_del(cursor, 0);
1022 logthing(LOGTHING_ERROR,
1023 "Problem deleting short keyid: %s "
1024 "(0x%016" PRIX64 ")",
1027 if (ret == DB_LOCK_DEADLOCK) {
1032 if (subkeyids != NULL) {
1036 ret = cursor->c_close(cursor);
1043 key.size = sizeof(keyid);
1045 keydb(keyid)->del(keydb(keyid),
1055 return deadlock ? (-1) : (ret == DB_NOTFOUND);
1059 * store_key - Takes a key and stores it.
1060 * @publickey: A pointer to the public key to store.
1061 * @intrans: If we're already in a transaction.
1062 * @update: If true the key exists and should be updated.
1064 * Again we just use the hex representation of the keyid as the filename
1065 * to store the key to. We flatten the public key to a list of OpenPGP
1066 * packets and then use write_openpgp_stream() to write the stream out to
1067 * the file. If update is true then we delete the old key first, otherwise
1068 * we trust that it doesn't exist.
1070 static int db4_store_key(struct openpgp_publickey *publickey, bool intrans,
1073 struct openpgp_packet_list *packets = NULL;
1074 struct openpgp_packet_list *list_end = NULL;
1075 struct openpgp_publickey *next = NULL;
1078 struct buffer_ctx storebuf;
1082 uint32_t shortkeyid = 0;
1083 uint64_t *subkeyids = NULL;
1085 char *primary = NULL;
1086 unsigned char worddb_data[12];
1087 struct ll *wordlist = NULL;
1088 struct ll *curword = NULL;
1089 bool deadlock = false;
1090 struct skshash hash;
1092 get_keyid(publickey, &keyid);
1099 * Delete the key if we already have it.
1101 * TODO: Can we optimize this perhaps? Possibly when other data is
1102 * involved as well? I suspect this is easiest and doesn't make a lot
1103 * of difference though - the largest chunk of data is the keydata and
1104 * it definitely needs updated.
1107 deadlock = (db4_delete_key(keyid, true) == -1);
1111 * Convert the key to a flat set of binary data.
1114 next = publickey->next;
1115 publickey->next = NULL;
1116 flatten_publickey(publickey, &packets, &list_end);
1117 publickey->next = next;
1119 storebuf.offset = 0;
1120 storebuf.size = 8192;
1121 storebuf.buffer = malloc(8192);
1123 write_openpgp_stream(buffer_putchar, &storebuf, packets);
1126 * Now we have the key data store it in the DB; the keyid is
1129 memset(&key, 0, sizeof(key));
1130 memset(&data, 0, sizeof(data));
1132 key.size = sizeof(keyid);
1133 data.size = storebuf.offset;
1134 data.data = storebuf.buffer;
1136 ret = keydb(keyid)->put(keydb(keyid),
1142 logthing(LOGTHING_ERROR,
1143 "Problem storing key: %s",
1145 if (ret == DB_LOCK_DEADLOCK) {
1150 free(storebuf.buffer);
1151 storebuf.buffer = NULL;
1153 storebuf.offset = 0;
1155 free_packet_list(packets);
1160 * Walk through our uids storing the words into the db with the keyid.
1163 uids = keyuids(publickey, &primary);
1166 for (i = 0; ret == 0 && uids[i] != NULL; i++) {
1167 wordlist = makewordlist(wordlist, uids[i]);
1170 for (curword = wordlist; curword != NULL && !deadlock;
1171 curword = curword->next) {
1172 memset(&key, 0, sizeof(key));
1173 memset(&data, 0, sizeof(data));
1174 key.data = curword->object;
1175 key.size = strlen(key.data);
1176 data.data = worddb_data;
1177 data.size = sizeof(worddb_data);
1180 * Our data is the key creation time followed by the
1183 worddb_data[ 0] = publickey->publickey->data[1];
1184 worddb_data[ 1] = publickey->publickey->data[2];
1185 worddb_data[ 2] = publickey->publickey->data[3];
1186 worddb_data[ 3] = publickey->publickey->data[4];
1187 worddb_data[ 4] = (keyid >> 56) & 0xFF;
1188 worddb_data[ 5] = (keyid >> 48) & 0xFF;
1189 worddb_data[ 6] = (keyid >> 40) & 0xFF;
1190 worddb_data[ 7] = (keyid >> 32) & 0xFF;
1191 worddb_data[ 8] = (keyid >> 24) & 0xFF;
1192 worddb_data[ 9] = (keyid >> 16) & 0xFF;
1193 worddb_data[10] = (keyid >> 8) & 0xFF;
1194 worddb_data[11] = keyid & 0xFF;
1195 ret = worddb->put(worddb,
1201 logthing(LOGTHING_ERROR,
1202 "Problem storing word: %s",
1204 if (ret == DB_LOCK_DEADLOCK) {
1211 * Free our UID and word lists.
1213 llfree(wordlist, NULL);
1214 for (i = 0; uids[i] != NULL; i++) {
1223 * Write the truncated 32 bit keyid so we can lookup the full id for
1227 shortkeyid = keyid & 0xFFFFFFFF;
1229 memset(&key, 0, sizeof(key));
1230 memset(&data, 0, sizeof(data));
1231 key.data = &shortkeyid;
1232 key.size = sizeof(shortkeyid);
1234 data.size = sizeof(keyid);
1236 ret = id32db->put(id32db,
1242 logthing(LOGTHING_ERROR,
1243 "Problem storing short keyid: %s",
1245 if (ret == DB_LOCK_DEADLOCK) {
1252 subkeyids = keysubkeys(publickey);
1254 while (subkeyids != NULL && subkeyids[i] != 0) {
1255 shortkeyid = subkeyids[i++] & 0xFFFFFFFF;
1257 memset(&key, 0, sizeof(key));
1258 memset(&data, 0, sizeof(data));
1259 key.data = &shortkeyid;
1260 key.size = sizeof(shortkeyid);
1262 data.size = sizeof(keyid);
1264 ret = id32db->put(id32db,
1270 logthing(LOGTHING_ERROR,
1271 "Problem storing short keyid: %s",
1273 if (ret == DB_LOCK_DEADLOCK) {
1278 if (subkeyids != NULL) {
1285 get_skshash(publickey, &hash);
1286 memset(&key, 0, sizeof(key));
1287 memset(&data, 0, sizeof(data));
1288 key.data = hash.hash;
1289 key.size = sizeof(hash.hash);
1291 data.size = sizeof(keyid);
1293 ret = skshashdb->put(skshashdb,
1299 logthing(LOGTHING_ERROR,
1300 "Problem storing SKS hash: %s",
1302 if (ret == DB_LOCK_DEADLOCK) {
1312 return deadlock ? -1 : 0 ;
1316 * iterate_keys - call a function once for each key in the db.
1317 * @iterfunc: The function to call.
1318 * @ctx: A context pointer
1320 * Calls iterfunc once for each key in the database. ctx is passed
1321 * unaltered to iterfunc. This function is intended to aid database dumps
1322 * and statistic calculations.
1324 * Returns the number of keys we iterated over.
1326 static int db4_iterate_keys(void (*iterfunc)(void *ctx,
1327 struct openpgp_publickey *key), void *ctx)
1334 struct buffer_ctx fetchbuf;
1335 struct openpgp_packet_list *packets = NULL;
1336 struct openpgp_publickey *key = NULL;
1338 for (i = 0; i < numdbs; i++) {
1339 ret = dbconns[i]->cursor(dbconns[i],
1344 memset(&dbkey, 0, sizeof(dbkey));
1345 memset(&data, 0, sizeof(data));
1346 ret = cursor->c_get(cursor, &dbkey, &data, DB_NEXT);
1348 fetchbuf.buffer = data.data;
1349 fetchbuf.offset = 0;
1350 fetchbuf.size = data.size;
1351 read_openpgp_stream(buffer_fetchchar, &fetchbuf,
1353 parse_keys(packets, &key);
1357 free_publickey(key);
1359 free_packet_list(packets);
1362 memset(&dbkey, 0, sizeof(dbkey));
1363 memset(&data, 0, sizeof(data));
1364 ret = cursor->c_get(cursor, &dbkey, &data,
1368 if (ret != DB_NOTFOUND) {
1369 logthing(LOGTHING_ERROR,
1370 "Problem reading key: %s",
1374 ret = cursor->c_close(cursor);
1382 * Include the basic keydb routines.
1384 #define NEED_GETKEYSIGS 1
1385 #define NEED_KEYID2UID 1
1386 #define NEED_UPDATEKEYS 1
1389 struct dbfuncs keydb_db4_funcs = {
1390 .initdb = db4_initdb,
1391 .cleanupdb = db4_cleanupdb,
1392 .starttrans = db4_starttrans,
1393 .endtrans = db4_endtrans,
1394 .fetch_key = db4_fetch_key,
1395 .fetch_key_text = db4_fetch_key_text,
1396 .fetch_key_skshash = db4_fetch_key_skshash,
1397 .store_key = db4_store_key,
1398 .update_keys = generic_update_keys,
1399 .delete_key = db4_delete_key,
1400 .getkeysigs = generic_getkeysigs,
1401 .cached_getkeysigs = generic_cached_getkeysigs,
1402 .keyid2uid = generic_keyid2uid,
1403 .getfullkeyid = db4_getfullkeyid,
1404 .iterate_keys = db4_iterate_keys,