/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-02 17:42:53 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080902174253-p3wxrq7z6ccnv7fs
* plugins.d/password-request.c (main): Change default GnuTLS priority
                                       string to
                             "SECURE256":!CTYPE-X.509:+CTYPE-OPENPGP".

* plugins.d/password-request.xml (DESCRIPTION): Improve wording.
  (PURPOSE, OVERVIEW): New sections.
  (OPTIONS): Improved wording.
  (EXIT STATUS): Add text.
  (ENVIRONMENT): Commented out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
    }
282
282
    plaintext_length += ret;
283
283
  }
284
 
  
 
284
 
285
285
  if(debug){
286
286
    fprintf(stderr, "Decrypted password is: ");
287
287
    for(ssize_t i = 0; i < plaintext_length; i++){
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
 
391
392
}
392
393
 
393
394
static int init_gnutls_session(mandos_context *mc,
465
466
    perror("socket");
466
467
    return -1;
467
468
  }
468
 
  
 
469
 
469
470
  if(debug){
470
471
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
471
472
      perror("if_indextoname");
510
511
    perror("connect");
511
512
    return -1;
512
513
  }
513
 
  
 
514
 
514
515
  const char *out = mandos_protocol_version;
515
516
  written = 0;
516
517
  while (true){
534
535
      }
535
536
    }
536
537
  }
537
 
  
 
538
 
538
539
  if(debug){
539
540
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
540
541
  }
541
542
  
542
543
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
543
 
  
 
544
 
544
545
  do{
545
546
    ret = gnutls_handshake (session);
546
547
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
560
561
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
561
562
            ip);
562
563
  }
563
 
  
 
564
 
564
565
  while(true){
565
566
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
566
567
                                   buffer_capacity);
782
783
        { .name = "debug", .key = 128,
783
784
          .doc = "Debug mode", .group = 3 },
784
785
        { .name = "connect", .key = 'c',
785
 
          .arg = "ADDRESS:PORT",
786
 
          .doc = "Connect directly to a specific Mandos server",
 
786
          .arg = "IP",
 
787
          .doc = "Connect directly to a sepcified mandos server",
787
788
          .group = 1 },
788
789
        { .name = "interface", .key = 'i',
789
 
          .arg = "NAME",
790
 
          .doc = "Interface that will be used to search for Mandos"
791
 
          " servers",
 
790
          .arg = "INTERFACE",
 
791
          .doc = "Interface that Avahi will conntect through",
792
792
          .group = 1 },
793
793
        { .name = "keydir", .key = 'd',
794
 
          .arg = "DIRECTORY",
795
 
          .doc = "Directory to read the OpenPGP key files from",
 
794
          .arg = "KEYDIR",
 
795
          .doc = "Directory where the openpgp keyring is",
796
796
          .group = 1 },
797
797
        { .name = "seckey", .key = 's',
798
 
          .arg = "FILE",
799
 
          .doc = "OpenPGP secret key file base name",
 
798
          .arg = "SECKEY",
 
799
          .doc = "Secret openpgp key for gnutls authentication",
800
800
          .group = 1 },
801
801
        { .name = "pubkey", .key = 'p',
802
 
          .arg = "FILE",
803
 
          .doc = "OpenPGP public key file base name",
 
802
          .arg = "PUBKEY",
 
803
          .doc = "Public openpgp key for gnutls authentication",
804
804
          .group = 2 },
805
805
        { .name = "dh-bits", .key = 129,
806
806
          .arg = "BITS",
807
 
          .doc = "Bit length of the prime number used in the"
808
 
          " Diffie-Hellman key exchange",
 
807
          .doc = "dh-bits to use in gnutls communication",
809
808
          .group = 2 },
810
809
        { .name = "priority", .key = 130,
811
 
          .arg = "STRING",
812
 
          .doc = "GnuTLS priority string for the TLS handshake",
813
 
          .group = 1 },
 
810
          .arg = "PRIORITY",
 
811
          .doc = "GNUTLS priority", .group = 1 },
814
812
        { .name = NULL }
815
813
      };
 
814
 
816
815
      
817
816
      error_t parse_opt (int key, char *arg,
818
817
                         struct argp_state *state) {
857
856
        }
858
857
        return 0;
859
858
      }
860
 
      
 
859
 
861
860
      struct argp argp = { .options = options, .parser = parse_opt,
862
861
                           .args_doc = "",
863
862
                           .doc = "Mandos client -- Get and decrypt"
864
 
                           " passwords from a Mandos server" };
 
863
                           " passwords from mandos server" };
865
864
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
866
865
      if (ret == ARGP_ERR_UNKNOWN){
867
866
        fprintf(stderr, "Unknown error while parsing arguments\n");
869
868
        goto end;
870
869
      }
871
870
    }
872
 
    
 
871
      
873
872
    pubkeyfilename = combinepath(keydir, pubkeyname);
874
873
    if (pubkeyfilename == NULL){
875
874
      perror("combinepath");
883
882
      exitcode = EXIT_FAILURE;
884
883
      goto end;
885
884
    }
886
 
    
 
885
 
887
886
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
888
887
    if (ret == -1){
889
888
      fprintf(stderr, "init_gnutls_global failed\n");
981
980
        exitcode = EXIT_FAILURE;
982
981
        goto end;
983
982
    }
984
 
    
 
983
 
985
984
    {
986
985
      AvahiServerConfig config;
987
986
      /* Do not publish any local Zeroconf records */
990
989
      config.publish_addresses = 0;
991
990
      config.publish_workstation = 0;
992
991
      config.publish_domain = 0;
993
 
      
 
992
 
994
993
      /* Allocate a new server */
995
994
      mc.server = avahi_server_new(avahi_simple_poll_get
996
995
                                   (mc.simple_poll), &config, NULL,
997
996
                                   NULL, &error);
998
 
      
 
997
    
999
998
      /* Free the Avahi configuration data */
1000
999
      avahi_server_config_free(&config);
1001
1000
    }
1021
1020
    }
1022
1021
    
1023
1022
    /* Run the main loop */
1024
 
    
 
1023
 
1025
1024
    if (debug){
1026
1025
      fprintf(stderr, "Starting Avahi loop search\n");
1027
1026
    }
1029
1028
    avahi_simple_poll_loop(mc.simple_poll);
1030
1029
    
1031
1030
 end:
1032
 
    
 
1031
 
1033
1032
    if (debug){
1034
1033
      fprintf(stderr, "%s exiting\n", argv[0]);
1035
1034
    }
1040
1039
    
1041
1040
    if (mc.server != NULL)
1042
1041
        avahi_server_free(mc.server);
1043
 
    
 
1042
 
1044
1043
    if (mc.simple_poll != NULL)
1045
1044
        avahi_simple_poll_free(mc.simple_poll);
1046
1045
    free(pubkeyfilename);
1047
1046
    free(seckeyfilename);
1048
 
    
 
1047
 
1049
1048
    if (gnutls_initalized){
1050
1049
      gnutls_certificate_free_credentials(mc.cred);
1051
1050
      gnutls_global_deinit ();