32
32
#define _LARGEFILE_SOURCE
 
33
33
#define _FILE_OFFSET_BITS 64
 
35
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
39
39
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
43
43
#include <stdbool.h>            /* bool, true */
 
44
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
 
                                   strerror(), asprintf(), strcpy() */
 
 
45
                                   strerror(), memcpy(), strcpy() */
 
46
46
#include <sys/ioctl.h>          /* ioctl */
 
47
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
48
48
                                   sockaddr_in6, PF_INET6,
 
 
341
339
  /* OpenPGP credentials */
 
342
340
  gnutls_certificate_allocate_credentials(&mc->cred);
 
343
341
  if (ret != GNUTLS_E_SUCCESS){
 
344
 
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
 
342
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
346
343
             safer_gnutls_strerror(ret));
 
347
344
    gnutls_global_deinit ();
 
 
352
349
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
 
353
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
 
350
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
357
354
  ret = gnutls_certificate_set_openpgp_key_file
 
358
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
359
 
     GNUTLS_OPENPGP_FMT_BASE64);
 
 
355
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
360
356
  if (ret != GNUTLS_E_SUCCESS) {
 
362
358
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
363
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
 
359
            " '%s')\n", ret, pubkeyfile, seckeyfile);
 
364
360
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
365
361
            safer_gnutls_strerror(ret));
 
 
476
472
    fprintf(stderr, "Binding to interface %s\n", interface);
 
479
 
  memset(&to, 0, sizeof(to));
 
 
475
  memset(&to,0,sizeof(to));     /* Spurious warning */
 
480
476
  to.in6.sin6_family = AF_INET6;
 
481
477
  /* It would be nice to have a way to detect if we were passed an
 
482
478
     IPv4 address here.   Now we assume an IPv6 address. */
 
 
747
743
/* Combines file name and path and returns the malloced new
 
748
744
   string. some sane checks could/should be added */
 
749
 
static char *combinepath(const char *first, const char *second){
 
751
 
  int ret = asprintf(&tmp, "%s/%s", first, second);
 
 
745
static const char *combinepath(const char *first, const char *second){
 
 
746
  size_t f_len = strlen(first);
 
 
747
  size_t s_len = strlen(second);
 
 
748
  char *tmp = malloc(f_len + s_len + 2);
 
 
753
    memcpy(tmp, first, f_len);  /* Spurious warning */
 
 
757
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
 
 
759
  tmp[f_len + 1 + s_len] = '\0';
 
 
769
774
    char *connect_to = NULL;
 
770
775
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
771
 
    char *pubkeyfilename = NULL;
 
772
 
    char *seckeyfilename = NULL;
 
773
 
    const char *pubkeyname = "pubkey.txt";
 
774
 
    const char *seckeyname = "seckey.txt";
 
 
776
    const char *pubkeyfile = "pubkey.txt";
 
 
777
    const char *seckeyfile = "seckey.txt";
 
775
778
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
776
779
                          .dh_bits = 1024, .priority = "SECURE256"};
 
777
780
    bool gnutls_initalized = false;
 
 
870
 
    pubkeyfilename = combinepath(keydir, pubkeyname);
 
871
 
    if (pubkeyfilename == NULL){
 
 
873
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
 
874
    if (pubkeyfile == NULL){
 
872
875
      perror("combinepath");
 
873
876
      exitcode = EXIT_FAILURE;
 
877
 
    seckeyfilename = combinepath(keydir, seckeyname);
 
878
 
    if (seckeyfilename == NULL){
 
 
880
    seckeyfile = combinepath(keydir, seckeyfile);
 
 
881
    if (seckeyfile == NULL){
 
879
882
      perror("combinepath");
 
880
883
      exitcode = EXIT_FAILURE;
 
884
 
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
 
887
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
886
889
      fprintf(stderr, "init_gnutls_global failed\n");
 
887
890
      exitcode = EXIT_FAILURE;
 
 
898
901
        exitcode = EXIT_FAILURE;
 
901
 
      strcpy(network.ifr_name, interface);
 
 
904
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
902
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
904
907
        perror("ioctl SIOCGIFFLAGS");