/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/mandosclient.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-03 16:05:52 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080803160552-mvqy5klry3wn57x1
* plugins.d/mandosclient.c (initgnutls): Moved "err" variable into its
                                         own code block.
  (start_mandos_communication): Moved call to "initgnutls" to
                                beginning.  Renamed label "exit" to
                                "mandos_end".  Bug fix: set return
                                code if failure to realloc buffer.
                                Close TLS session as early as
                                possible.
  (resolve_callback): Also print interface number when debugging.
  (main): Moved "debug_int" and "config" into their own respective
          code blocks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#define _LARGEFILE_SOURCE
33
33
#define _FILE_OFFSET_BITS 64
34
34
 
35
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
 
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
38
 
                                   ferror() */
39
 
#include <stdint.h>             /* uint16_t, uint32_t */
40
 
#include <stddef.h>             /* NULL, size_t, ssize_t */
41
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
42
 
                                   srand() */
43
 
#include <stdbool.h>            /* bool, true */
44
 
#include <string.h>             /* memset(), strcmp(), strlen(),
45
 
                                   strerror(), memcpy(), strcpy() */
46
 
#include <sys/ioctl.h>          /* ioctl */
47
 
#include <net/if.h>             /* ifreq, SIOCGIFFLAGS, SIOCSIFFLAGS,
48
 
                                   IFF_UP */
49
 
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
50
 
                                   sockaddr_in6, PF_INET6,
51
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
52
 
                                   uid_t, gid_t */
53
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
54
 
                                   struct in6_addr, inet_pton(),
55
 
                                   connect() */
56
 
#include <assert.h>             /* assert() */
57
 
#include <errno.h>              /* perror(), errno */
58
 
#include <time.h>               /* time() */
 
35
#include <stdio.h>
 
36
#include <assert.h>
 
37
#include <stdlib.h>
 
38
#include <time.h>
 
39
#include <net/if.h>             /* if_nametoindex */
 
40
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
41
                                   SIOCSIFFLAGS */
59
42
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
60
 
                                   SIOCSIFFLAGS, if_indextoname(),
61
 
                                   if_nametoindex(), IF_NAMESIZE */
62
 
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
63
 
                                   getuid(), getgid(), setuid(),
64
 
                                   setgid() */
65
 
#include <netinet/in.h>
66
 
#include <arpa/inet.h>          /* inet_pton(), htons */
67
 
#include <iso646.h>             /* not, and */
68
 
#include <argp.h>               /* struct argp_option, error_t, struct
69
 
                                   argp_state, struct argp,
70
 
                                   argp_parse(), ARGP_KEY_ARG,
71
 
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
43
                                   SIOCSIFFLAGS */
72
44
 
73
 
/* Avahi */
74
 
/* All Avahi types, constants and functions
75
 
 Avahi*, avahi_*,
76
 
 AVAHI_* */
77
45
#include <avahi-core/core.h>
78
46
#include <avahi-core/lookup.h>
79
47
#include <avahi-core/log.h>
81
49
#include <avahi-common/malloc.h>
82
50
#include <avahi-common/error.h>
83
51
 
84
 
/* GnuTLS */
85
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
86
 
                                   gnutls_*
87
 
                                   init_gnutls_session(),
88
 
                                   GNUTLS_* */
89
 
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
90
 
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
52
/* Mandos client part */
 
53
#include <sys/types.h>          /* socket(), inet_pton() */
 
54
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
55
                                   struct in6_addr, inet_pton() */
 
56
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
 
57
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
 
58
 
 
59
#include <unistd.h>             /* close() */
 
60
#include <netinet/in.h>
 
61
#include <stdbool.h>            /* true */
 
62
#include <string.h>             /* memset */
 
63
#include <arpa/inet.h>          /* inet_pton() */
 
64
#include <iso646.h>             /* not */
 
65
#include <net/if.h>             /* IF_NAMESIZE */
91
66
 
92
67
/* GPGME */
93
 
#include <gpgme.h>              /* All GPGME types, constants and functions
94
 
                                   gpgme_*
95
 
                                   GPGME_PROTOCOL_OpenPGP,
96
 
                                   GPG_ERR_NO_* */
 
68
#include <errno.h>              /* perror() */
 
69
#include <gpgme.h>
 
70
 
 
71
/* getopt_long */
 
72
#include <getopt.h>
97
73
 
98
74
#define BUFFER_SIZE 256
99
75
 
 
76
static const char *keydir = "/conf/conf.d/mandos";
 
77
static const char *pubkeyfile = "pubkey.txt";
 
78
static const char *seckeyfile = "seckey.txt";
 
79
 
100
80
bool debug = false;
101
 
static const char *keydir = "/conf/conf.d/mandos";
102
 
static const char mandos_protocol_version[] = "1";
103
 
const char *argp_program_version = "mandosclient 1.0";
104
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
105
81
 
106
 
/* Used for passing in values through the Avahi callback functions */
 
82
/* Used for passing in values through all the callback functions */
107
83
typedef struct {
108
84
  AvahiSimplePoll *simple_poll;
109
85
  AvahiServer *server;
110
86
  gnutls_certificate_credentials_t cred;
111
87
  unsigned int dh_bits;
112
 
  gnutls_dh_params_t dh_params;
113
88
  const char *priority;
114
89
} mandos_context;
115
90
 
116
 
/*
117
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
118
 
 * "buffer_capacity" is how much is currently allocated,
119
 
 * "buffer_length" is how much is already used.
120
 
 */
121
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
122
 
                  size_t buffer_capacity){
123
 
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
124
 
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
125
 
    if (buffer == NULL){
126
 
      return 0;
127
 
    }
128
 
    buffer_capacity += BUFFER_SIZE;
129
 
  }
130
 
  return buffer_capacity;
131
 
}
132
 
 
133
91
/* 
134
92
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
135
93
 * Returns -1 on error
258
216
  
259
217
  *plaintext = NULL;
260
218
  while(true){
261
 
    plaintext_capacity = adjustbuffer(plaintext,
262
 
                                      (size_t)plaintext_length,
263
 
                                      plaintext_capacity);
264
 
    if (plaintext_capacity == 0){
265
 
        perror("adjustbuffer");
 
219
    if (plaintext_length + BUFFER_SIZE
 
220
        > (ssize_t) plaintext_capacity){
 
221
      *plaintext = realloc(*plaintext, plaintext_capacity
 
222
                            + BUFFER_SIZE);
 
223
      if (*plaintext == NULL){
 
224
        perror("realloc");
266
225
        plaintext_length = -1;
267
226
        goto decrypt_end;
 
227
      }
 
228
      plaintext_capacity += BUFFER_SIZE;
268
229
    }
269
230
    
270
231
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
313
274
  fprintf(stderr, "GnuTLS: %s", string);
314
275
}
315
276
 
316
 
static int init_gnutls_global(mandos_context *mc,
317
 
                              const char *pubkeyfile,
318
 
                              const char *seckeyfile){
 
277
static int initgnutls(mandos_context *mc, gnutls_session_t *session,
 
278
                      gnutls_dh_params_t *dh_params){
319
279
  int ret;
320
280
  
321
281
  if(debug){
322
282
    fprintf(stderr, "Initializing GnuTLS\n");
323
283
  }
324
 
  
325
 
  ret = gnutls_global_init();
326
 
  if (ret != GNUTLS_E_SUCCESS) {
 
284
 
 
285
  if ((ret = gnutls_global_init ())
 
286
      != GNUTLS_E_SUCCESS) {
327
287
    fprintf (stderr, "GnuTLS global_init: %s\n",
328
288
             safer_gnutls_strerror(ret));
329
289
    return -1;
338
298
  }
339
299
  
340
300
  /* OpenPGP credentials */
341
 
  gnutls_certificate_allocate_credentials(&mc->cred);
342
 
  if (ret != GNUTLS_E_SUCCESS){
 
301
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
 
302
      != GNUTLS_E_SUCCESS) {
343
303
    fprintf (stderr, "GnuTLS memory error: %s\n",
344
304
             safer_gnutls_strerror(ret));
345
 
    gnutls_global_deinit ();
346
305
    return -1;
347
306
  }
348
307
  
360
319
            " '%s')\n", ret, pubkeyfile, seckeyfile);
361
320
    fprintf(stdout, "The GnuTLS error is: %s\n",
362
321
            safer_gnutls_strerror(ret));
363
 
    goto globalfail;
 
322
    return -1;
364
323
  }
365
324
  
366
325
  /* GnuTLS server initialization */
367
 
  ret = gnutls_dh_params_init(&mc->dh_params);
 
326
  ret = gnutls_dh_params_init(dh_params);
368
327
  if (ret != GNUTLS_E_SUCCESS) {
369
328
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
370
329
             " %s\n", safer_gnutls_strerror(ret));
371
 
    goto globalfail;
 
330
    return -1;
372
331
  }
373
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
332
  ret = gnutls_dh_params_generate2(*dh_params, mc->dh_bits);
374
333
  if (ret != GNUTLS_E_SUCCESS) {
375
334
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
376
335
             safer_gnutls_strerror(ret));
377
 
    goto globalfail;
 
336
    return -1;
378
337
  }
379
338
  
380
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
381
 
 
382
 
  return 0;
383
 
 
384
 
 globalfail:
385
 
 
386
 
  gnutls_certificate_free_credentials(mc->cred);
387
 
  gnutls_global_deinit();
388
 
  return -1;
389
 
 
390
 
}
391
 
 
392
 
static int init_gnutls_session(mandos_context *mc,
393
 
                               gnutls_session_t *session){
394
 
  int ret;
 
339
  gnutls_certificate_set_dh_params(mc->cred, *dh_params);
 
340
  
395
341
  /* GnuTLS session creation */
396
342
  ret = gnutls_init(session, GNUTLS_SERVER);
397
343
  if (ret != GNUTLS_E_SUCCESS){
406
352
      fprintf(stderr, "Syntax error at: %s\n", err);
407
353
      fprintf(stderr, "GnuTLS error: %s\n",
408
354
              safer_gnutls_strerror(ret));
409
 
      gnutls_deinit (*session);
410
355
      return -1;
411
356
    }
412
357
  }
416
361
  if (ret != GNUTLS_E_SUCCESS) {
417
362
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
418
363
            safer_gnutls_strerror(ret));
419
 
    gnutls_deinit (*session);
420
364
    return -1;
421
365
  }
422
366
  
438
382
                                      AvahiIfIndex if_index,
439
383
                                      mandos_context *mc){
440
384
  int ret, tcp_sd;
441
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
385
  struct sockaddr_in6 to;
442
386
  char *buffer = NULL;
443
387
  char *decrypted_buffer;
444
388
  size_t buffer_length = 0;
445
389
  size_t buffer_capacity = 0;
446
390
  ssize_t decrypted_buffer_size;
447
 
  size_t written;
 
391
  size_t written = 0;
448
392
  int retval = 0;
449
393
  char interface[IF_NAMESIZE];
450
394
  gnutls_session_t session;
 
395
  gnutls_dh_params_t dh_params;
451
396
  
452
 
  ret = init_gnutls_session (mc, &session);
 
397
  ret = initgnutls (mc, &session, &dh_params);
453
398
  if (ret != 0){
454
399
    return -1;
455
400
  }
474
419
  }
475
420
  
476
421
  memset(&to,0,sizeof(to));     /* Spurious warning */
477
 
  to.in6.sin6_family = AF_INET6;
 
422
  to.sin6_family = AF_INET6;
478
423
  /* It would be nice to have a way to detect if we were passed an
479
424
     IPv4 address here.   Now we assume an IPv6 address. */
480
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
425
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
481
426
  if (ret < 0 ){
482
427
    perror("inet_pton");
483
428
    return -1;
486
431
    fprintf(stderr, "Bad address: %s\n", ip);
487
432
    return -1;
488
433
  }
489
 
  to.in6.sin6_port = htons(port);       /* Spurious warning */
 
434
  to.sin6_port = htons(port);   /* Spurious warning */
490
435
  
491
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
436
  to.sin6_scope_id = (uint32_t)if_index;
492
437
  
493
438
  if(debug){
494
439
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
495
440
    char addrstr[INET6_ADDRSTRLEN] = "";
496
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
 
441
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
497
442
                 sizeof(addrstr)) == NULL){
498
443
      perror("inet_ntop");
499
444
    } else {
503
448
    }
504
449
  }
505
450
  
506
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
 
451
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
507
452
  if (ret < 0){
508
453
    perror("connect");
509
454
    return -1;
510
455
  }
511
 
 
512
 
  const char *out = mandos_protocol_version;
513
 
  written = 0;
514
 
  while (true){
515
 
    size_t out_size = strlen(out);
516
 
    ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
517
 
                                   out_size - written));
518
 
    if (ret == -1){
519
 
      perror("write");
520
 
      retval = -1;
521
 
      goto mandos_end;
522
 
    }
523
 
    written += (size_t)ret;
524
 
    if(written < out_size){
525
 
      continue;
526
 
    } else {
527
 
      if (out == mandos_protocol_version){
528
 
        written = 0;
529
 
        out = "\r\n";
530
 
      } else {
531
 
        break;
532
 
      }
533
 
    }
534
 
  }
535
 
 
 
456
  
536
457
  if(debug){
537
458
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
538
459
  }
539
460
  
540
461
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
541
 
 
542
 
  do{
543
 
    ret = gnutls_handshake (session);
544
 
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
462
  
 
463
  ret = gnutls_handshake (session);
545
464
  
546
465
  if (ret != GNUTLS_E_SUCCESS){
547
466
    if(debug){
560
479
  }
561
480
 
562
481
  while(true){
563
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
564
 
                                   buffer_capacity);
565
 
    if (buffer_capacity == 0){
566
 
      perror("adjustbuffer");
567
 
      retval = -1;
568
 
      goto mandos_end;
 
482
    if (buffer_length + BUFFER_SIZE > buffer_capacity){
 
483
      buffer = realloc(buffer, buffer_capacity + BUFFER_SIZE);
 
484
      if (buffer == NULL){
 
485
        perror("realloc");
 
486
        retval = -1;
 
487
        goto mandos_end;
 
488
      }
 
489
      buffer_capacity += BUFFER_SIZE;
569
490
    }
570
491
    
571
492
    ret = gnutls_record_recv(session, buffer+buffer_length,
579
500
      case GNUTLS_E_AGAIN:
580
501
        break;
581
502
      case GNUTLS_E_REHANDSHAKE:
582
 
        do{
583
 
          ret = gnutls_handshake (session);
584
 
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
503
        ret = gnutls_handshake (session);
585
504
        if (ret < 0){
586
505
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
587
506
          gnutls_perror (ret);
613
532
                                               &decrypted_buffer,
614
533
                                               keydir);
615
534
    if (decrypted_buffer_size >= 0){
616
 
      written = 0;
617
535
      while(written < (size_t) decrypted_buffer_size){
618
536
        ret = (int)fwrite (decrypted_buffer + written, 1,
619
537
                           (size_t)decrypted_buffer_size - written,
640
558
  free(buffer);
641
559
  close(tcp_sd);
642
560
  gnutls_deinit (session);
 
561
  gnutls_certificate_free_credentials (mc->cred);
 
562
  gnutls_global_deinit ();
643
563
  return retval;
644
564
}
645
565
 
768
688
    const char *interface = "eth0";
769
689
    struct ifreq network;
770
690
    int sd;
771
 
    uid_t uid;
772
 
    gid_t gid;
773
691
    char *connect_to = NULL;
774
692
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
775
 
    const char *pubkeyfile = "pubkey.txt";
776
 
    const char *seckeyfile = "seckey.txt";
777
693
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
778
694
                          .dh_bits = 1024, .priority = "SECURE256"};
779
 
    bool gnutls_initalized = false;
780
695
    
781
696
    {
782
 
      struct argp_option options[] = {
783
 
        { .name = "debug", .key = 128,
784
 
          .doc = "Debug mode", .group = 3 },
785
 
        { .name = "connect", .key = 'c',
786
 
          .arg = "IP",
787
 
          .doc = "Connect directly to a sepcified mandos server",
788
 
          .group = 1 },
789
 
        { .name = "interface", .key = 'i',
790
 
          .arg = "INTERFACE",
791
 
          .doc = "Interface that Avahi will conntect through",
792
 
          .group = 1 },
793
 
        { .name = "keydir", .key = 'd',
794
 
          .arg = "KEYDIR",
795
 
          .doc = "Directory where the openpgp keyring is",
796
 
          .group = 1 },
797
 
        { .name = "seckey", .key = 's',
798
 
          .arg = "SECKEY",
799
 
          .doc = "Secret openpgp key for gnutls authentication",
800
 
          .group = 1 },
801
 
        { .name = "pubkey", .key = 'p',
802
 
          .arg = "PUBKEY",
803
 
          .doc = "Public openpgp key for gnutls authentication",
804
 
          .group = 2 },
805
 
        { .name = "dh-bits", .key = 129,
806
 
          .arg = "BITS",
807
 
          .doc = "dh-bits to use in gnutls communication",
808
 
          .group = 2 },
809
 
        { .name = "priority", .key = 130,
810
 
          .arg = "PRIORITY",
811
 
          .doc = "GNUTLS priority", .group = 1 },
812
 
        { .name = NULL }
813
 
      };
814
 
 
815
 
      
816
 
      error_t parse_opt (int key, char *arg,
817
 
                         struct argp_state *state) {
818
 
        /* Get the INPUT argument from `argp_parse', which we know is
819
 
           a pointer to our plugin list pointer. */
820
 
        switch (key) {
821
 
        case 128:
822
 
          debug = true;
 
697
      /* Temporary int to get the address of for getopt_long */
 
698
      int debug_int = debug ? 1 : 0;
 
699
      while (true){
 
700
        struct option long_options[] = {
 
701
          {"debug", no_argument, &debug_int, 1},
 
702
          {"connect", required_argument, NULL, 'c'},
 
703
          {"interface", required_argument, NULL, 'i'},
 
704
          {"keydir", required_argument, NULL, 'd'},
 
705
          {"seckey", required_argument, NULL, 's'},
 
706
          {"pubkey", required_argument, NULL, 'p'},
 
707
          {"dh-bits", required_argument, NULL, 'D'},
 
708
          {"priority", required_argument, NULL, 'P'},
 
709
          {0, 0, 0, 0} };
 
710
      
 
711
        int option_index = 0;
 
712
        ret = getopt_long (argc, argv, "i:", long_options,
 
713
                           &option_index);
 
714
      
 
715
        if (ret == -1){
 
716
          break;
 
717
        }
 
718
      
 
719
        switch(ret){
 
720
        case 0:
 
721
          break;
 
722
        case 'i':
 
723
          interface = optarg;
823
724
          break;
824
725
        case 'c':
825
 
          connect_to = arg;
826
 
          break;
827
 
        case 'i':
828
 
          interface = arg;
 
726
          connect_to = optarg;
829
727
          break;
830
728
        case 'd':
831
 
          keydir = arg;
 
729
          keydir = optarg;
 
730
          break;
 
731
        case 'p':
 
732
          pubkeyfile = optarg;
832
733
          break;
833
734
        case 's':
834
 
          seckeyfile = arg;
835
 
          break;
836
 
        case 'p':
837
 
          pubkeyfile = arg;
838
 
          break;
839
 
        case 129:
 
735
          seckeyfile = optarg;
 
736
          break;
 
737
        case 'D':
840
738
          errno = 0;
841
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
739
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
842
740
          if (errno){
843
741
            perror("strtol");
844
742
            exit(EXIT_FAILURE);
845
743
          }
846
744
          break;
847
 
        case 130:
848
 
          mc.priority = arg;
849
 
          break;
850
 
        case ARGP_KEY_ARG:
851
 
          argp_usage (state);
852
 
          break;
853
 
          case ARGP_KEY_END:
854
 
            break;
 
745
        case 'P':
 
746
          mc.priority = optarg;
 
747
          break;
 
748
        case '?':
855
749
        default:
856
 
          return ARGP_ERR_UNKNOWN;
 
750
          /* getopt_long() has already printed a message about the
 
751
             unrcognized option, so just exit. */
 
752
          exit(EXIT_FAILURE);
857
753
        }
858
 
        return 0;
859
 
      }
860
 
 
861
 
      struct argp argp = { .options = options, .parser = parse_opt,
862
 
                           .args_doc = "",
863
 
                           .doc = "Mandos client -- Get and decrypt"
864
 
                           " passwords from mandos server" };
865
 
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
866
 
      if (ret == ARGP_ERR_UNKNOWN){
867
 
        fprintf(stderr, "Unkown error while parsing arguments\n");
868
 
        exitcode = EXIT_FAILURE;
869
 
        goto end;
870
 
      }
 
754
      }
 
755
      /* Set the global debug flag from the temporary int */
 
756
      debug = debug_int ? true : false;
871
757
    }
872
 
      
 
758
    
873
759
    pubkeyfile = combinepath(keydir, pubkeyfile);
874
760
    if (pubkeyfile == NULL){
875
761
      perror("combinepath");
882
768
      perror("combinepath");
883
769
      goto end;
884
770
    }
885
 
 
886
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
887
 
    if (ret == -1){
888
 
      fprintf(stderr, "init_gnutls_global\n");
889
 
      goto end;
890
 
    } else {
891
 
      gnutls_initalized = true;
892
 
    }
893
 
 
894
 
    uid = getuid();
895
 
    gid = getgid();
896
 
 
897
 
    ret = setuid(uid);
898
 
    if (ret == -1){
899
 
      perror("setuid");
900
 
    }
901
 
    
902
 
    setgid(gid);
903
 
    if (ret == -1){
904
 
      perror("setgid");
905
 
    }
906
771
    
907
772
    if_index = (AvahiIfIndex) if_nametoindex(interface);
908
773
    if(if_index == 0){
916
781
      char *address = strrchr(connect_to, ':');
917
782
      if(address == NULL){
918
783
        fprintf(stderr, "No colon in address\n");
919
 
        exitcode = EXIT_FAILURE;
920
 
        goto end;
 
784
        exit(EXIT_FAILURE);
921
785
      }
922
786
      errno = 0;
923
787
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
924
788
      if(errno){
925
789
        perror("Bad port number");
926
 
        exitcode = EXIT_FAILURE;
927
 
        goto end;
 
790
        exit(EXIT_FAILURE);
928
791
      }
929
792
      *address = '\0';
930
793
      address = connect_to;
931
794
      ret = start_mandos_communication(address, port, if_index, &mc);
932
795
      if(ret < 0){
933
 
        exitcode = EXIT_FAILURE;
 
796
        exit(EXIT_FAILURE);
934
797
      } else {
935
 
        exitcode = EXIT_SUCCESS;
 
798
        exit(EXIT_SUCCESS);
936
799
      }
937
 
      goto end;
938
800
    }
939
801
    
940
802
    /* If the interface is down, bring it up */
1043
905
        avahi_simple_poll_free(mc.simple_poll);
1044
906
    free(pubkeyfile);
1045
907
    free(seckeyfile);
1046
 
 
1047
 
    if (gnutls_initalized){
1048
 
      gnutls_certificate_free_credentials(mc.cred);
1049
 
      gnutls_global_deinit ();
1050
 
    }
1051
908
    
1052
909
    return exitcode;
1053
910
}