Update Debian Vcs-* fields to point to git repository
[onak.git] / splitkeys.c
1 /*
2  * splitkeys.c - Split a keyring into smaller chunks.
3  *
4  * Copyright 2003 Jonathan McDowell <noodles@earth.li>
5  *
6  * This program is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc., 51
17  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #include <fcntl.h>
21 #include <stdio.h>
22 #include <sys/stat.h>
23 #include <sys/types.h>
24 #include <unistd.h>
25
26 #include "charfuncs.h"
27 #include "keystructs.h"
28 #include "mem.h"
29 #include "openpgp.h"
30 #include "parsekey.h"
31
32 int main(int argc, char *argv[])
33 {
34         struct openpgp_packet_list      *packets = NULL;
35         struct openpgp_packet_list      *list_end = NULL;
36         struct openpgp_packet_list      *tmp = NULL;
37         int                              maxkeys = 10000;
38         int                              outfd = -1;
39         int                              count = 0;
40         char                             splitfile[1024];
41
42         if (argc > 1) {
43                 maxkeys = atoi(argv[1]);
44                 if (maxkeys == 0) {
45                         fprintf(stderr,
46                                 "Couldn't parse %s as a number of keys!\n",
47                                 argv[1]);
48                         exit(EXIT_FAILURE);
49                 }
50         }
51
52         do {
53                 read_openpgp_stream(stdin_getchar, NULL,
54                                  &packets, maxkeys);
55                 if (packets != NULL) {
56                         list_end = packets;
57                         while (list_end->next != NULL) {
58                                 tmp = list_end;
59                                 list_end = list_end->next;
60                                 if (list_end->next == NULL &&
61                                         list_end->packet->tag ==
62                                                 OPENPGP_PACKET_PUBLICKEY) {
63                                         tmp->next = NULL;
64                                 }
65                         }
66                         if (tmp != NULL && tmp->next != NULL) {
67                                 list_end = NULL;
68                         }
69
70                         snprintf(splitfile, 1023, "splitfile-%d.pgp", count);
71                         outfd = open(splitfile, O_WRONLY | O_CREAT, 0664);
72                         write_openpgp_stream(file_putchar, &outfd,
73                                         packets);
74                         close(outfd);
75                         free_packet_list(packets);
76                         packets = list_end;
77                         count++;
78                 }
79         } while (packets != NULL);
80
81         return 0;
82 }