/mandos/trunk

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

« back to all changes in this revision

Viewing changes to plugins.d/password-request.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-03 17:34:29 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080903173429-db2mjtddf7mgbx8z
* plugins.d/password-request.xml (OVERVIEW): Refer to
                                             password-prompt(8) by
                                             name.
  (SECURITY): Improved wording.  Add paragraph about insecurity of
              ping.
  (SEE ALSO): Add references to cryptsetup(8) and crypttab(5).
              Changed to be a <variablelist> and added text.

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++){
349
348
  }
350
349
  
351
350
  if(debug){
352
 
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
353
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
351
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
352
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
354
353
            seckeyfilename);
355
354
  }
356
355
  
361
360
    fprintf(stderr,
362
361
            "Error[%d] while reading the OpenPGP key pair ('%s',"
363
362
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
364
 
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
363
    fprintf(stderr, "The GnuTLS error is: %s\n",
365
364
            safer_gnutls_strerror(ret));
366
365
    goto globalfail;
367
366
  }
381
380
  }
382
381
  
383
382
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
384
 
 
 
383
  
385
384
  return 0;
386
 
 
 
385
  
387
386
 globalfail:
388
 
 
 
387
  
389
388
  gnutls_certificate_free_credentials(mc->cred);
390
389
  gnutls_global_deinit();
391
390
  return -1;
392
 
 
393
391
}
394
392
 
395
393
static int init_gnutls_session(mandos_context *mc,
467
465
    perror("socket");
468
466
    return -1;
469
467
  }
470
 
 
 
468
  
471
469
  if(debug){
472
470
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
473
471
      perror("if_indextoname");
512
510
    perror("connect");
513
511
    return -1;
514
512
  }
515
 
 
 
513
  
516
514
  const char *out = mandos_protocol_version;
517
515
  written = 0;
518
516
  while (true){
536
534
      }
537
535
    }
538
536
  }
539
 
 
 
537
  
540
538
  if(debug){
541
539
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
542
540
  }
543
541
  
544
542
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
545
 
 
 
543
  
546
544
  do{
547
545
    ret = gnutls_handshake (session);
548
546
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
562
560
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
563
561
            ip);
564
562
  }
565
 
 
 
563
  
566
564
  while(true){
567
565
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
568
566
                                   buffer_capacity);
636
634
    } else {
637
635
      retval = -1;
638
636
    }
 
637
  } else {
 
638
    retval = -1;
639
639
  }
640
640
  
641
641
  /* Shutdown procedure */
773
773
    const char *pubkeyname = "pubkey.txt";
774
774
    const char *seckeyname = "seckey.txt";
775
775
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
776
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
776
                          .dh_bits = 1024, .priority = "SECURE256"
 
777
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
777
778
    bool gnutls_initalized = false;
778
779
    
779
780
    {
781
782
        { .name = "debug", .key = 128,
782
783
          .doc = "Debug mode", .group = 3 },
783
784
        { .name = "connect", .key = 'c',
784
 
          .arg = "IP",
785
 
          .doc = "Connect directly to a sepcified mandos server",
 
785
          .arg = "ADDRESS:PORT",
 
786
          .doc = "Connect directly to a specific Mandos server",
786
787
          .group = 1 },
787
788
        { .name = "interface", .key = 'i',
788
 
          .arg = "INTERFACE",
789
 
          .doc = "Interface that Avahi will conntect through",
 
789
          .arg = "NAME",
 
790
          .doc = "Interface that will be used to search for Mandos"
 
791
          " servers",
790
792
          .group = 1 },
791
793
        { .name = "keydir", .key = 'd',
792
 
          .arg = "KEYDIR",
793
 
          .doc = "Directory where the openpgp keyring is",
 
794
          .arg = "DIRECTORY",
 
795
          .doc = "Directory to read the OpenPGP key files from",
794
796
          .group = 1 },
795
797
        { .name = "seckey", .key = 's',
796
 
          .arg = "SECKEY",
797
 
          .doc = "Secret openpgp key for gnutls authentication",
 
798
          .arg = "FILE",
 
799
          .doc = "OpenPGP secret key file base name",
798
800
          .group = 1 },
799
801
        { .name = "pubkey", .key = 'p',
800
 
          .arg = "PUBKEY",
801
 
          .doc = "Public openpgp key for gnutls authentication",
 
802
          .arg = "FILE",
 
803
          .doc = "OpenPGP public key file base name",
802
804
          .group = 2 },
803
805
        { .name = "dh-bits", .key = 129,
804
806
          .arg = "BITS",
805
 
          .doc = "dh-bits to use in gnutls communication",
 
807
          .doc = "Bit length of the prime number used in the"
 
808
          " Diffie-Hellman key exchange",
806
809
          .group = 2 },
807
810
        { .name = "priority", .key = 130,
808
 
          .arg = "PRIORITY",
809
 
          .doc = "GNUTLS priority", .group = 1 },
 
811
          .arg = "STRING",
 
812
          .doc = "GnuTLS priority string for the TLS handshake",
 
813
          .group = 1 },
810
814
        { .name = NULL }
811
815
      };
812
 
 
813
816
      
814
817
      error_t parse_opt (int key, char *arg,
815
818
                         struct argp_state *state) {
816
819
        /* Get the INPUT argument from `argp_parse', which we know is
817
820
           a pointer to our plugin list pointer. */
818
821
        switch (key) {
819
 
        case 128:
 
822
        case 128:               /* --debug */
820
823
          debug = true;
821
824
          break;
822
 
        case 'c':
 
825
        case 'c':               /* --connect */
823
826
          connect_to = arg;
824
827
          break;
825
 
        case 'i':
 
828
        case 'i':               /* --interface */
826
829
          interface = arg;
827
830
          break;
828
 
        case 'd':
 
831
        case 'd':               /* --keydir */
829
832
          keydir = arg;
830
833
          break;
831
 
        case 's':
 
834
        case 's':               /* --seckey */
832
835
          seckeyname = arg;
833
836
          break;
834
 
        case 'p':
 
837
        case 'p':               /* --pubkey */
835
838
          pubkeyname = arg;
836
839
          break;
837
 
        case 129:
 
840
        case 129:               /* --dh-bits */
838
841
          errno = 0;
839
842
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
840
843
          if (errno){
842
845
            exit(EXIT_FAILURE);
843
846
          }
844
847
          break;
845
 
        case 130:
 
848
        case 130:               /* --priority */
846
849
          mc.priority = arg;
847
850
          break;
848
851
        case ARGP_KEY_ARG:
854
857
        }
855
858
        return 0;
856
859
      }
857
 
 
 
860
      
858
861
      struct argp argp = { .options = options, .parser = parse_opt,
859
862
                           .args_doc = "",
860
863
                           .doc = "Mandos client -- Get and decrypt"
861
 
                           " passwords from mandos server" };
 
864
                           " passwords from a Mandos server" };
862
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
863
866
      if (ret == ARGP_ERR_UNKNOWN){
864
867
        fprintf(stderr, "Unknown error while parsing arguments\n");
866
869
        goto end;
867
870
      }
868
871
    }
869
 
      
 
872
    
870
873
    pubkeyfilename = combinepath(keydir, pubkeyname);
871
874
    if (pubkeyfilename == NULL){
872
875
      perror("combinepath");
880
883
      exitcode = EXIT_FAILURE;
881
884
      goto end;
882
885
    }
883
 
 
 
886
    
884
887
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
885
888
    if (ret == -1){
886
889
      fprintf(stderr, "init_gnutls_global failed\n");
978
981
        exitcode = EXIT_FAILURE;
979
982
        goto end;
980
983
    }
981
 
 
 
984
    
982
985
    {
983
986
      AvahiServerConfig config;
984
987
      /* Do not publish any local Zeroconf records */
987
990
      config.publish_addresses = 0;
988
991
      config.publish_workstation = 0;
989
992
      config.publish_domain = 0;
990
 
 
 
993
      
991
994
      /* Allocate a new server */
992
995
      mc.server = avahi_server_new(avahi_simple_poll_get
993
996
                                   (mc.simple_poll), &config, NULL,
994
997
                                   NULL, &error);
995
 
    
 
998
      
996
999
      /* Free the Avahi configuration data */
997
1000
      avahi_server_config_free(&config);
998
1001
    }
1018
1021
    }
1019
1022
    
1020
1023
    /* Run the main loop */
1021
 
 
 
1024
    
1022
1025
    if (debug){
1023
1026
      fprintf(stderr, "Starting Avahi loop search\n");
1024
1027
    }
1026
1029
    avahi_simple_poll_loop(mc.simple_poll);
1027
1030
    
1028
1031
 end:
1029
 
 
 
1032
    
1030
1033
    if (debug){
1031
1034
      fprintf(stderr, "%s exiting\n", argv[0]);
1032
1035
    }
1037
1040
    
1038
1041
    if (mc.server != NULL)
1039
1042
        avahi_server_free(mc.server);
1040
 
 
 
1043
    
1041
1044
    if (mc.simple_poll != NULL)
1042
1045
        avahi_simple_poll_free(mc.simple_poll);
1043
1046
    free(pubkeyfilename);
1044
1047
    free(seckeyfilename);
1045
 
 
 
1048
    
1046
1049
    if (gnutls_initalized){
1047
1050
      gnutls_certificate_free_credentials(mc.cred);
1048
1051
      gnutls_global_deinit ();