63
63
#include <errno.h> /* perror() */
67
67
#include <getopt.h>
69
69
#define BUFFER_SIZE 256
71
static int dh_bits = 1024;
73
static const char *keydir = "/conf/conf.d/mandos";
74
static const char *pubkeyfile = "pubkey.txt";
75
static const char *seckeyfile = "seckey.txt";
72
const char *certdir = "/conf/conf.d/cryptkeyreq/";
73
const char *certfile = "openpgp-client.txt";
74
const char *certkey = "openpgp-client-key.txt";
77
76
bool debug = false;
81
79
gnutls_session_t session;
82
80
gnutls_certificate_credentials_t cred;
84
82
} encrypted_session;
87
static ssize_t pgp_packet_decrypt (char *packet, size_t packet_size,
85
ssize_t pgp_packet_decrypt (char *packet, size_t packet_size,
86
char **new_packet, const char *homedir){
90
87
gpgme_data_t dh_crypto, dh_plain;
251
static void debuggnutls(__attribute__((unused)) int level,
248
void debuggnutls(__attribute__((unused)) int level,
253
250
fprintf(stderr, "%s", string);
256
static int initgnutls(encrypted_session *es){
253
int initgnutls(encrypted_session *es){
284
281
fprintf(stderr, "Attempting to use OpenPGP certificate %s"
285
" and keyfile %s as GnuTLS credentials\n", pubkeyfile,
282
" and keyfile %s as GnuTLS credentials\n", certfile,
289
286
ret = gnutls_certificate_set_openpgp_key_file
290
(es->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
287
(es->cred, certfile, certkey, GNUTLS_OPENPGP_FMT_BASE64);
291
288
if (ret != GNUTLS_E_SUCCESS) {
293
290
(stderr, "Error[%d] while reading the OpenPGP key pair ('%s',"
295
ret, pubkeyfile, seckeyfile);
292
ret, certfile, certkey);
296
293
fprintf(stdout, "The Error is: %s\n",
297
294
safer_gnutls_strerror(ret));
309
if ((ret = gnutls_dh_params_generate2 (es->dh_params, dh_bits))
306
if ((ret = gnutls_dh_params_generate2 (es->dh_params, DH_BITS))
310
307
!= GNUTLS_E_SUCCESS) {
311
308
fprintf (stderr, "Error in prime generation: %s\n",
312
309
safer_gnutls_strerror(ret));
342
339
gnutls_certificate_server_set_request (es->session,
343
340
GNUTLS_CERT_IGNORE);
345
gnutls_dh_set_prime_bits (es->session, dh_bits);
342
gnutls_dh_set_prime_bits (es->session, DH_BITS);
350
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
351
__attribute__((unused)) const char *txt){}
347
void empty_log(__attribute__((unused)) AvahiLogLevel level,
348
__attribute__((unused)) const char *txt){}
353
static int start_mandos_communication(const char *ip, uint16_t port,
354
AvahiIfIndex if_index){
350
int start_mandos_communication(const char *ip, uint16_t port,
351
AvahiIfIndex if_index){
356
353
struct sockaddr_in6 to;
357
354
encrypted_session es;
405
402
fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
406
char addrstr[INET6_ADDRSTRLEN] = "";
407
if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
408
sizeof(addrstr)) == NULL){
411
if(strcmp(addrstr, ip) != 0){
412
fprintf(stderr, "Canonical address form: %s\n",
413
addrstr, ntohs(to.sin6_port));
403
/* char addrstr[INET6_ADDRSTRLEN]; */
404
/* if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr, */
405
/* sizeof(addrstr)) == NULL){ */
406
/* perror("inet_ntop"); */
408
/* fprintf(stderr, "Really connecting to: %s, port %d\n", */
409
/* addrstr, ntohs(to.sin6_port)); */
418
413
ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
497
492
decrypted_buffer_size = pgp_packet_decrypt(buffer,
499
494
&decrypted_buffer,
501
496
if (decrypted_buffer_size >= 0){
502
497
while(written < (size_t) decrypted_buffer_size){
503
498
ret = (int)fwrite (decrypted_buffer + written, 1,
635
/* Combines file name and path and returns the malloced new
636
string. some sane checks could/should be added */
637
static const char *combinepath(const char *first, const char *second){
638
size_t f_len = strlen(first);
639
size_t s_len = strlen(second);
640
char *tmp = malloc(f_len + s_len + 2);
630
/* combinds file name and path and returns the malloced new string. som sane checks could/should be added */
631
const char *combinepath(const char *first, const char *second){
633
tmp = malloc(strlen(first) + strlen(second) + 2);
641
634
if (tmp == NULL){
645
memcpy(tmp, first, f_len);
649
memcpy(tmp + f_len + 1, second, s_len);
651
tmp[f_len + 1 + s_len] = '\0';
639
if (first[0] != '\0' and first[strlen(first) - 1] != '/'){
658
649
AvahiSServiceBrowser *sb = NULL;
662
652
int returncode = EXIT_SUCCESS;
663
653
const char *interface = NULL;
664
654
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
665
655
char *connect_to = NULL;
667
debug_int = debug ? 1 : 0;
669
658
static struct option long_options[] = {
670
{"debug", no_argument, &debug_int, 1},
671
{"connect", required_argument, NULL, 'C'},
672
{"interface", required_argument, NULL, 'i'},
673
{"keydir", required_argument, NULL, 'd'},
674
{"seckey", required_argument, NULL, 'c'},
675
{"pubkey", required_argument, NULL, 'k'},
676
{"dh-bits", required_argument, NULL, 'D'},
659
{"debug", no_argument, (int *)&debug, 1},
660
{"connect", required_argument, 0, 'C'},
661
{"interface", required_argument, 0, 'i'},
662
{"certdir", required_argument, 0, 'd'},
663
{"certkey", required_argument, 0, 'c'},
664
{"certfile", required_argument, 0, 'k'},
679
667
int option_index = 0;