/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

removed keyring pre-requirement for starting password-request.
        Keys will now be imported in run-time to a run-time created keyring

Changed seckey and pubkey to be paths to private and public keys of the pgp encrypted password and gnutls authentication credentials.

Show diffs side-by-side

added added

removed removed

Lines of Context:
345
345
    }
346
346
    plaintext_length += ret;
347
347
  }
348
 
  
 
348
 
349
349
  if(debug){
350
350
    fprintf(stderr, "Decrypted password is: ");
351
351
    for(ssize_t i = 0; i < plaintext_length; i++){
412
412
  }
413
413
  
414
414
  if(debug){
415
 
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
416
 
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
415
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
 
416
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
417
417
            seckeyfilename);
418
418
  }
419
419
  
444
444
  }
445
445
  
446
446
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
447
 
  
 
447
 
448
448
  return 0;
449
 
  
 
449
 
450
450
 globalfail:
451
 
  
 
451
 
452
452
  gnutls_certificate_free_credentials(mc->cred);
453
453
  gnutls_global_deinit();
454
454
  return -1;
 
455
 
455
456
}
456
457
 
457
458
static int init_gnutls_session(mandos_context *mc,
529
530
    perror("socket");
530
531
    return -1;
531
532
  }
532
 
  
 
533
 
533
534
  if(debug){
534
535
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
535
536
      perror("if_indextoname");
574
575
    perror("connect");
575
576
    return -1;
576
577
  }
577
 
  
 
578
 
578
579
  const char *out = mandos_protocol_version;
579
580
  written = 0;
580
581
  while (true){
598
599
      }
599
600
    }
600
601
  }
601
 
  
 
602
 
602
603
  if(debug){
603
604
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
604
605
  }
605
606
  
606
607
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
607
 
  
 
608
 
608
609
  do{
609
610
    ret = gnutls_handshake (session);
610
611
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
624
625
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
625
626
            ip);
626
627
  }
627
 
  
 
628
 
628
629
  while(true){
629
630
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
630
631
                                   buffer_capacity);
827
828
    const char *pubkey = PATHDIR "/" PUBKEY;
828
829
    
829
830
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
830
 
                          .dh_bits = 1024, .priority = "SECURE256"
831
 
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
831
                          .dh_bits = 1024, .priority = "SECURE256"};
832
832
    bool gnutls_initalized = false;
833
833
    bool pgpme_initalized = false;
834
834
    
837
837
        { .name = "debug", .key = 128,
838
838
          .doc = "Debug mode", .group = 3 },
839
839
        { .name = "connect", .key = 'c',
840
 
          .arg = "ADDRESS:PORT",
841
 
          .doc = "Connect directly to a specific Mandos server",
 
840
          .arg = "IP",
 
841
          .doc = "Connect directly to a sepcified mandos server",
842
842
          .group = 1 },
843
843
        { .name = "interface", .key = 'i',
844
 
          .arg = "NAME",
845
 
          .doc = "Interface that will be used to search for Mandos"
846
 
          " servers",
 
844
          .arg = "INTERFACE",
 
845
          .doc = "Interface that Avahi will conntect through",
847
846
          .group = 1 },
848
847
        { .name = "seckey", .key = 's',
849
 
          .arg = "FILE",
850
 
          .doc = "OpenPGP secret key file base name",
 
848
          .arg = "SECKEY",
 
849
          .doc = "Secret openpgp key for gnutls authentication",
851
850
          .group = 1 },
852
851
        { .name = "pubkey", .key = 'p',
853
 
          .arg = "FILE",
854
 
          .doc = "OpenPGP public key file base name",
 
852
          .arg = "PUBKEY",
 
853
          .doc = "Public openpgp key for gnutls authentication",
855
854
          .group = 2 },
856
855
        { .name = "dh-bits", .key = 129,
857
856
          .arg = "BITS",
858
 
          .doc = "Bit length of the prime number used in the"
859
 
          " Diffie-Hellman key exchange",
 
857
          .doc = "dh-bits to use in gnutls communication",
860
858
          .group = 2 },
861
859
        { .name = "priority", .key = 130,
862
 
          .arg = "STRING",
863
 
          .doc = "GnuTLS priority string for the TLS handshake",
864
 
          .group = 1 },
 
860
          .arg = "PRIORITY",
 
861
          .doc = "GNUTLS priority", .group = 1 },
865
862
        { .name = NULL }
866
863
      };
 
864
 
867
865
      
868
866
      error_t parse_opt (int key, char *arg,
869
867
                         struct argp_state *state) {
870
868
        /* Get the INPUT argument from `argp_parse', which we know is
871
869
           a pointer to our plugin list pointer. */
872
870
        switch (key) {
873
 
        case 128:               /* --debug */
 
871
        case 128:
874
872
          debug = true;
875
873
          break;
876
 
        case 'c':               /* --connect */
 
874
        case 'c':
877
875
          connect_to = arg;
878
876
          break;
879
 
        case 'i':               /* --interface */
 
877
        case 'i':
880
878
          interface = arg;
881
879
          break;
882
 
        case 's':               /* --seckey */
 
880
        case 's':
883
881
          seckey = arg;
884
882
          break;
885
 
        case 'p':               /* --pubkey */
 
883
        case 'p':
886
884
          pubkey = arg;
887
885
          break;
888
 
        case 129:               /* --dh-bits */
 
886
        case 129:
889
887
          errno = 0;
890
888
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
891
889
          if (errno){
893
891
            exit(EXIT_FAILURE);
894
892
          }
895
893
          break;
896
 
        case 130:               /* --priority */
 
894
        case 130:
897
895
          mc.priority = arg;
898
896
          break;
899
897
        case ARGP_KEY_ARG:
905
903
        }
906
904
        return 0;
907
905
      }
908
 
      
 
906
 
909
907
      struct argp argp = { .options = options, .parser = parse_opt,
910
908
                           .args_doc = "",
911
909
                           .doc = "Mandos client -- Get and decrypt"
912
 
                           " passwords from a Mandos server" };
 
910
                           " passwords from mandos server" };
913
911
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
914
912
      if (ret == ARGP_ERR_UNKNOWN){
915
913
        fprintf(stderr, "Unknown error while parsing arguments\n");
917
915
        goto end;
918
916
      }
919
917
    }
920
 
    
 
918
 
921
919
    ret = init_gnutls_global(&mc, pubkey, seckey);
922
920
    if (ret == -1){
923
921
      fprintf(stderr, "init_gnutls_global failed\n");
1032
1030
        exitcode = EXIT_FAILURE;
1033
1031
        goto end;
1034
1032
    }
1035
 
    
 
1033
 
1036
1034
    {
1037
1035
      AvahiServerConfig config;
1038
1036
      /* Do not publish any local Zeroconf records */
1041
1039
      config.publish_addresses = 0;
1042
1040
      config.publish_workstation = 0;
1043
1041
      config.publish_domain = 0;
1044
 
      
 
1042
 
1045
1043
      /* Allocate a new server */
1046
1044
      mc.server = avahi_server_new(avahi_simple_poll_get
1047
1045
                                   (mc.simple_poll), &config, NULL,
1048
1046
                                   NULL, &error);
1049
 
      
 
1047
    
1050
1048
      /* Free the Avahi configuration data */
1051
1049
      avahi_server_config_free(&config);
1052
1050
    }
1072
1070
    }
1073
1071
    
1074
1072
    /* Run the main loop */
1075
 
    
 
1073
 
1076
1074
    if (debug){
1077
1075
      fprintf(stderr, "Starting Avahi loop search\n");
1078
1076
    }
1080
1078
    avahi_simple_poll_loop(mc.simple_poll);
1081
1079
    
1082
1080
 end:
1083
 
    
 
1081
 
1084
1082
    if (debug){
1085
1083
      fprintf(stderr, "%s exiting\n", argv[0]);
1086
1084
    }
1091
1089
    
1092
1090
    if (mc.server != NULL)
1093
1091
        avahi_server_free(mc.server);
1094
 
    
 
1092
 
1095
1093
    if (mc.simple_poll != NULL)
1096
1094
        avahi_simple_poll_free(mc.simple_poll);
1097
 
    
 
1095
 
1098
1096
    if (gnutls_initalized){
1099
1097
      gnutls_certificate_free_credentials(mc.cred);
1100
1098
      gnutls_global_deinit ();