]> the.earth.li Git - onak.git/blob - wotsap.c
Make wotsap ignore revoked keys
[onak.git] / wotsap.c
1 /*
2  * wotsap.c - Output a set of wotsap files from an onak keyring
3  *
4  * See:
5  *
6  * http://www.lysator.liu.se/~jc/wotsap/wotfileformat.txt
7  *
8  * for more details of the format.
9  *
10  * Copyright 2013 Jonathan McDowell <noodles@earth.li>
11  *
12  * This program is free software: you can redistribute it and/or modify it
13  * under the terms of the GNU General Public License as published by the Free
14  * Software Foundation; version 2 of the License.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19  * more details.
20  *
21  * You should have received a copy of the GNU General Public License along with
22  * this program; if not, write to the Free Software Foundation, Inc., 51
23  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24  */
25
26 #include <getopt.h>
27 #include <stdint.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <arpa/inet.h>
31
32 #include "hash.h"
33 #include "log.h"
34 #include "onak-conf.h"
35 #include "stats.h"
36 #include "version.h"
37
38 static struct ll *sortkeyll(struct ll *keys)
39 {
40         struct ll *newll, *tmp, **curobj;
41         struct stats_key *curkey, *toadd;
42
43         newll = NULL;
44         while (keys) {
45                 toadd = (struct stats_key *) keys->object;
46                 curobj = &newll;
47                 while (*curobj) {
48                         curkey = (struct stats_key *) (*curobj)->object;
49                         if (curkey->keyid >= toadd->keyid) {
50                                 break;
51                         }
52                         curobj = &((*curobj)->next);
53                 }
54
55                 tmp = keys->next;
56                 if (*curobj == NULL || curkey->keyid != toadd->keyid) {
57                         keys->next = *curobj;
58                         *curobj = keys;
59                 }
60                 keys = tmp;
61         }
62         return newll;
63 }
64
65 static void output_key(FILE *names, FILE *keys, uint64_t keyid)
66 {
67         fprintf(names, "%s\n", config.dbbackend->keyid2uid(keyid));
68         fprintf(keys, "%c%c%c%c", (int) (keyid >> 24) & 0xFF,
69                         (int) (keyid >> 16) & 0xFF,
70                         (int) (keyid >>  8) & 0xFF,
71                         (int) (keyid      ) & 0xFF);
72 }
73
74 static void wotsap(uint64_t keyid, char *dir)
75 {
76         struct ll *pending, *sigll, *sigsave;
77         uint32_t curidx = 0;
78         struct stats_key *curkey, *addkey;
79         char *uid;
80         FILE *names, *keys, *sigs, *file;
81         char *tmppath;
82         uint32_t sigcount, sigentry;
83
84         /* Length of dir + "/" + "signatures" + NUL */
85         tmppath = malloc(strlen(dir) + 12);
86
87         sprintf(tmppath, "%s/WOTVERSION", dir);
88         file = fopen(tmppath, "w");
89         if (file == NULL) {
90                 fprintf(stderr, "Couldn't open %s\n", tmppath);
91                 return;
92         }
93         fprintf(file, "0.2\n");
94         fclose(file);
95
96         sprintf(tmppath, "%s/README", dir);
97         file = fopen(tmppath, "w");
98         if (file == NULL) {
99                 fprintf(stderr, "Couldn't open %s\n", tmppath);
100                 return;
101         }
102         fprintf(file, "This is a Web of Trust archive.\n");
103         fprintf(file, "The file format is documented at:\n");
104         fprintf(file, "  http://www.lysator.liu.se/~jc/wotsap/wotfileformat.txt\n\n");
105         fprintf(file, "This file was generated by onak " ONAK_VERSION " \n");
106         fclose(file);
107
108         sprintf(tmppath, "%s/names", dir);
109         names = fopen(tmppath, "w");
110         if (names == NULL) {
111                 fprintf(stderr, "Couldn't open %s\n", tmppath);
112                 return;
113         }
114         sprintf(tmppath, "%s/keys", dir);
115         keys = fopen(tmppath, "wb");
116         if (keys == NULL) {
117                 fprintf(stderr, "Couldn't open %s\n", tmppath);
118                 return;
119         }
120         sprintf(tmppath, "%s/signatures", dir);
121         sigs = fopen(tmppath, "wb");
122         if (sigs == NULL) {
123                 fprintf(stderr, "Couldn't open %s\n", tmppath);
124                 return;
125         }
126         free(tmppath);
127
128         config.dbbackend->cached_getkeysigs(keyid);
129         curkey = findinhash(keyid);
130         curkey->colour = ++curidx;
131         pending = lladd(NULL, curkey);
132
133         output_key(names, keys, curkey->keyid);
134
135         while (pending != NULL) {
136                 curkey = (struct stats_key *) pending->object;
137                 sigll = config.dbbackend->cached_getkeysigs(curkey->keyid);
138                 sigsave = sigll = sortkeyll(sigll);
139                 sigcount = 0;
140                 while (sigll != NULL) {
141                         addkey = (struct stats_key *) sigll->object;
142                         if (addkey->colour == 0 && !addkey->revoked) {
143                                 uid = config.dbbackend->keyid2uid(addkey->keyid);
144                                 if (uid != NULL) {
145                                         /* Force it to be loaded so we know if it's revoked */
146                                         config.dbbackend->cached_getkeysigs(addkey->keyid);
147                                         if (!addkey->revoked) {
148                                                 addkey->colour = ++curidx;
149                                                 pending = lladdend(pending, addkey);
150                                                 output_key(names, keys, addkey->keyid);
151                                         }
152                                 }
153                         }
154                         if (addkey->colour != 0) {
155                                 sigcount++;
156                         }
157                         sigll = sigll->next;
158                 }
159                 /* Now output the signatures */
160                 sigcount = htonl(sigcount);
161                 fwrite(&sigcount, sizeof (sigcount), 1, sigs);
162                 sigll = sigsave;
163                 while (sigll != NULL) {
164                         addkey = (struct stats_key *) sigll->object;
165                         if (addkey->colour != 0) {
166                                 sigentry = addkey->colour - 1;
167                                 /* Pretend it's on the primary UID for now */
168                                 sigentry |= 0x40000000;
169                                 sigentry = htonl(sigentry);
170                                 fwrite(&sigentry, sizeof (sigentry), 1, sigs);
171                         }
172                         sigll = sigll->next;
173                 }
174                 pending = pending->next;
175         }
176
177         fclose(sigs);
178         fclose(keys);
179         fclose(names);
180 }
181
182 int main(int argc, char *argv[])
183 {
184         int optchar;
185         char *configfile = NULL, *dir = NULL;
186         uint64_t keyid = 0x2DA8B985;
187
188         while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
189                 switch (optchar) {
190                 case 'c':
191                         configfile = strdup(optarg);
192                         break;
193                 }
194         }
195
196         if (optind < argc) {
197                 dir = argv[optind];
198         }
199
200         readconfig(configfile);
201         initlogthing("wotsap", config.logfile);
202         config.dbbackend->initdb(true);
203         inithash();
204         wotsap(config.dbbackend->getfullkeyid(keyid), dir ? dir : ".");
205         destroyhash();
206         config.dbbackend->cleanupdb();
207         cleanuplogthing();
208         cleanupconfig();
209 }