/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

merge

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