/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/password-request.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-03 13:59:58 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080903135958-k0he2xucqmx7nz4b
* plugins.d/password-request.xml (OPTIONS): Improved wording.
  (FILES): Add text about public and secret key files.
  (BUGS): Commented out.
  (EXAMPLE): Added examples.

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() */
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
36
36
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout, ferror() */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
38
                                   stdout, ferror() */
38
39
#include <stdint.h>             /* uint16_t, uint32_t */
39
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
40
 
#include <stdlib.h>             /* free() */
 
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
42
                                   srand() */
41
43
#include <stdbool.h>            /* bool, true */
42
 
#include <string.h>             /* memset(), strcmp(), strlen, strerror() */
43
 
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
44
 
                                   SIOCSIFFLAGS */
 
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
                                   strerror(), asprintf(), strcpy() */
 
46
#include <sys/ioctl.h>          /* ioctl */
45
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
46
 
                                   sockaddr_in6, PF_INET6, SOCK_STREAM, INET6_ADDRSTRLEN */
 
48
                                   sockaddr_in6, PF_INET6,
 
49
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
50
                                   uid_t, gid_t */
 
51
#include <inttypes.h>           /* PRIu16 */
47
52
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
48
53
                                   struct in6_addr, inet_pton(),
49
54
                                   connect() */
50
 
#include <assert.h>
51
 
#include <errno.h>              /* perror() */
52
 
#include <time.h>
 
55
#include <assert.h>             /* assert() */
 
56
#include <errno.h>              /* perror(), errno */
 
57
#include <time.h>               /* time() */
53
58
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
54
59
                                   SIOCSIFFLAGS, if_indextoname(),
55
60
                                   if_nametoindex(), IF_NAMESIZE */
56
 
#include <unistd.h>             /* close(), SEEK_SET, off_t, write()*/
 
61
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
62
                                   getuid(), getgid(), setuid(),
 
63
                                   setgid() */
57
64
#include <netinet/in.h>
58
65
#include <arpa/inet.h>          /* inet_pton(), htons */
59
 
#include <iso646.h>             /* not */
60
 
#include <argp.h>               /* struct argp_option,
61
 
                                   struct argp_state, struct argp,
62
 
                                   argp_parse() */
 
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 */
63
71
 
64
72
/* Avahi */
65
 
#include <avahi-core/core.h>    /* AvahiSimplePoll, AvahiServer,
66
 
                                   AvahiIfIndex */
 
73
/* All Avahi types, constants and functions
 
74
 Avahi*, avahi_*,
 
75
 AVAHI_* */
 
76
#include <avahi-core/core.h>
67
77
#include <avahi-core/lookup.h>
68
 
#include <avahi-core/log.h>     /* AvahiLogLevel */
 
78
#include <avahi-core/log.h>
69
79
#include <avahi-common/simple-watch.h>
70
80
#include <avahi-common/malloc.h>
71
81
#include <avahi-common/error.h>
72
82
 
73
83
/* GnuTLS */
74
 
#include <gnutls/gnutls.h>      /* gnutls_certificate_credentials_t,
75
 
                                   gnutls_dh_params_t,
76
 
                                   gnutls_strerror(),
77
 
                                   gnutls_global_init(),
78
 
                                   gnutls_global_set_log_level(),
79
 
                                   gnutls_global_set_log_function(),
80
 
                                   gnutls_certificate_allocate_credentials(),
81
 
                                   gnutls_global_deinit(),
82
 
                                   gnutls_dh_params_init(),
83
 
                                   gnutls_dh_params_generate(),
84
 
                                   gnutls_certificate_set_dh_params(),
85
 
                                   gnutls_certificate_free_credentials(),
86
 
                                   gnutls_session_t, gnutls_init(),
87
 
                                   gnutls_priority_set_direct(),
88
 
                                   gnutls_deinit(),
89
 
                                   gnutls_credentials_set(),
90
 
                                   gnutls_certificate_server_set_request(),
91
 
                                   gnutls_dh_set_prime_bits(),
92
 
                                   gnutls_transport_set_ptr(),
93
 
                                   gnutls_transport_ptr_t,
94
 
                                   gnutls_handshake(),
95
 
                                   gnutls_record_recv()
96
 
                                   gnutls_perror(), gnutls_bye(),
 
84
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
85
                                   functions:
 
86
                                   gnutls_*
97
87
                                   init_gnutls_session(),
98
 
                                   GNUTLS_E_SUCCESS,
99
 
                                   GNUTLS_CRD_CERTIFICATE,
100
 
                                   GNUTLS_CERT_IGNORE,
101
 
                                   GNUTLS_E_INTERRUPTED,
102
 
                                   GNUTLS_E_AGAIN,
103
 
                                   GNUTLS_E_REHANDSHAKE,
104
 
                                   GNUTLS_SHUT_RDWR, */
105
 
#include <gnutls/openpgp.h> /* gnutls_certificate_set_openpgp_key_file(),
106
 
                               GNUTLS_OPENPGP_FMT_BASE64 */
 
88
                                   GNUTLS_* */
 
89
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
90
                                   GNUTLS_OPENPGP_FMT_BASE64 */
107
91
 
108
92
/* GPGME */
109
 
#include <gpgme.h>              /* gpgme_data_t, gpgme_ctx_t,
110
 
                                   gpgme_error_t, gpgme_engine_info_t,
111
 
                                   gpgme_check_version(),
112
 
                                   gpgme_engine_check_version(),
113
 
                                   gpgme_strsource(),
114
 
                                   gpgme_strerror(),
115
 
                                   gpgme_get_engine_info(),
116
 
                                   gpgme_set_engine_info(),
117
 
                                   gpgme_data_new_from_mem(),
118
 
                                   gpgme_data_new(), gpgme_new(),
119
 
                                   gpgme_op_decrypt(),
120
 
                                   gpgme_decrypt_result_t,
121
 
                                   gpgme_op_decrypt_result(),
122
 
                                   gpgme_recipient_t,
123
 
                                   gpgme_pubkey_algo_name(),
124
 
                                   gpgme_data_seek(),
125
 
                                   gpgme_data_read(),
126
 
                                   gpgme_data_release()
 
93
#include <gpgme.h>              /* All GPGME types, constants and
 
94
                                   functions:
 
95
                                   gpgme_*
127
96
                                   GPGME_PROTOCOL_OpenPGP,
128
 
                                   GPG_ERR_NO_ERROR,
129
 
                                   GPG_ERR_NO_SECKEY, */
 
97
                                   GPG_ERR_NO_* */
130
98
 
131
99
#define BUFFER_SIZE 256
132
100
 
133
101
bool debug = false;
134
102
static const char *keydir = "/conf/conf.d/mandos";
135
103
static const char mandos_protocol_version[] = "1";
136
 
const char *argp_program_version = "mandosclient 0.9";
 
104
const char *argp_program_version = "password-request 1.0";
137
105
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
138
106
 
139
107
/* Used for passing in values through the Avahi callback functions */
246
214
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
247
215
            gpgme_strsource(rc), gpgme_strerror(rc));
248
216
    plaintext_length = -1;
 
217
    if (debug){
 
218
      gpgme_decrypt_result_t result;
 
219
      result = gpgme_op_decrypt_result(ctx);
 
220
      if (result == NULL){
 
221
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
222
      } else {
 
223
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
224
                result->unsupported_algorithm);
 
225
        fprintf(stderr, "Wrong key usage: %u\n",
 
226
                result->wrong_key_usage);
 
227
        if(result->file_name != NULL){
 
228
          fprintf(stderr, "File name: %s\n", result->file_name);
 
229
        }
 
230
        gpgme_recipient_t recipient;
 
231
        recipient = result->recipients;
 
232
        if(recipient){
 
233
          while(recipient != NULL){
 
234
            fprintf(stderr, "Public key algorithm: %s\n",
 
235
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
236
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
237
            fprintf(stderr, "Secret key available: %s\n",
 
238
                    recipient->status == GPG_ERR_NO_SECKEY
 
239
                    ? "No" : "Yes");
 
240
            recipient = recipient->next;
 
241
          }
 
242
        }
 
243
      }
 
244
    }
249
245
    goto decrypt_end;
250
246
  }
251
247
  
253
249
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
254
250
  }
255
251
  
256
 
  if (debug){
257
 
    gpgme_decrypt_result_t result;
258
 
    result = gpgme_op_decrypt_result(ctx);
259
 
    if (result == NULL){
260
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
261
 
    } else {
262
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
263
 
              result->unsupported_algorithm);
264
 
      fprintf(stderr, "Wrong key usage: %d\n",
265
 
              result->wrong_key_usage);
266
 
      if(result->file_name != NULL){
267
 
        fprintf(stderr, "File name: %s\n", result->file_name);
268
 
      }
269
 
      gpgme_recipient_t recipient;
270
 
      recipient = result->recipients;
271
 
      if(recipient){
272
 
        while(recipient != NULL){
273
 
          fprintf(stderr, "Public key algorithm: %s\n",
274
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
275
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
276
 
          fprintf(stderr, "Secret key available: %s\n",
277
 
                  recipient->status == GPG_ERR_NO_SECKEY
278
 
                  ? "No" : "Yes");
279
 
          recipient = recipient->next;
280
 
        }
281
 
      }
282
 
    }
283
 
  }
284
 
  
285
252
  /* Seek back to the beginning of the GPGME plaintext data buffer */
286
253
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
287
254
    perror("pgpme_data_seek");
314
281
    }
315
282
    plaintext_length += ret;
316
283
  }
317
 
 
 
284
  
318
285
  if(debug){
319
286
    fprintf(stderr, "Decrypted password is: ");
320
287
    for(ssize_t i = 0; i < plaintext_length; i++){
334
301
}
335
302
 
336
303
static const char * safer_gnutls_strerror (int value) {
337
 
  const char *ret = gnutls_strerror (value);
 
304
  const char *ret = gnutls_strerror (value); /* Spurious warning */
338
305
  if (ret == NULL)
339
306
    ret = "(unknown)";
340
307
  return ret;
347
314
}
348
315
 
349
316
static int init_gnutls_global(mandos_context *mc,
350
 
                              const char *pubkeyfile,
351
 
                              const char *seckeyfile){
 
317
                              const char *pubkeyfilename,
 
318
                              const char *seckeyfilename){
352
319
  int ret;
353
320
  
354
321
  if(debug){
355
322
    fprintf(stderr, "Initializing GnuTLS\n");
356
323
  }
357
 
 
358
 
  if ((ret = gnutls_global_init ())
359
 
      != GNUTLS_E_SUCCESS) {
 
324
  
 
325
  ret = gnutls_global_init();
 
326
  if (ret != GNUTLS_E_SUCCESS) {
360
327
    fprintf (stderr, "GnuTLS global_init: %s\n",
361
328
             safer_gnutls_strerror(ret));
362
329
    return -1;
371
338
  }
372
339
  
373
340
  /* OpenPGP credentials */
374
 
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
375
 
      != GNUTLS_E_SUCCESS) {
376
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
341
  gnutls_certificate_allocate_credentials(&mc->cred);
 
342
  if (ret != GNUTLS_E_SUCCESS){
 
343
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
344
                                                     warning */
377
345
             safer_gnutls_strerror(ret));
378
346
    gnutls_global_deinit ();
379
347
    return -1;
381
349
  
382
350
  if(debug){
383
351
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
384
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
385
 
            seckeyfile);
 
352
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
353
            seckeyfilename);
386
354
  }
387
355
  
388
356
  ret = gnutls_certificate_set_openpgp_key_file
389
 
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
357
    (mc->cred, pubkeyfilename, seckeyfilename,
 
358
     GNUTLS_OPENPGP_FMT_BASE64);
390
359
  if (ret != GNUTLS_E_SUCCESS) {
391
360
    fprintf(stderr,
392
361
            "Error[%d] while reading the OpenPGP key pair ('%s',"
393
 
            " '%s')\n", ret, pubkeyfile, seckeyfile);
 
362
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
394
363
    fprintf(stdout, "The GnuTLS error is: %s\n",
395
364
            safer_gnutls_strerror(ret));
396
365
    goto globalfail;
411
380
  }
412
381
  
413
382
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
414
 
 
 
383
  
415
384
  return 0;
416
 
 
 
385
  
417
386
 globalfail:
418
 
 
 
387
  
419
388
  gnutls_certificate_free_credentials(mc->cred);
420
389
  gnutls_global_deinit();
421
390
  return -1;
422
 
 
423
391
}
424
392
 
425
393
static int init_gnutls_session(mandos_context *mc,
488
456
  }
489
457
  
490
458
  if(debug){
491
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
492
 
            ip, port);
 
459
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
460
            "\n", ip, port);
493
461
  }
494
462
  
495
463
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
497
465
    perror("socket");
498
466
    return -1;
499
467
  }
500
 
 
 
468
  
501
469
  if(debug){
502
470
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
503
471
      perror("if_indextoname");
506
474
    fprintf(stderr, "Binding to interface %s\n", interface);
507
475
  }
508
476
  
509
 
  memset(&to,0,sizeof(to));     /* Spurious warning */
 
477
  memset(&to, 0, sizeof(to));
510
478
  to.in6.sin6_family = AF_INET6;
511
479
  /* It would be nice to have a way to detect if we were passed an
512
480
     IPv4 address here.   Now we assume an IPv6 address. */
519
487
    fprintf(stderr, "Bad address: %s\n", ip);
520
488
    return -1;
521
489
  }
522
 
  to.in6.sin6_port = htons(port);       /* Spurious warning */
 
490
  to.in6.sin6_port = htons(port); /* Spurious warning */
523
491
  
524
492
  to.in6.sin6_scope_id = (uint32_t)if_index;
525
493
  
526
494
  if(debug){
527
 
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
 
495
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
496
            port);
528
497
    char addrstr[INET6_ADDRSTRLEN] = "";
529
498
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
530
499
                 sizeof(addrstr)) == NULL){
541
510
    perror("connect");
542
511
    return -1;
543
512
  }
544
 
 
 
513
  
545
514
  const char *out = mandos_protocol_version;
546
515
  written = 0;
547
516
  while (true){
565
534
      }
566
535
    }
567
536
  }
568
 
 
 
537
  
569
538
  if(debug){
570
539
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
571
540
  }
572
541
  
573
542
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
574
543
  
575
 
  ret = gnutls_handshake (session);
 
544
  do{
 
545
    ret = gnutls_handshake (session);
 
546
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
576
547
  
577
548
  if (ret != GNUTLS_E_SUCCESS){
578
549
    if(debug){
589
560
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
590
561
            ip);
591
562
  }
592
 
 
 
563
  
593
564
  while(true){
594
565
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
595
566
                                   buffer_capacity);
610
581
      case GNUTLS_E_AGAIN:
611
582
        break;
612
583
      case GNUTLS_E_REHANDSHAKE:
613
 
        ret = gnutls_handshake (session);
 
584
        do{
 
585
          ret = gnutls_handshake (session);
 
586
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
614
587
        if (ret < 0){
615
588
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
616
589
          gnutls_perror (ret);
661
634
    } else {
662
635
      retval = -1;
663
636
    }
 
637
  } else {
 
638
    retval = -1;
664
639
  }
665
640
  
666
641
  /* Shutdown procedure */
687
662
                             flags,
688
663
                             void* userdata) {
689
664
  mandos_context *mc = userdata;
690
 
  assert(r);                    /* Spurious warning */
 
665
  assert(r);
691
666
  
692
667
  /* Called whenever a service has been resolved successfully or
693
668
     timed out */
705
680
      char ip[AVAHI_ADDRESS_STR_MAX];
706
681
      avahi_address_snprint(ip, sizeof(ip), address);
707
682
      if(debug){
708
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
709
 
                " port %d\n", name, host_name, ip, interface, port);
 
683
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
684
                PRIu16 ") on port %d\n", name, host_name, ip,
 
685
                interface, port);
710
686
      }
711
687
      int ret = start_mandos_communication(ip, port, interface, mc);
712
688
      if (ret == 0){
713
 
        exit(EXIT_SUCCESS);
 
689
        avahi_simple_poll_quit(mc->simple_poll);
714
690
      }
715
691
    }
716
692
  }
728
704
                             flags,
729
705
                             void* userdata) {
730
706
  mandos_context *mc = userdata;
731
 
  assert(b);                    /* Spurious warning */
 
707
  assert(b);
732
708
  
733
709
  /* Called whenever a new services becomes available on the LAN or
734
710
     is removed from the LAN */
770
746
 
771
747
/* Combines file name and path and returns the malloced new
772
748
   string. some sane checks could/should be added */
773
 
static const char *combinepath(const char *first, const char *second){
774
 
  size_t f_len = strlen(first);
775
 
  size_t s_len = strlen(second);
776
 
  char *tmp = malloc(f_len + s_len + 2);
777
 
  if (tmp == NULL){
 
749
static char *combinepath(const char *first, const char *second){
 
750
  char *tmp;
 
751
  int ret = asprintf(&tmp, "%s/%s", first, second);
 
752
  if(ret < 0){
778
753
    return NULL;
779
754
  }
780
 
  if(f_len > 0){
781
 
    memcpy(tmp, first, f_len);  /* Spurious warning */
782
 
  }
783
 
  tmp[f_len] = '/';
784
 
  if(s_len > 0){
785
 
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
786
 
  }
787
 
  tmp[f_len + 1 + s_len] = '\0';
788
755
  return tmp;
789
756
}
790
757
 
801
768
    gid_t gid;
802
769
    char *connect_to = NULL;
803
770
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
804
 
    const char *pubkeyfile = "pubkey.txt";
805
 
    const char *seckeyfile = "seckey.txt";
 
771
    char *pubkeyfilename = NULL;
 
772
    char *seckeyfilename = NULL;
 
773
    const char *pubkeyname = "pubkey.txt";
 
774
    const char *seckeyname = "seckey.txt";
806
775
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
807
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
776
                          .dh_bits = 1024, .priority = "SECURE256"
 
777
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
808
778
    bool gnutls_initalized = false;
809
779
    
810
780
    {
812
782
        { .name = "debug", .key = 128,
813
783
          .doc = "Debug mode", .group = 3 },
814
784
        { .name = "connect", .key = 'c',
815
 
          .arg = "IP",
816
 
          .doc = "Connect directly to a sepcified mandos server",
 
785
          .arg = "ADDRESS:PORT",
 
786
          .doc = "Connect directly to a specific Mandos server",
817
787
          .group = 1 },
818
788
        { .name = "interface", .key = 'i',
819
 
          .arg = "INTERFACE",
820
 
          .doc = "Interface that Avahi will conntect through",
 
789
          .arg = "NAME",
 
790
          .doc = "Interface that will be used to search for Mandos"
 
791
          " servers",
821
792
          .group = 1 },
822
793
        { .name = "keydir", .key = 'd',
823
 
          .arg = "KEYDIR",
824
 
          .doc = "Directory where the openpgp keyring is",
 
794
          .arg = "DIRECTORY",
 
795
          .doc = "Directory to read the OpenPGP key files from",
825
796
          .group = 1 },
826
797
        { .name = "seckey", .key = 's',
827
 
          .arg = "SECKEY",
828
 
          .doc = "Secret openpgp key for gnutls authentication",
 
798
          .arg = "FILE",
 
799
          .doc = "OpenPGP secret key file base name",
829
800
          .group = 1 },
830
801
        { .name = "pubkey", .key = 'p',
831
 
          .arg = "PUBKEY",
832
 
          .doc = "Public openpgp key for gnutls authentication",
 
802
          .arg = "FILE",
 
803
          .doc = "OpenPGP public key file base name",
833
804
          .group = 2 },
834
805
        { .name = "dh-bits", .key = 129,
835
806
          .arg = "BITS",
836
 
          .doc = "dh-bits to use in gnutls communication",
 
807
          .doc = "Bit length of the prime number used in the"
 
808
          " Diffie-Hellman key exchange",
837
809
          .group = 2 },
838
810
        { .name = "priority", .key = 130,
839
 
          .arg = "PRIORITY",
840
 
          .doc = "GNUTLS priority", .group = 1 },
 
811
          .arg = "STRING",
 
812
          .doc = "GnuTLS priority string for the TLS handshake",
 
813
          .group = 1 },
841
814
        { .name = NULL }
842
815
      };
843
 
 
844
816
      
845
817
      error_t parse_opt (int key, char *arg,
846
818
                         struct argp_state *state) {
847
819
        /* Get the INPUT argument from `argp_parse', which we know is
848
820
           a pointer to our plugin list pointer. */
849
821
        switch (key) {
850
 
        case 128:
 
822
        case 128:               /* --debug */
851
823
          debug = true;
852
824
          break;
853
 
        case 'c':
 
825
        case 'c':               /* --connect */
854
826
          connect_to = arg;
855
827
          break;
856
 
        case 'i':
 
828
        case 'i':               /* --interface */
857
829
          interface = arg;
858
830
          break;
859
 
        case 'd':
 
831
        case 'd':               /* --keydir */
860
832
          keydir = arg;
861
833
          break;
862
 
        case 's':
863
 
          seckeyfile = arg;
864
 
          break;
865
 
        case 'p':
866
 
          pubkeyfile = arg;
867
 
          break;
868
 
        case 129:
 
834
        case 's':               /* --seckey */
 
835
          seckeyname = arg;
 
836
          break;
 
837
        case 'p':               /* --pubkey */
 
838
          pubkeyname = arg;
 
839
          break;
 
840
        case 129:               /* --dh-bits */
869
841
          errno = 0;
870
842
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
871
843
          if (errno){
873
845
            exit(EXIT_FAILURE);
874
846
          }
875
847
          break;
876
 
        case 130:
 
848
        case 130:               /* --priority */
877
849
          mc.priority = arg;
878
850
          break;
879
851
        case ARGP_KEY_ARG:
880
852
          argp_usage (state);
 
853
        case ARGP_KEY_END:
881
854
          break;
882
 
          case ARGP_KEY_END:
883
 
            break;
884
855
        default:
885
856
          return ARGP_ERR_UNKNOWN;
886
857
        }
887
858
        return 0;
888
859
      }
889
 
 
 
860
      
890
861
      struct argp argp = { .options = options, .parser = parse_opt,
891
862
                           .args_doc = "",
892
863
                           .doc = "Mandos client -- Get and decrypt"
893
 
                           " passwords from mandos server" };
894
 
      argp_parse (&argp, argc, argv, 0, 0, NULL);
895
 
    }
896
 
      
897
 
    pubkeyfile = combinepath(keydir, pubkeyfile);
898
 
    if (pubkeyfile == NULL){
899
 
      perror("combinepath");
900
 
      exitcode = EXIT_FAILURE;
901
 
      goto end;
902
 
    }
903
 
    
904
 
    seckeyfile = combinepath(keydir, seckeyfile);
905
 
    if (seckeyfile == NULL){
906
 
      perror("combinepath");
907
 
      goto end;
908
 
    }
909
 
 
910
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
864
                           " passwords from a Mandos server" };
 
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
866
      if (ret == ARGP_ERR_UNKNOWN){
 
867
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
868
        exitcode = EXIT_FAILURE;
 
869
        goto end;
 
870
      }
 
871
    }
 
872
    
 
873
    pubkeyfilename = combinepath(keydir, pubkeyname);
 
874
    if (pubkeyfilename == NULL){
 
875
      perror("combinepath");
 
876
      exitcode = EXIT_FAILURE;
 
877
      goto end;
 
878
    }
 
879
    
 
880
    seckeyfilename = combinepath(keydir, seckeyname);
 
881
    if (seckeyfilename == NULL){
 
882
      perror("combinepath");
 
883
      exitcode = EXIT_FAILURE;
 
884
      goto end;
 
885
    }
 
886
    
 
887
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
911
888
    if (ret == -1){
912
 
      fprintf(stderr, "init_gnutls_global\n");
 
889
      fprintf(stderr, "init_gnutls_global failed\n");
 
890
      exitcode = EXIT_FAILURE;
913
891
      goto end;
914
892
    } else {
915
893
      gnutls_initalized = true;
916
894
    }
917
 
 
 
895
    
 
896
    /* If the interface is down, bring it up */
 
897
    {
 
898
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
899
      if(sd < 0) {
 
900
        perror("socket");
 
901
        exitcode = EXIT_FAILURE;
 
902
        goto end;
 
903
      }
 
904
      strcpy(network.ifr_name, interface);
 
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
906
      if(ret == -1){
 
907
        perror("ioctl SIOCGIFFLAGS");
 
908
        exitcode = EXIT_FAILURE;
 
909
        goto end;
 
910
      }
 
911
      if((network.ifr_flags & IFF_UP) == 0){
 
912
        network.ifr_flags |= IFF_UP;
 
913
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
914
        if(ret == -1){
 
915
          perror("ioctl SIOCSIFFLAGS");
 
916
          exitcode = EXIT_FAILURE;
 
917
          goto end;
 
918
        }
 
919
      }
 
920
      close(sd);
 
921
    }
 
922
    
918
923
    uid = getuid();
919
924
    gid = getgid();
920
 
 
 
925
    
921
926
    ret = setuid(uid);
922
927
    if (ret == -1){
923
928
      perror("setuid");
961
966
      goto end;
962
967
    }
963
968
    
964
 
    /* If the interface is down, bring it up */
965
 
    {
966
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
967
 
      if(sd < 0) {
968
 
        perror("socket");
969
 
        exitcode = EXIT_FAILURE;
970
 
        goto end;
971
 
      }
972
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
973
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
974
 
      if(ret == -1){
975
 
        perror("ioctl SIOCGIFFLAGS");
976
 
        exitcode = EXIT_FAILURE;
977
 
        goto end;
978
 
      }
979
 
      if((network.ifr_flags & IFF_UP) == 0){
980
 
        network.ifr_flags |= IFF_UP;
981
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
982
 
        if(ret == -1){
983
 
          perror("ioctl SIOCSIFFLAGS");
984
 
          exitcode = EXIT_FAILURE;
985
 
          goto end;
986
 
        }
987
 
      }
988
 
      close(sd);
989
 
    }
990
 
    
991
969
    if (not debug){
992
970
      avahi_set_log_function(empty_log);
993
971
    }
1003
981
        exitcode = EXIT_FAILURE;
1004
982
        goto end;
1005
983
    }
1006
 
 
 
984
    
1007
985
    {
1008
986
      AvahiServerConfig config;
1009
987
      /* Do not publish any local Zeroconf records */
1012
990
      config.publish_addresses = 0;
1013
991
      config.publish_workstation = 0;
1014
992
      config.publish_domain = 0;
1015
 
 
 
993
      
1016
994
      /* Allocate a new server */
1017
995
      mc.server = avahi_server_new(avahi_simple_poll_get
1018
996
                                   (mc.simple_poll), &config, NULL,
1019
997
                                   NULL, &error);
1020
 
    
 
998
      
1021
999
      /* Free the Avahi configuration data */
1022
1000
      avahi_server_config_free(&config);
1023
1001
    }
1043
1021
    }
1044
1022
    
1045
1023
    /* Run the main loop */
1046
 
 
 
1024
    
1047
1025
    if (debug){
1048
1026
      fprintf(stderr, "Starting Avahi loop search\n");
1049
1027
    }
1051
1029
    avahi_simple_poll_loop(mc.simple_poll);
1052
1030
    
1053
1031
 end:
1054
 
 
 
1032
    
1055
1033
    if (debug){
1056
1034
      fprintf(stderr, "%s exiting\n", argv[0]);
1057
1035
    }
1062
1040
    
1063
1041
    if (mc.server != NULL)
1064
1042
        avahi_server_free(mc.server);
1065
 
 
 
1043
    
1066
1044
    if (mc.simple_poll != NULL)
1067
1045
        avahi_simple_poll_free(mc.simple_poll);
1068
 
    free(pubkeyfile);
1069
 
    free(seckeyfile);
1070
 
 
 
1046
    free(pubkeyfilename);
 
1047
    free(seckeyfilename);
 
1048
    
1071
1049
    if (gnutls_initalized){
1072
 
      gnutls_certificate_free_credentials (mc.cred);
 
1050
      gnutls_certificate_free_credentials(mc.cred);
1073
1051
      gnutls_global_deinit ();
1074
1052
    }
1075
1053