2 * gpgwww.c - www interface to path finder.
4 * Jonathan McDowell <noodles@earth.li>
6 * Copyright 2001-2002 Project Purple.
8 * $Id: gpgwww.c,v 1.14 2004/05/26 18:53:14 noodles Exp $
17 #include "charfuncs.h"
23 #include "onak-conf.h"
30 int parsecgistuff(char **cgiparams, uint64_t *from, uint64_t *to)
35 if (cgiparams != NULL) {
37 while (cgiparams[i] != NULL) {
38 if (!strcmp(cgiparams[i], "to")) {
39 *to = strtoul(cgiparams[i+1], NULL, 16);
40 } else if (!strcmp(cgiparams[i], "from")) {
41 *from = strtoul(cgiparams[i+1], NULL, 16);
42 } else if (!strcmp(cgiparams[i], "op")) {
43 if (!strcmp(cgiparams[i+1], "get")) {
54 int getkeyspath(uint64_t have, uint64_t want, int count)
56 struct openpgp_publickey *publickey = NULL;
57 struct openpgp_packet_list *packets = NULL;
58 struct openpgp_packet_list *list_end = NULL;
59 struct stats_key *keyinfoa, *keyinfob, *curkey;
60 uint64_t fullhave, fullwant;
64 fullhave = getfullkeyid(have);
65 fullwant = getfullkeyid(want);
68 * Make sure the keys we have and want are in the cache.
70 cached_getkeysigs(fullhave);
71 cached_getkeysigs(fullwant);
73 if ((keyinfoa = findinhash(fullhave)) == NULL) {
76 if ((keyinfob = findinhash(fullwant)) == NULL) {
80 while (pathlen < count) {
82 * Fill the tree info up.
85 rec = findpath(keyinfoa, keyinfob);
87 if (keyinfoa->colour == 0) {
91 * Skip the first key, as the remote user will already
94 curkey = findinhash(keyinfoa->parent);
95 while (curkey != NULL && curkey->keyid != 0) {
96 if (curkey->keyid != fullwant && fetch_key(
99 flatten_publickey(publickey,
102 free_publickey(publickey);
105 if (curkey != keyinfoa && curkey != keyinfob) {
106 curkey->disabled = true;
108 curkey = findinhash(curkey->parent);
115 * Add the destination key to the list of returned keys.
117 if (fetch_key(fullwant, &publickey, false)) {
118 flatten_publickey(publickey,
121 free_publickey(publickey);
125 armor_openpgp_stream(stdout_putchar, NULL, packets);
126 free_packet_list(packets);
127 packets = list_end = NULL;
132 int main(int argc, char *argv[])
134 char **cgiparams = NULL; /* Our CGI parameter block */
135 uint64_t from = 0, to = 0;
138 cgiparams = getcgivars(argc, argv);
141 op = parsecgistuff(cgiparams, &from, &to);
144 start_html("Experimental PGP key path finder results");
146 puts("Content-Type: text/plain\n");
149 if (from == 0 || to == 0) {
150 printf("Must pass from & to\n");
156 printf("<P>Looking for path from 0x%llX to 0x%llX.\n",
158 printf("<A HREF=\"gpgwww?from=0x%08llX&to=0x%08llX\">"
159 "Find reverse path</A>\n",
162 printf("<A HREF=\"gpgwww?from=0x%08llX&to=0x%08llX&op=get\">"
163 "Get all keys listed</A></P>\n",
169 initlogthing("gpgwww", config.logfile);
172 logthing(LOGTHING_NOTICE, "Looking for path from 0x%llX to 0x%llX.",
176 getkeyspath(from, to, 3);
178 dofindpath(from, to, true, 3);
187 puts("Produced by gpgwww " VERSION ", part of onak. "
188 "<A HREF=\"mailto:noodles-onak@earth.li\">"
189 "Jonathan McDowell</A>");
193 cleanupcgi(cgiparams);