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