/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 <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
 
                                   sockaddr_in6, PF_INET6,
49
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
50
 
                                   uid_t, gid_t */
51
 
#include <inttypes.h>           /* PRIu16 */
52
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
53
 
                                   struct in6_addr, inet_pton(),
54
 
                                   connect() */
55
 
#include <assert.h>             /* assert() */
56
 
#include <errno.h>              /* perror(), errno */
57
 
#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 */
58
42
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
59
 
                                   SIOCSIFFLAGS, if_indextoname(),
60
 
                                   if_nametoindex(), IF_NAMESIZE */
61
 
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
62
 
                                   getuid(), getgid(), setuid(),
63
 
                                   setgid() */
64
 
#include <netinet/in.h>
65
 
#include <arpa/inet.h>          /* inet_pton(), htons */
66
 
#include <iso646.h>             /* not, and */
67
 
#include <argp.h>               /* struct argp_option, error_t, struct
68
 
                                   argp_state, struct argp,
69
 
                                   argp_parse(), ARGP_KEY_ARG,
70
 
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
43
                                   SIOCSIFFLAGS */
71
44
 
72
 
/* Avahi */
73
 
/* All Avahi types, constants and functions
74
 
 Avahi*, avahi_*,
75
 
 AVAHI_* */
76
45
#include <avahi-core/core.h>
77
46
#include <avahi-core/lookup.h>
78
47
#include <avahi-core/log.h>
80
49
#include <avahi-common/malloc.h>
81
50
#include <avahi-common/error.h>
82
51
 
83
 
/* GnuTLS */
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
85
 
                                   gnutls_*
86
 
                                   init_gnutls_session(),
87
 
                                   GNUTLS_* */
88
 
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
89
 
                                   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 */
90
66
 
91
67
/* GPGME */
92
 
#include <gpgme.h>              /* All GPGME types, constants and functions
93
 
                                   gpgme_*
94
 
                                   GPGME_PROTOCOL_OpenPGP,
95
 
                                   GPG_ERR_NO_* */
 
68
#include <errno.h>              /* perror() */
 
69
#include <gpgme.h>
 
70
 
 
71
/* getopt_long */
 
72
#include <getopt.h>
96
73
 
97
74
#define BUFFER_SIZE 256
98
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
 
99
80
bool debug = false;
100
 
static const char *keydir = "/conf/conf.d/mandos";
101
 
static const char mandos_protocol_version[] = "1";
102
 
const char *argp_program_version = "password-request 1.0";
103
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
104
81
 
105
 
/* Used for passing in values through the Avahi callback functions */
 
82
/* Used for passing in values through all the callback functions */
106
83
typedef struct {
107
84
  AvahiSimplePoll *simple_poll;
108
85
  AvahiServer *server;
109
86
  gnutls_certificate_credentials_t cred;
110
87
  unsigned int dh_bits;
111
 
  gnutls_dh_params_t dh_params;
112
88
  const char *priority;
113
89
} mandos_context;
114
90
 
115
 
/*
116
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
117
 
 * "buffer_capacity" is how much is currently allocated,
118
 
 * "buffer_length" is how much is already used.
119
 
 */
120
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
121
 
                  size_t buffer_capacity){
122
 
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
123
 
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
124
 
    if (buffer == NULL){
125
 
      return 0;
126
 
    }
127
 
    buffer_capacity += BUFFER_SIZE;
128
 
  }
129
 
  return buffer_capacity;
130
 
}
131
 
 
132
91
/* 
133
92
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
134
93
 * Returns -1 on error
227
186
    } else {
228
187
      fprintf(stderr, "Unsupported algorithm: %s\n",
229
188
              result->unsupported_algorithm);
230
 
      fprintf(stderr, "Wrong key usage: %u\n",
 
189
      fprintf(stderr, "Wrong key usage: %d\n",
231
190
              result->wrong_key_usage);
232
191
      if(result->file_name != NULL){
233
192
        fprintf(stderr, "File name: %s\n", result->file_name);
257
216
  
258
217
  *plaintext = NULL;
259
218
  while(true){
260
 
    plaintext_capacity = adjustbuffer(plaintext,
261
 
                                      (size_t)plaintext_length,
262
 
                                      plaintext_capacity);
263
 
    if (plaintext_capacity == 0){
264
 
        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");
265
225
        plaintext_length = -1;
266
226
        goto decrypt_end;
 
227
      }
 
228
      plaintext_capacity += BUFFER_SIZE;
267
229
    }
268
230
    
269
231
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
312
274
  fprintf(stderr, "GnuTLS: %s", string);
313
275
}
314
276
 
315
 
static int init_gnutls_global(mandos_context *mc,
316
 
                              const char *pubkeyfile,
317
 
                              const char *seckeyfile){
 
277
static int initgnutls(mandos_context *mc, gnutls_session_t *session,
 
278
                      gnutls_dh_params_t *dh_params){
318
279
  int ret;
319
280
  
320
281
  if(debug){
321
282
    fprintf(stderr, "Initializing GnuTLS\n");
322
283
  }
323
 
  
324
 
  ret = gnutls_global_init();
325
 
  if (ret != GNUTLS_E_SUCCESS) {
 
284
 
 
285
  if ((ret = gnutls_global_init ())
 
286
      != GNUTLS_E_SUCCESS) {
326
287
    fprintf (stderr, "GnuTLS global_init: %s\n",
327
288
             safer_gnutls_strerror(ret));
328
289
    return -1;
337
298
  }
338
299
  
339
300
  /* OpenPGP credentials */
340
 
  gnutls_certificate_allocate_credentials(&mc->cred);
341
 
  if (ret != GNUTLS_E_SUCCESS){
 
301
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
 
302
      != GNUTLS_E_SUCCESS) {
342
303
    fprintf (stderr, "GnuTLS memory error: %s\n",
343
304
             safer_gnutls_strerror(ret));
344
 
    gnutls_global_deinit ();
345
305
    return -1;
346
306
  }
347
307
  
359
319
            " '%s')\n", ret, pubkeyfile, seckeyfile);
360
320
    fprintf(stdout, "The GnuTLS error is: %s\n",
361
321
            safer_gnutls_strerror(ret));
362
 
    goto globalfail;
 
322
    return -1;
363
323
  }
364
324
  
365
325
  /* GnuTLS server initialization */
366
 
  ret = gnutls_dh_params_init(&mc->dh_params);
 
326
  ret = gnutls_dh_params_init(dh_params);
367
327
  if (ret != GNUTLS_E_SUCCESS) {
368
328
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
369
329
             " %s\n", safer_gnutls_strerror(ret));
370
 
    goto globalfail;
 
330
    return -1;
371
331
  }
372
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
332
  ret = gnutls_dh_params_generate2(*dh_params, mc->dh_bits);
373
333
  if (ret != GNUTLS_E_SUCCESS) {
374
334
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
375
335
             safer_gnutls_strerror(ret));
376
 
    goto globalfail;
 
336
    return -1;
377
337
  }
378
338
  
379
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
380
 
 
381
 
  return 0;
382
 
 
383
 
 globalfail:
384
 
 
385
 
  gnutls_certificate_free_credentials(mc->cred);
386
 
  gnutls_global_deinit();
387
 
  return -1;
388
 
 
389
 
}
390
 
 
391
 
static int init_gnutls_session(mandos_context *mc,
392
 
                               gnutls_session_t *session){
393
 
  int ret;
 
339
  gnutls_certificate_set_dh_params(mc->cred, *dh_params);
 
340
  
394
341
  /* GnuTLS session creation */
395
342
  ret = gnutls_init(session, GNUTLS_SERVER);
396
343
  if (ret != GNUTLS_E_SUCCESS){
405
352
      fprintf(stderr, "Syntax error at: %s\n", err);
406
353
      fprintf(stderr, "GnuTLS error: %s\n",
407
354
              safer_gnutls_strerror(ret));
408
 
      gnutls_deinit (*session);
409
355
      return -1;
410
356
    }
411
357
  }
415
361
  if (ret != GNUTLS_E_SUCCESS) {
416
362
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
417
363
            safer_gnutls_strerror(ret));
418
 
    gnutls_deinit (*session);
419
364
    return -1;
420
365
  }
421
366
  
437
382
                                      AvahiIfIndex if_index,
438
383
                                      mandos_context *mc){
439
384
  int ret, tcp_sd;
440
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
385
  struct sockaddr_in6 to;
441
386
  char *buffer = NULL;
442
387
  char *decrypted_buffer;
443
388
  size_t buffer_length = 0;
444
389
  size_t buffer_capacity = 0;
445
390
  ssize_t decrypted_buffer_size;
446
 
  size_t written;
 
391
  size_t written = 0;
447
392
  int retval = 0;
448
393
  char interface[IF_NAMESIZE];
449
394
  gnutls_session_t session;
 
395
  gnutls_dh_params_t dh_params;
450
396
  
451
 
  ret = init_gnutls_session (mc, &session);
 
397
  ret = initgnutls (mc, &session, &dh_params);
452
398
  if (ret != 0){
453
399
    return -1;
454
400
  }
455
401
  
456
402
  if(debug){
457
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
458
 
            "\n", ip, port);
 
403
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
 
404
            ip, port);
459
405
  }
460
406
  
461
407
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
473
419
  }
474
420
  
475
421
  memset(&to,0,sizeof(to));     /* Spurious warning */
476
 
  to.in6.sin6_family = AF_INET6;
 
422
  to.sin6_family = AF_INET6;
477
423
  /* It would be nice to have a way to detect if we were passed an
478
424
     IPv4 address here.   Now we assume an IPv6 address. */
479
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
425
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
480
426
  if (ret < 0 ){
481
427
    perror("inet_pton");
482
428
    return -1;
485
431
    fprintf(stderr, "Bad address: %s\n", ip);
486
432
    return -1;
487
433
  }
488
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
 
434
  to.sin6_port = htons(port);   /* Spurious warning */
489
435
  
490
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
436
  to.sin6_scope_id = (uint32_t)if_index;
491
437
  
492
438
  if(debug){
493
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
494
 
            port);
 
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
 
676
596
      char ip[AVAHI_ADDRESS_STR_MAX];
677
597
      avahi_address_snprint(ip, sizeof(ip), address);
678
598
      if(debug){
679
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
680
 
                PRIu16 ") on port %d\n", name, host_name, ip,
681
 
                interface, port);
 
599
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
 
600
                " port %d\n", name, host_name, ip, interface, port);
682
601
      }
683
602
      int ret = start_mandos_communication(ip, port, interface, mc);
684
603
      if (ret == 0){
769
688
    const char *interface = "eth0";
770
689
    struct ifreq network;
771
690
    int sd;
772
 
    uid_t uid;
773
 
    gid_t gid;
774
691
    char *connect_to = NULL;
775
692
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
776
 
    const char *pubkeyfile = "pubkey.txt";
777
 
    const char *seckeyfile = "seckey.txt";
778
693
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
779
694
                          .dh_bits = 1024, .priority = "SECURE256"};
780
 
    bool gnutls_initalized = false;
781
695
    
782
696
    {
783
 
      struct argp_option options[] = {
784
 
        { .name = "debug", .key = 128,
785
 
          .doc = "Debug mode", .group = 3 },
786
 
        { .name = "connect", .key = 'c',
787
 
          .arg = "IP",
788
 
          .doc = "Connect directly to a sepcified mandos server",
789
 
          .group = 1 },
790
 
        { .name = "interface", .key = 'i',
791
 
          .arg = "INTERFACE",
792
 
          .doc = "Interface that Avahi will conntect through",
793
 
          .group = 1 },
794
 
        { .name = "keydir", .key = 'd',
795
 
          .arg = "KEYDIR",
796
 
          .doc = "Directory where the openpgp keyring is",
797
 
          .group = 1 },
798
 
        { .name = "seckey", .key = 's',
799
 
          .arg = "SECKEY",
800
 
          .doc = "Secret openpgp key for gnutls authentication",
801
 
          .group = 1 },
802
 
        { .name = "pubkey", .key = 'p',
803
 
          .arg = "PUBKEY",
804
 
          .doc = "Public openpgp key for gnutls authentication",
805
 
          .group = 2 },
806
 
        { .name = "dh-bits", .key = 129,
807
 
          .arg = "BITS",
808
 
          .doc = "dh-bits to use in gnutls communication",
809
 
          .group = 2 },
810
 
        { .name = "priority", .key = 130,
811
 
          .arg = "PRIORITY",
812
 
          .doc = "GNUTLS priority", .group = 1 },
813
 
        { .name = NULL }
814
 
      };
815
 
 
816
 
      
817
 
      error_t parse_opt (int key, char *arg,
818
 
                         struct argp_state *state) {
819
 
        /* Get the INPUT argument from `argp_parse', which we know is
820
 
           a pointer to our plugin list pointer. */
821
 
        switch (key) {
822
 
        case 128:
823
 
          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;
824
724
          break;
825
725
        case 'c':
826
 
          connect_to = arg;
827
 
          break;
828
 
        case 'i':
829
 
          interface = arg;
 
726
          connect_to = optarg;
830
727
          break;
831
728
        case 'd':
832
 
          keydir = arg;
 
729
          keydir = optarg;
 
730
          break;
 
731
        case 'p':
 
732
          pubkeyfile = optarg;
833
733
          break;
834
734
        case 's':
835
 
          seckeyfile = arg;
836
 
          break;
837
 
        case 'p':
838
 
          pubkeyfile = arg;
839
 
          break;
840
 
        case 129:
 
735
          seckeyfile = optarg;
 
736
          break;
 
737
        case 'D':
841
738
          errno = 0;
842
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
739
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
843
740
          if (errno){
844
741
            perror("strtol");
845
742
            exit(EXIT_FAILURE);
846
743
          }
847
744
          break;
848
 
        case 130:
849
 
          mc.priority = arg;
850
 
          break;
851
 
        case ARGP_KEY_ARG:
852
 
          argp_usage (state);
853
 
          break;
854
 
          case ARGP_KEY_END:
855
 
            break;
 
745
        case 'P':
 
746
          mc.priority = optarg;
 
747
          break;
 
748
        case '?':
856
749
        default:
857
 
          return ARGP_ERR_UNKNOWN;
 
750
          /* getopt_long() has already printed a message about the
 
751
             unrcognized option, so just exit. */
 
752
          exit(EXIT_FAILURE);
858
753
        }
859
 
        return 0;
860
 
      }
861
 
 
862
 
      struct argp argp = { .options = options, .parser = parse_opt,
863
 
                           .args_doc = "",
864
 
                           .doc = "Mandos client -- Get and decrypt"
865
 
                           " passwords from mandos server" };
866
 
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
867
 
      if (ret == ARGP_ERR_UNKNOWN){
868
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
869
 
        exitcode = EXIT_FAILURE;
870
 
        goto end;
871
 
      }
 
754
      }
 
755
      /* Set the global debug flag from the temporary int */
 
756
      debug = debug_int ? true : false;
872
757
    }
873
 
      
 
758
    
874
759
    pubkeyfile = combinepath(keydir, pubkeyfile);
875
760
    if (pubkeyfile == NULL){
876
761
      perror("combinepath");
881
766
    seckeyfile = combinepath(keydir, seckeyfile);
882
767
    if (seckeyfile == NULL){
883
768
      perror("combinepath");
884
 
      exitcode = EXIT_FAILURE;
885
 
      goto end;
886
 
    }
887
 
 
888
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
889
 
    if (ret == -1){
890
 
      fprintf(stderr, "init_gnutls_global failed\n");
891
 
      exitcode = EXIT_FAILURE;
892
 
      goto end;
893
 
    } else {
894
 
      gnutls_initalized = true;
895
 
    }
896
 
    
897
 
    /* If the interface is down, bring it up */
898
 
    {
899
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
900
 
      if(sd < 0) {
901
 
        perror("socket");
902
 
        exitcode = EXIT_FAILURE;
903
 
        goto end;
904
 
      }
905
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
906
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
907
 
      if(ret == -1){
908
 
        perror("ioctl SIOCGIFFLAGS");
909
 
        exitcode = EXIT_FAILURE;
910
 
        goto end;
911
 
      }
912
 
      if((network.ifr_flags & IFF_UP) == 0){
913
 
        network.ifr_flags |= IFF_UP;
914
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
915
 
        if(ret == -1){
916
 
          perror("ioctl SIOCSIFFLAGS");
917
 
          exitcode = EXIT_FAILURE;
918
 
          goto end;
919
 
        }
920
 
      }
921
 
      close(sd);
922
 
    }
923
 
    
924
 
    uid = getuid();
925
 
    gid = getgid();
926
 
    
927
 
    ret = setuid(uid);
928
 
    if (ret == -1){
929
 
      perror("setuid");
930
 
    }
931
 
    
932
 
    setgid(gid);
933
 
    if (ret == -1){
934
 
      perror("setgid");
 
769
      goto end;
935
770
    }
936
771
    
937
772
    if_index = (AvahiIfIndex) if_nametoindex(interface);
946
781
      char *address = strrchr(connect_to, ':');
947
782
      if(address == NULL){
948
783
        fprintf(stderr, "No colon in address\n");
949
 
        exitcode = EXIT_FAILURE;
950
 
        goto end;
 
784
        exit(EXIT_FAILURE);
951
785
      }
952
786
      errno = 0;
953
787
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
954
788
      if(errno){
955
789
        perror("Bad port number");
956
 
        exitcode = EXIT_FAILURE;
957
 
        goto end;
 
790
        exit(EXIT_FAILURE);
958
791
      }
959
792
      *address = '\0';
960
793
      address = connect_to;
961
794
      ret = start_mandos_communication(address, port, if_index, &mc);
962
795
      if(ret < 0){
963
 
        exitcode = EXIT_FAILURE;
 
796
        exit(EXIT_FAILURE);
964
797
      } else {
965
 
        exitcode = EXIT_SUCCESS;
966
 
      }
967
 
      goto end;
 
798
        exit(EXIT_SUCCESS);
 
799
      }
 
800
    }
 
801
    
 
802
    /* If the interface is down, bring it up */
 
803
    {
 
804
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
805
      if(sd < 0) {
 
806
        perror("socket");
 
807
        exitcode = EXIT_FAILURE;
 
808
        goto end;
 
809
      }
 
810
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
811
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
812
      if(ret == -1){
 
813
        perror("ioctl SIOCGIFFLAGS");
 
814
        exitcode = EXIT_FAILURE;
 
815
        goto end;
 
816
      }
 
817
      if((network.ifr_flags & IFF_UP) == 0){
 
818
        network.ifr_flags |= IFF_UP;
 
819
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
820
        if(ret == -1){
 
821
          perror("ioctl SIOCSIFFLAGS");
 
822
          exitcode = EXIT_FAILURE;
 
823
          goto end;
 
824
        }
 
825
      }
 
826
      close(sd);
968
827
    }
969
828
    
970
829
    if (not debug){
1046
905
        avahi_simple_poll_free(mc.simple_poll);
1047
906
    free(pubkeyfile);
1048
907
    free(seckeyfile);
1049
 
 
1050
 
    if (gnutls_initalized){
1051
 
      gnutls_certificate_free_credentials(mc.cred);
1052
 
      gnutls_global_deinit ();
1053
 
    }
1054
908
    
1055
909
    return exitcode;
1056
910
}