2 * sixdegrees.c - List the size of the six degrees of trust away from a key.
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.
25 #include "keystructs.h"
28 #include "onak-conf.h"
31 unsigned long countdegree(struct stats_key *have, bool sigs, int maxdegree)
33 unsigned long count = 0, curdegree = 0;
34 struct ll *curll, *nextll, *sigll, *tmp;
35 struct stats_key *key = NULL;
40 curll = lladd(NULL, have);
42 while (curll != NULL && curdegree <= maxdegree) {
44 sigll = config.dbbackend->cached_getkeysigs(
46 curll->object)->keyid);
49 key = findinhash(((struct stats_key *)
50 curll->object)->keyid);
55 while (sigll != NULL) {
56 if (((struct stats_key *) sigll->object)->colour==0) {
57 /* We've never seen it. Count it, mark it and
58 explore its subtree */
60 ((struct stats_key *)sigll->object)->colour =
62 ((struct stats_key *)sigll->object)->parent =
64 curll->object)->keyid;
65 nextll=lladd(nextll, sigll->object);
90 void sixdegrees(uint64_t keyid)
92 struct stats_key *keyinfo;
97 config.dbbackend->cached_getkeysigs(keyid);
99 if ((keyinfo = findinhash(keyid)) == NULL) {
100 printf("Couldn't find key 0x%016" PRIX64 ".\n", keyid);
104 uid = config.dbbackend->keyid2uid(keyinfo->keyid);
105 printf("Six degrees for 0x%016" PRIX64 " (%s):\n", keyinfo->keyid,
111 * Cheat. This prefills the ->sign part of all the keys we want to
112 * look at so that we can output that info at the same time as the
113 * signers. However we're assuming that the signers and signees are
114 * reasonably closely related otherwise the info is wildly off - the
115 * only way to get 100% accurate results is to examine every key to see
116 * if it's signed by the key we're looking at.
119 degree = countdegree(keyinfo, true, 7);
121 puts("\t\tSigned by\t\tSigns");
122 for (loop = 1; loop < 7; loop++) {
124 degree = countdegree(keyinfo, true, loop);
125 printf("Degree %d:\t%8ld", loop, degree);
128 degree = countdegree(keyinfo, false, loop);
129 printf("\t\t%8ld\n", degree);
133 int main(int argc, char *argv[])
135 uint64_t keyid = 0x2DA8B985;
138 keyid = strtoll(argv[1], NULL, 16);
142 initlogthing("sixdegrees", config.logfile);
143 config.dbbackend->initdb(true);
145 sixdegrees(config.dbbackend->getfullkeyid(keyid));
147 config.dbbackend->cleanupdb();