/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 05:12:45 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080903051245-yy85uyiqfhlctubr
* plugins.d/password-request.xml (DESCRIPTION): Improved wording.

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
215
215
            gpgme_strsource(rc), gpgme_strerror(rc));
216
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
    }
217
245
    goto decrypt_end;
218
246
  }
219
247
  
221
249
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
222
250
  }
223
251
  
224
 
  if (debug){
225
 
    gpgme_decrypt_result_t result;
226
 
    result = gpgme_op_decrypt_result(ctx);
227
 
    if (result == NULL){
228
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
229
 
    } else {
230
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
231
 
              result->unsupported_algorithm);
232
 
      fprintf(stderr, "Wrong key usage: %u\n",
233
 
              result->wrong_key_usage);
234
 
      if(result->file_name != NULL){
235
 
        fprintf(stderr, "File name: %s\n", result->file_name);
236
 
      }
237
 
      gpgme_recipient_t recipient;
238
 
      recipient = result->recipients;
239
 
      if(recipient){
240
 
        while(recipient != NULL){
241
 
          fprintf(stderr, "Public key algorithm: %s\n",
242
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
243
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
244
 
          fprintf(stderr, "Secret key available: %s\n",
245
 
                  recipient->status == GPG_ERR_NO_SECKEY
246
 
                  ? "No" : "Yes");
247
 
          recipient = recipient->next;
248
 
        }
249
 
      }
250
 
    }
251
 
  }
252
 
  
253
252
  /* Seek back to the beginning of the GPGME plaintext data buffer */
254
253
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
255
254
    perror("pgpme_data_seek");
282
281
    }
283
282
    plaintext_length += ret;
284
283
  }
285
 
 
 
284
  
286
285
  if(debug){
287
286
    fprintf(stderr, "Decrypted password is: ");
288
287
    for(ssize_t i = 0; i < plaintext_length; i++){
302
301
}
303
302
 
304
303
static const char * safer_gnutls_strerror (int value) {
305
 
  const char *ret = gnutls_strerror (value);
 
304
  const char *ret = gnutls_strerror (value); /* Spurious warning */
306
305
  if (ret == NULL)
307
306
    ret = "(unknown)";
308
307
  return ret;
341
340
  /* OpenPGP credentials */
342
341
  gnutls_certificate_allocate_credentials(&mc->cred);
343
342
  if (ret != GNUTLS_E_SUCCESS){
344
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
343
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
344
                                                     warning */
345
345
             safer_gnutls_strerror(ret));
346
346
    gnutls_global_deinit ();
347
347
    return -1;
380
380
  }
381
381
  
382
382
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
383
 
 
 
383
  
384
384
  return 0;
385
 
 
 
385
  
386
386
 globalfail:
387
 
 
 
387
  
388
388
  gnutls_certificate_free_credentials(mc->cred);
389
389
  gnutls_global_deinit();
390
390
  return -1;
391
 
 
392
391
}
393
392
 
394
393
static int init_gnutls_session(mandos_context *mc,
466
465
    perror("socket");
467
466
    return -1;
468
467
  }
469
 
 
 
468
  
470
469
  if(debug){
471
470
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
472
471
      perror("if_indextoname");
475
474
    fprintf(stderr, "Binding to interface %s\n", interface);
476
475
  }
477
476
  
478
 
  memset(&to, 0, sizeof(to));   /* Spurious warning */
 
477
  memset(&to, 0, sizeof(to));
479
478
  to.in6.sin6_family = AF_INET6;
480
479
  /* It would be nice to have a way to detect if we were passed an
481
480
     IPv4 address here.   Now we assume an IPv6 address. */
511
510
    perror("connect");
512
511
    return -1;
513
512
  }
514
 
 
 
513
  
515
514
  const char *out = mandos_protocol_version;
516
515
  written = 0;
517
516
  while (true){
535
534
      }
536
535
    }
537
536
  }
538
 
 
 
537
  
539
538
  if(debug){
540
539
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
541
540
  }
542
541
  
543
542
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
544
 
 
 
543
  
545
544
  do{
546
545
    ret = gnutls_handshake (session);
547
546
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
561
560
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
562
561
            ip);
563
562
  }
564
 
 
 
563
  
565
564
  while(true){
566
565
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
567
566
                                   buffer_capacity);
635
634
    } else {
636
635
      retval = -1;
637
636
    }
 
637
  } else {
 
638
    retval = -1;
638
639
  }
639
640
  
640
641
  /* Shutdown procedure */
661
662
                             flags,
662
663
                             void* userdata) {
663
664
  mandos_context *mc = userdata;
664
 
  assert(r);                    /* Spurious warning */
 
665
  assert(r);
665
666
  
666
667
  /* Called whenever a service has been resolved successfully or
667
668
     timed out */
703
704
                             flags,
704
705
                             void* userdata) {
705
706
  mandos_context *mc = userdata;
706
 
  assert(b);                    /* Spurious warning */
 
707
  assert(b);
707
708
  
708
709
  /* Called whenever a new services becomes available on the LAN or
709
710
     is removed from the LAN */
772
773
    const char *pubkeyname = "pubkey.txt";
773
774
    const char *seckeyname = "seckey.txt";
774
775
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
775
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
776
                          .dh_bits = 1024, .priority = "SECURE256"
 
777
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
776
778
    bool gnutls_initalized = false;
777
779
    
778
780
    {
780
782
        { .name = "debug", .key = 128,
781
783
          .doc = "Debug mode", .group = 3 },
782
784
        { .name = "connect", .key = 'c',
783
 
          .arg = "IP",
784
 
          .doc = "Connect directly to a sepcified mandos server",
 
785
          .arg = "ADDRESS:PORT",
 
786
          .doc = "Connect directly to a specific Mandos server",
785
787
          .group = 1 },
786
788
        { .name = "interface", .key = 'i',
787
 
          .arg = "INTERFACE",
788
 
          .doc = "Interface that Avahi will conntect through",
 
789
          .arg = "NAME",
 
790
          .doc = "Interface that will be used to search for Mandos"
 
791
          " servers",
789
792
          .group = 1 },
790
793
        { .name = "keydir", .key = 'd',
791
 
          .arg = "KEYDIR",
792
 
          .doc = "Directory where the openpgp keyring is",
 
794
          .arg = "DIRECTORY",
 
795
          .doc = "Directory to read the OpenPGP key files from",
793
796
          .group = 1 },
794
797
        { .name = "seckey", .key = 's',
795
 
          .arg = "SECKEY",
796
 
          .doc = "Secret openpgp key for gnutls authentication",
 
798
          .arg = "FILE",
 
799
          .doc = "OpenPGP secret key file base name",
797
800
          .group = 1 },
798
801
        { .name = "pubkey", .key = 'p',
799
 
          .arg = "PUBKEY",
800
 
          .doc = "Public openpgp key for gnutls authentication",
 
802
          .arg = "FILE",
 
803
          .doc = "OpenPGP public key file base name",
801
804
          .group = 2 },
802
805
        { .name = "dh-bits", .key = 129,
803
806
          .arg = "BITS",
804
 
          .doc = "dh-bits to use in gnutls communication",
 
807
          .doc = "Bit length of the prime number used in the"
 
808
          " Diffie-Hellman key exchange",
805
809
          .group = 2 },
806
810
        { .name = "priority", .key = 130,
807
 
          .arg = "PRIORITY",
808
 
          .doc = "GNUTLS priority", .group = 1 },
 
811
          .arg = "STRING",
 
812
          .doc = "GnuTLS priority string for the TLS handshake",
 
813
          .group = 1 },
809
814
        { .name = NULL }
810
815
      };
811
 
 
812
816
      
813
817
      error_t parse_opt (int key, char *arg,
814
818
                         struct argp_state *state) {
815
819
        /* Get the INPUT argument from `argp_parse', which we know is
816
820
           a pointer to our plugin list pointer. */
817
821
        switch (key) {
818
 
        case 128:
 
822
        case 128:               /* --debug */
819
823
          debug = true;
820
824
          break;
821
 
        case 'c':
 
825
        case 'c':               /* --connect */
822
826
          connect_to = arg;
823
827
          break;
824
 
        case 'i':
 
828
        case 'i':               /* --interface */
825
829
          interface = arg;
826
830
          break;
827
 
        case 'd':
 
831
        case 'd':               /* --keydir */
828
832
          keydir = arg;
829
833
          break;
830
 
        case 's':
 
834
        case 's':               /* --seckey */
831
835
          seckeyname = arg;
832
836
          break;
833
 
        case 'p':
 
837
        case 'p':               /* --pubkey */
834
838
          pubkeyname = arg;
835
839
          break;
836
 
        case 129:
 
840
        case 129:               /* --dh-bits */
837
841
          errno = 0;
838
842
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
839
843
          if (errno){
841
845
            exit(EXIT_FAILURE);
842
846
          }
843
847
          break;
844
 
        case 130:
 
848
        case 130:               /* --priority */
845
849
          mc.priority = arg;
846
850
          break;
847
851
        case ARGP_KEY_ARG:
853
857
        }
854
858
        return 0;
855
859
      }
856
 
 
 
860
      
857
861
      struct argp argp = { .options = options, .parser = parse_opt,
858
862
                           .args_doc = "",
859
863
                           .doc = "Mandos client -- Get and decrypt"
860
 
                           " passwords from mandos server" };
 
864
                           " passwords from a Mandos server" };
861
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
862
866
      if (ret == ARGP_ERR_UNKNOWN){
863
867
        fprintf(stderr, "Unknown error while parsing arguments\n");
865
869
        goto end;
866
870
      }
867
871
    }
868
 
      
 
872
    
869
873
    pubkeyfilename = combinepath(keydir, pubkeyname);
870
874
    if (pubkeyfilename == NULL){
871
875
      perror("combinepath");
879
883
      exitcode = EXIT_FAILURE;
880
884
      goto end;
881
885
    }
882
 
 
 
886
    
883
887
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
884
888
    if (ret == -1){
885
889
      fprintf(stderr, "init_gnutls_global failed\n");
897
901
        exitcode = EXIT_FAILURE;
898
902
        goto end;
899
903
      }
900
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
904
      strcpy(network.ifr_name, interface);
901
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
902
906
      if(ret == -1){
903
907
        perror("ioctl SIOCGIFFLAGS");
977
981
        exitcode = EXIT_FAILURE;
978
982
        goto end;
979
983
    }
980
 
 
 
984
    
981
985
    {
982
986
      AvahiServerConfig config;
983
987
      /* Do not publish any local Zeroconf records */
986
990
      config.publish_addresses = 0;
987
991
      config.publish_workstation = 0;
988
992
      config.publish_domain = 0;
989
 
 
 
993
      
990
994
      /* Allocate a new server */
991
995
      mc.server = avahi_server_new(avahi_simple_poll_get
992
996
                                   (mc.simple_poll), &config, NULL,
993
997
                                   NULL, &error);
994
 
    
 
998
      
995
999
      /* Free the Avahi configuration data */
996
1000
      avahi_server_config_free(&config);
997
1001
    }
1017
1021
    }
1018
1022
    
1019
1023
    /* Run the main loop */
1020
 
 
 
1024
    
1021
1025
    if (debug){
1022
1026
      fprintf(stderr, "Starting Avahi loop search\n");
1023
1027
    }
1025
1029
    avahi_simple_poll_loop(mc.simple_poll);
1026
1030
    
1027
1031
 end:
1028
 
 
 
1032
    
1029
1033
    if (debug){
1030
1034
      fprintf(stderr, "%s exiting\n", argv[0]);
1031
1035
    }
1036
1040
    
1037
1041
    if (mc.server != NULL)
1038
1042
        avahi_server_free(mc.server);
1039
 
 
 
1043
    
1040
1044
    if (mc.simple_poll != NULL)
1041
1045
        avahi_simple_poll_free(mc.simple_poll);
1042
1046
    free(pubkeyfilename);
1043
1047
    free(seckeyfilename);
1044
 
 
 
1048
    
1045
1049
    if (gnutls_initalized){
1046
1050
      gnutls_certificate_free_credentials(mc.cred);
1047
1051
      gnutls_global_deinit ();