2 * maxpath.c - Find the longest trust path in the key database.
4 * Copyright 2001-2002 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.
30 #include "onak-conf.h"
33 void findmaxpath(unsigned long max)
35 struct stats_key *from, *to, *tmp;
37 unsigned long distance, loop;
40 from = to = tmp = NULL;
43 * My (noodles@earth.li, RSA) key is in the strongly connected set of
44 * keys, so we use it as a suitable starting seed.
46 config.dbbackend->cached_getkeysigs(0x94FA372B2DA8B985);
49 * Loop through the hash examining each key present and finding the
50 * furthest key from it. If it's further than our current max then
51 * store it as our new max and print out the fact we've found a new
54 for (loop = 0; (loop < HASHSIZE) && (distance < max); loop++) {
55 curkey = gethashtableentry(loop);
56 while (curkey != NULL && distance < max) {
57 config.dbbackend->cached_getkeysigs(
59 curkey->object)->keyid);
61 tmp = furthestkey((struct stats_key *)
63 if (tmp->colour > distance) {
64 from = (struct stats_key *)curkey->object;
66 distance = to->colour;
67 printf("Current max path (#%ld) is from %"
78 printf("Max path is from %" PRIX64 " to %" PRIX64 " (%ld steps)\n",
82 dofindpath(to->keyid, from->keyid, false, 1);
85 int main(int argc, char *argv[])
88 char *configfile = NULL;
90 while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
93 configfile = strdup(optarg);
98 readconfig(configfile);
99 initlogthing("maxpath", config.logfile);
100 config.dbbackend->initdb(true);
103 printf("--------\n");
106 config.dbbackend->cleanupdb();