]> the.earth.li Git - onak.git/blob - onak.c
Add support for v5 keys
[onak.git] / onak.c
1 /*
2  * onak.c - An OpenPGP keyserver.
3  *
4  * This is the main swiss army knife binary.
5  *
6  * Copyright 2002 Jonathan McDowell <noodles@earth.li>
7  *
8  * This program is free software: you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by the Free
10  * Software Foundation; version 2 of the License.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program.  If not, see <https://www.gnu.org/licenses/>.
19  */
20
21 #include <fcntl.h>
22 #include <getopt.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <unistd.h>
29
30 #include "build-config.h"
31
32 #include "armor.h"
33 #include "charfuncs.h"
34 #include "cleankey.h"
35 #include "cleanup.h"
36 #include "keydb.h"
37 #include "keyid.h"
38 #include "keyindex.h"
39 #include "keystructs.h"
40 #include "log.h"
41 #include "mem.h"
42 #include "merge.h"
43 #include "onak-conf.h"
44 #include "parsekey.h"
45 #include "photoid.h"
46
47 void find_keys(struct onak_dbctx *dbctx,
48                 char *search, uint64_t keyid,
49                 struct openpgp_fingerprint *fingerprint,
50                 bool ishex, bool isfp, bool dispfp, bool skshash,
51                 bool exact, bool verbose)
52 {
53         struct openpgp_publickey *publickey = NULL;
54         int count = 0;
55
56         if (ishex) {
57                 count = dbctx->fetch_key_id(dbctx, keyid, &publickey,
58                                 false);
59         } else if (isfp) {
60                 count = dbctx->fetch_key_fp(dbctx, fingerprint,
61                                 &publickey, false);
62         } else {
63                 count = dbctx->fetch_key_text(dbctx, search, &publickey);
64         }
65         if (publickey != NULL) {
66                 key_index(dbctx, publickey, verbose, dispfp, skshash,
67                         false);
68                 free_publickey(publickey);
69         } else if (count == 0) {
70                 puts("Key not found.");
71         } else {
72                 printf("Found %d keys, but maximum number to return is %d.\n",
73                                 count,
74                                 config.maxkeys);
75                 puts("Try again with a more specific search.");
76         }
77 }
78
79 /**
80  * @brief Context for the keyserver dumping function
81  */
82 struct dump_ctx {
83         /** Keys we've dumped so far to this file */
84         int count;
85         /** Maximum keys to dump per file */
86         int maxcount;
87         /** File descriptor for the current dump file */
88         int fd;
89         /** Number of the current dump file */
90         int filenum;
91         /** Base filename to use for dump files */
92         char *filebase;
93 };
94
95 void dump_func(void *ctx, struct openpgp_publickey *key)
96 {
97         struct openpgp_packet_list *packets = NULL;
98         struct openpgp_packet_list *list_end = NULL;
99         struct dump_ctx *state;
100         char filename[1024];
101
102         state = (struct dump_ctx *) ctx;
103
104         if (state->fd == -1 || state->count++ > state->maxcount) {
105                 if (state->fd != -1) {
106                         close(state->fd);
107                         state->fd = -1;
108                 }
109                 snprintf(filename, 1023, state->filebase, state->filenum);
110                 state->fd = open(filename, O_CREAT | O_WRONLY | O_TRUNC, 0640);
111                 state->filenum++;
112                 state->count = 0;
113         }
114         flatten_publickey(key, &packets, &list_end);
115         write_openpgp_stream(file_putchar, &state->fd, packets);
116         free_packet_list(packets);
117         packets = list_end = NULL;
118
119         return;
120 }
121
122 static uint8_t hex2bin(char c)
123 {
124         if (c >= '0' && c <= '9') {
125                 return (c - '0');
126         } else if (c >= 'a' && c <= 'f') {
127                 return (c - 'a' + 10);
128         } else if (c >= 'A' && c <= 'F') {
129                 return (c - 'A' + 10);
130         }
131
132         return 255;
133 }
134
135 void usage(void) {
136         puts("onak " ONAK_VERSION " - an OpenPGP keyserver.\n");
137         puts("Usage:\n");
138         puts("\tonak [options] <command> <parameters>\n");
139         puts("\tCommands:\n");
140         puts("\tadd      - read armored OpenPGP keys from stdin and add to the"
141                 " keyserver");
142         puts("\tclean    - read armored OpenPGP keys from stdin, run the"
143                 " cleaning\n\t             routines against them and dump to"
144                 " stdout");
145         puts("\tdelete   - delete a given key from the keyserver");
146         puts("\tdump     - dump all the keys from the keyserver to a file or"
147                 " files\n\t           starting keydump*");
148         puts("\tget      - retrieves the key requested from the keyserver");
149         puts("\tgetphoto - retrieves the first photoid on the given key and"
150                 " dumps to\n\t           stdout");
151         puts("\tindex    - search for a key and list it");
152         puts("\treindex  - retrieve and re-store a key in the backend db");
153         puts("\tvindex   - search for a key and list it and its signatures");
154 }
155
156 int main(int argc, char *argv[])
157 {
158         struct openpgp_packet_list      *packets = NULL;
159         struct openpgp_packet_list      *list_end = NULL;
160         struct openpgp_publickey        *keys = NULL;
161         char                            *configfile = NULL;
162         int                              rc = EXIT_SUCCESS;
163         int                              result = 0;
164         char                            *search = NULL;
165         char                            *end = NULL;
166         uint64_t                         keyid = 0;
167         int                              i;
168         bool                             ishex = false;
169         bool                             isfp = false;
170         bool                             update = false;
171         bool                             binary = false;
172         bool                             dispfp = false;
173         bool                             skshash = false;
174         int                              optchar;
175         struct dump_ctx                  dumpstate;
176         struct skshash                   hash;
177         struct onak_dbctx               *dbctx;
178         struct openpgp_fingerprint       fingerprint;
179
180         while ((optchar = getopt(argc, argv, "bc:fsuv")) != -1 ) {
181                 switch (optchar) {
182                 case 'b': 
183                         binary = true;
184                         break;
185                 case 'c':
186                         configfile = strdup(optarg);
187                         break;
188                 case 'f': 
189                         dispfp = true;
190                         break;
191                 case 's': 
192                         skshash = true;
193                         break;
194                 case 'u': 
195                         update = true;
196                         break;
197                 case 'v': 
198                         setlogthreshold(LOGTHING_INFO);
199                         break;
200                 }
201         }
202
203         readconfig(configfile);
204         initlogthing("onak", config.logfile);
205         catchsignals();
206
207         if ((argc - optind) < 1) {
208                 usage();
209         } else if (!strcmp("dump", argv[optind])) {
210                 dbctx = config.dbinit(config.backend, true);
211                 dumpstate.count = dumpstate.filenum = 0;
212                 dumpstate.maxcount = 100000;
213                 dumpstate.fd = -1;
214                 dumpstate.filebase = "keydump.%d.pgp";
215                 dbctx->iterate_keys(dbctx, dump_func, &dumpstate);
216                 if (dumpstate.fd != -1) {
217                         close(dumpstate.fd);
218                         dumpstate.fd = -1;
219                 }
220                 dbctx->cleanupdb(dbctx);
221         } else if (!strcmp("add", argv[optind])) {
222                 if (binary) {
223                         result = read_openpgp_stream(stdin_getchar, NULL,
224                                  &packets, 0);
225                         logthing(LOGTHING_INFO,
226                                         "read_openpgp_stream: %d", result);
227                 } else {
228                         dearmor_openpgp_stream(stdin_getchar, NULL, &packets);
229                 }
230                 if (packets != NULL) {
231                         result = parse_keys(packets, &keys);
232                         free_packet_list(packets);
233                         packets = NULL;
234                         logthing(LOGTHING_INFO, "Finished reading %d keys.",
235                                         result);
236
237                         result = cleankeys(&keys, config.clean_policies);
238                         logthing(LOGTHING_INFO, "%d keys cleaned.",
239                                         result);
240
241                         dbctx = config.dbinit(config.backend, false);
242                         logthing(LOGTHING_NOTICE, "Got %d new keys.",
243                                         dbctx->update_keys(dbctx, &keys,
244                                         false));
245                         if (keys != NULL && update) {
246                                 flatten_publickey(keys,
247                                         &packets,
248                                         &list_end);
249                                 if (binary) {
250                                         write_openpgp_stream(stdout_putchar,
251                                                         NULL,
252                                                         packets);
253                                 } else {
254                                         armor_openpgp_stream(stdout_putchar,
255                                                 NULL,
256                                                 packets);
257                                 }
258                                 free_packet_list(packets);
259                                 packets = NULL;
260                         }
261                         dbctx->cleanupdb(dbctx);
262                 } else {
263                         rc = 1;
264                         logthing(LOGTHING_NOTICE, "No keys read.");
265                 }
266
267                 if (keys != NULL) {
268                         free_publickey(keys);
269                         keys = NULL;
270                 } else {
271                         rc = 1;
272                         logthing(LOGTHING_NOTICE, "No changes.");
273                 }
274         } else if (!strcmp("clean", argv[optind])) {
275                 if (binary) {
276                         result = read_openpgp_stream(stdin_getchar, NULL,
277                                  &packets, 0);
278                         logthing(LOGTHING_INFO,
279                                         "read_openpgp_stream: %d", result);
280                 } else {
281                         dearmor_openpgp_stream(stdin_getchar, NULL, &packets);
282                 }
283
284                 if (packets != NULL) {
285                         result = parse_keys(packets, &keys);
286                         free_packet_list(packets);
287                         packets = NULL;
288                         logthing(LOGTHING_INFO, "Finished reading %d keys.",
289                                         result);
290
291                         if (keys != NULL) {
292                                 result = cleankeys(&keys,
293                                                 config.clean_policies);
294                                 logthing(LOGTHING_INFO, "%d keys cleaned.",
295                                                 result);
296
297                                 flatten_publickey(keys,
298                                         &packets,
299                                         &list_end);
300
301                                 if (binary) {
302                                         write_openpgp_stream(stdout_putchar,
303                                                         NULL,
304                                                         packets);
305                                 } else {
306                                         armor_openpgp_stream(stdout_putchar,
307                                                 NULL,
308                                                 packets);
309                                 }
310                                 free_packet_list(packets);
311                                 packets = NULL;
312                         }
313                 } else {
314                         rc = 1;
315                         logthing(LOGTHING_NOTICE, "No keys read.");
316                 }
317                 
318                 if (keys != NULL) {
319                         free_publickey(keys);
320                         keys = NULL;
321                 }
322         } else if (!strcmp("dumpconfig", argv[optind])) {
323                 if ((argc - optind) == 2) {
324                         writeconfig(argv[optind + 1]);
325                 } else {
326                         /* Dump config to stdout */
327                         writeconfig(NULL);
328                 }
329         } else if ((argc - optind) == 2) {
330                 search = argv[optind+1];
331                 if (search != NULL && strlen(search) == 42 &&
332                                 search[0] == '0' && search[1] == 'x') {
333                         /* v4 fingerprint */
334                         fingerprint.length = 20;
335                         for (i = 0; i < 20; i++) {
336                                 fingerprint.fp[i] =
337                                         (hex2bin(search[2 + i * 2]) << 4) +
338                                                 hex2bin(search[3 + i * 2]);
339                         }
340                         isfp = true;
341                 } else if (search != NULL && strlen(search) == 66 &&
342                                 search[0] == '0' && search[1] == 'x') {
343                         /* v5 fingerprint */
344                         fingerprint.length = 32;
345                         for (i = 0; i < 32; i++) {
346                                 fingerprint.fp[i] =
347                                         (hex2bin(search[2 + i * 2]) << 4) +
348                                                 hex2bin(search[3 + i * 2]);
349                         }
350                         isfp = true;
351                 } else if (search != NULL) {
352                         keyid = strtouq(search, &end, 16);
353                         if (*search != 0 &&
354                                         end != NULL &&
355                                         *end == 0) {
356                                 ishex = true;
357                         }
358                 }
359                 dbctx = config.dbinit(config.backend, false);
360                 if (!strcmp("index", argv[optind])) {
361                         find_keys(dbctx, search, keyid, &fingerprint, ishex,
362                                         isfp, dispfp, skshash,
363                                         false, false);
364                 } else if (!strcmp("vindex", argv[optind])) {
365                         find_keys(dbctx, search, keyid, &fingerprint, ishex,
366                                         isfp, dispfp, skshash,
367                                         false, true);
368                 } else if (!strcmp("getphoto", argv[optind])) {
369                         if (!ishex) {
370                                 puts("Can't get a key on uid text."
371                                         " You must supply a keyid.");
372                         } else if (dbctx->fetch_key_id(dbctx, keyid, &keys,
373                                         false)) {
374                                 unsigned char *photo = NULL;
375                                 size_t         length = 0;
376
377                                 if (getphoto(keys, 0, &photo,
378                                                 &length) == ONAK_E_OK) {
379                                         fwrite(photo,
380                                                 1,
381                                                 length,
382                                                 stdout);
383                                 }
384                                 free_publickey(keys);
385                                 keys = NULL;
386                         } else {
387                                 puts("Key not found");
388                         }
389                 } else if (!strcmp("delete", argv[optind])) {
390                         dbctx->delete_key(dbctx,
391                                         dbctx->getfullkeyid(dbctx, keyid),
392                                         false);
393                 } else if (!strcmp("get", argv[optind])) {
394                         if (!(ishex || isfp)) {
395                                 puts("Can't get a key on uid text."
396                                         " You must supply a keyid / "
397                                         "fingerprint.");
398                         } else if ((isfp &&
399                                         dbctx->fetch_key_fp(dbctx,
400                                                 &fingerprint,
401                                                 &keys, false)) ||
402                                         (ishex &&
403                                         dbctx->fetch_key_id(dbctx, keyid,
404                                                 &keys, false))) {
405                                 logthing(LOGTHING_INFO, "Got key.");
406                                 flatten_publickey(keys,
407                                                 &packets,
408                                                 &list_end);
409                                 free_publickey(keys);
410                                 if (binary) {
411                                         write_openpgp_stream(stdout_putchar,
412                                                 NULL,
413                                                 packets);
414                                 } else {
415                                         armor_openpgp_stream(stdout_putchar,
416                                                 NULL,
417                                                 packets);
418                                 }
419                                 free_packet_list(packets);
420                                 packets = NULL;
421                         } else {
422                                 puts("Key not found");
423                         }
424                 } else if (!strcmp("hget", argv[optind])) {
425                         if (!parse_skshash(search, &hash)) {
426                                 puts("Couldn't parse sks hash.");
427                         } else if (dbctx->fetch_key_skshash(dbctx, &hash,
428                                         &keys)) {
429                                 logthing(LOGTHING_INFO, "Got key.");
430                                 flatten_publickey(keys,
431                                                 &packets,
432                                                 &list_end);
433                                 free_publickey(keys);
434                                 if (binary) {
435                                         write_openpgp_stream(stdout_putchar,
436                                                 NULL,
437                                                 packets);
438                                 } else {
439                                         armor_openpgp_stream(stdout_putchar,
440                                                 NULL,
441                                                 packets);
442                                 }
443                                 free_packet_list(packets);
444                                 packets = NULL;
445                         } else {
446                                 puts("Key not found");
447                         }
448                 } else if (!strcmp("reindex", argv[optind])) {
449                         dbctx->starttrans(dbctx);
450                         if (dbctx->fetch_key_id(dbctx, keyid, &keys, true)) {
451                                 dbctx->delete_key(dbctx, keyid, true);
452                                 cleankeys(&keys, config.clean_policies);
453                                 dbctx->store_key(dbctx, keys, true, false);
454                         } else {
455                                 puts("Key not found");
456                         }
457                         dbctx->endtrans(dbctx);
458                 }
459                 dbctx->cleanupdb(dbctx);
460         } else {
461                 usage();
462         }
463
464         cleanuplogthing();
465         cleanupconfig();
466         free(configfile);
467
468         return rc;
469 }