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