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