1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/*
* gpgwww.c - www interface to path finder.
*
* Jonathan McDowell <noodles@earth.li>
*
* Copyright 2001-2002 Project Purple.
*/
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "armor.h"
#include "charfuncs.h"
#include "cleanup.h"
#include "config.h"
#include "getcgi.h"
#include "hash.h"
#include "keydb.h"
#include "log.h"
#include "mem.h"
#include "onak-conf.h"
#include "parsekey.h"
#include "stats.h"
#define OP_UNKNOWN 0
#define OP_GET 1
int parsecgistuff(char **cgiparams, uint64_t *from, uint64_t *to)
{
int i = 0;
int op = OP_UNKNOWN;
if (cgiparams != NULL) {
i = 0;
while (cgiparams[i] != NULL) {
if (!strcmp(cgiparams[i], "to")) {
*to = strtoul(cgiparams[i+1], NULL, 16);
} else if (!strcmp(cgiparams[i], "from")) {
*from = strtoul(cgiparams[i+1], NULL, 16);
} else if (!strcmp(cgiparams[i], "op")) {
if (!strcmp(cgiparams[i+1], "get")) {
op = OP_GET;
}
}
i += 2;
}
}
return op;
}
int getkeyspath(uint64_t have, uint64_t want, int count)
{
struct openpgp_publickey *publickey = NULL;
struct openpgp_packet_list *packets = NULL;
struct openpgp_packet_list *list_end = NULL;
struct stats_key *keyinfoa, *keyinfob, *curkey;
uint64_t fullhave, fullwant;
int rec;
int pathlen = 0;
fullhave = config.dbbackend->getfullkeyid(have);
fullwant = config.dbbackend->getfullkeyid(want);
/*
* Make sure the keys we have and want are in the cache.
*/
config.dbbackend->cached_getkeysigs(fullhave);
config.dbbackend->cached_getkeysigs(fullwant);
if ((keyinfoa = findinhash(fullhave)) == NULL) {
return 1;
}
if ((keyinfob = findinhash(fullwant)) == NULL) {
return 1;
}
while ((!cleanup()) && (pathlen < count)) {
/*
* Fill the tree info up.
*/
initcolour(true);
rec = findpath(keyinfoa, keyinfob);
keyinfob->parent = 0;
if (keyinfoa->colour == 0) {
pathlen = count;
} else {
/*
* Skip the first key, as the remote user will already
* have it
*/
curkey = findinhash(keyinfoa->parent);
while (curkey != NULL && curkey->keyid != 0) {
if (curkey->keyid != fullwant &&
config.dbbackend->fetch_key(
curkey->keyid,
&publickey, false)) {
flatten_publickey(publickey,
&packets,
&list_end);
free_publickey(publickey);
publickey = NULL;
}
if (curkey != keyinfoa && curkey != keyinfob) {
curkey->disabled = true;
}
curkey = findinhash(curkey->parent);
}
}
pathlen++;
}
/*
* Add the destination key to the list of returned keys.
*/
if (config.dbbackend->fetch_key(fullwant, &publickey, false)) {
flatten_publickey(publickey,
&packets,
&list_end);
free_publickey(publickey);
publickey = NULL;
}
armor_openpgp_stream(stdout_putchar, NULL, packets);
free_packet_list(packets);
packets = list_end = NULL;
return 0;
}
int main(int argc, char *argv[])
{
char **cgiparams = NULL; /* Our CGI parameter block */
uint64_t from = 0, to = 0;
int op = OP_UNKNOWN;
cgiparams = getcgivars(argc, argv);
op = parsecgistuff(cgiparams, &from, &to);
if (op != OP_GET) {
start_html("Experimental PGP key path finder results");
} else {
puts("Content-Type: text/plain\n");
}
if (from == 0 || to == 0) {
printf("Must pass from & to\n");
puts("</HTML>");
exit(1);
}
if (op != OP_GET) {
printf("<P>Looking for path from 0x%" PRIX64" to 0x%" PRIX64
".\n",
from, to);
printf("<A HREF=\"gpgwww?from=0x%08" PRIX64 "&to=0x%08" PRIX64
"\">Find reverse path</A>\n",
to,
from);
printf("<A HREF=\"gpgwww?from=0x%08" PRIX64 "&to=0x%08" PRIX64
"&op=get\">"
"Get all keys listed</A></P>\n",
from,
to);
}
readconfig(NULL);
initlogthing("gpgwww", config.logfile);
catchsignals();
config.dbbackend->initdb(true);
inithash();
logthing(LOGTHING_NOTICE, "Looking for path from 0x%" PRIX64 " to 0x%"
PRIX64,
from,
to);
if (op == OP_GET) {
getkeyspath(from, to, 3);
} else {
dofindpath(from, to, true, 3);
}
destroyhash();
config.dbbackend->cleanupdb();
cleanuplogthing();
cleanupconfig();
if (op != OP_GET) {
puts("<HR>");
puts("Produced by gpgwww " PACKAGE_VERSION ", part of onak. "
"<A HREF=\"mailto:noodles-onak@earth.li\">"
"Jonathan McDowell</A>");
end_html();
}
cleanupcgi(cgiparams);
cgiparams = NULL;
return EXIT_SUCCESS;
}
|