Add -c option to maxpath / sixdegrees to specify config file
[onak.git] / maxpath.c
1 /*
2  * maxpath.c - Find the longest trust path in the key database.
3  *
4  * Copyright 2001-2002 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, write to the Free Software Foundation, Inc., 51
17  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #include <getopt.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "stats.h"
26 #include "hash.h"
27 #include "keydb.h"
28 #include "ll.h"
29 #include "log.h"
30 #include "onak-conf.h"
31 #include "stats.h"
32
33 void findmaxpath(unsigned long max)
34 {
35         struct stats_key *from, *to, *tmp;
36         struct ll *curkey;
37         unsigned long distance, loop;
38
39         distance = 0;
40         from = to = tmp = NULL;
41
42         /*
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.
45          */
46         config.dbbackend->cached_getkeysigs(0x94FA372B2DA8B985);
47
48         /*
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
52          * max.
53          */
54         for (loop = 0; (loop < HASHSIZE) && (distance < max); loop++) {
55                 curkey = gethashtableentry(loop);
56                 while (curkey != NULL && distance < max) {
57                         config.dbbackend->cached_getkeysigs(
58                                         ((struct stats_key *)
59                                         curkey->object)->keyid);
60                         initcolour(false);
61                         tmp = furthestkey((struct stats_key *)
62                                                 curkey->object);
63                         if (tmp->colour > distance) {
64                                 from = (struct stats_key *)curkey->object;
65                                 to = tmp;
66                                 distance = to->colour;
67                                 printf("Current max path (#%ld) is from %"
68                                                 PRIX64 " to %" PRIX64 
69                                                 " (%ld steps)\n", 
70                                                 loop,
71                                                 from->keyid,
72                                                 to->keyid,
73                                                 distance);
74                         }
75                         curkey=curkey->next;
76                 }
77         }
78         printf("Max path is from %" PRIX64 " to %" PRIX64 " (%ld steps)\n",
79                         from->keyid,
80                         to->keyid,
81                         distance);
82         dofindpath(to->keyid, from->keyid, false, 1);
83 }
84
85 int main(int argc, char *argv[])
86 {
87         int optchar;
88         char *configfile = NULL;
89
90         while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
91                 switch (optchar) {
92                 case 'c':
93                         configfile = strdup(optarg);
94                         break;
95                 }
96         }
97
98         readconfig(configfile);
99         initlogthing("maxpath", config.logfile);
100         config.dbbackend->initdb(true);
101         inithash();
102         findmaxpath(30);
103         printf("--------\n");
104         findmaxpath(30);
105         destroyhash();
106         config.dbbackend->cleanupdb();
107         cleanuplogthing();
108         cleanupconfig();
109         
110         return EXIT_SUCCESS;
111 }