Clean up "set but not used" GCC warnings
[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 "log.h"
29 #include "mem.h"
30 #include "onak-conf.h"
31 #include "openpgp.h"
32 #include "parsekey.h"
33
34 int main(int argc, char *argv[])
35 {
36         struct openpgp_packet_list      *packets = NULL;
37         struct openpgp_packet_list      *list_end = NULL;
38         struct openpgp_packet_list      *tmp = NULL;
39         int                              maxkeys = 10000;
40         int                              outfd = -1;
41         int                              count = 0;
42         char                             splitfile[1024];
43
44         if (argc > 1) {
45                 maxkeys = atoi(argv[1]);
46                 if (maxkeys == 0) {
47                         fprintf(stderr,
48                                 "Couldn't parse %s as a number of keys!\n",
49                                 argv[1]);
50                         exit(EXIT_FAILURE);
51                 }
52         }
53
54         readconfig(NULL);
55         initlogthing("splitkeys", config.logfile);
56
57         do {
58                 read_openpgp_stream(stdin_getchar, NULL,
59                                  &packets, maxkeys);
60                 if (packets != NULL) {
61                         list_end = packets;
62                         while (list_end->next != NULL) {
63                                 tmp = list_end;
64                                 list_end = list_end->next;
65                                 if (list_end->next == NULL &&
66                                         list_end->packet->tag ==
67                                                 OPENPGP_PACKET_PUBLICKEY) {
68                                         tmp->next = NULL;
69                                 }
70                         }
71                         if (tmp->next != NULL) {
72                                 list_end = NULL;
73                         }
74
75                         snprintf(splitfile, 1023, "splitfile-%d.pgp", count);
76                         outfd = open(splitfile, O_WRONLY | O_CREAT, 0664);
77                         write_openpgp_stream(file_putchar, &outfd,
78                                         packets);
79                         close(outfd);
80                         free_packet_list(packets);
81                         packets = list_end;
82                         count++;
83                 }
84         } while (packets != NULL);
85
86         cleanuplogthing();
87         cleanupconfig();
88
89         return 0;
90 }