/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 05:04:40 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080903050440-7cwzxestx6pvdy1i
* Makefile (mandos.8): Add dependency on "overview.xml" and
                       "legalnotice.xml".
  (mandos-keygen.8): New target.
  (mandos-conf.5): Added dependency on "legalnotice.xml".
  (plugin-runner.8mandos): New target
  (plugins.d/password-request.8mandos): - '' -

* mandos-options.xml (priority): Make wording server/client neutral.

* plugins.d/password-request.c (main): Changed .arg fields of the argp
                                       options struct to be more
                                       consistent with the manual.

* plugins.d/password-request.xml (OVERVIEW): Moved to after "OPTIONS".
  (OPTIONS): Improved wording and names of replaceables.

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() */
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
36
36
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
38
 
                                   ferror() */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
38
                                   stdout, ferror() */
39
39
#include <stdint.h>             /* uint16_t, uint32_t */
40
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
41
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
42
42
                                   srand() */
43
43
#include <stdbool.h>            /* bool, true */
44
44
#include <string.h>             /* memset(), strcmp(), strlen(),
45
 
                                   strerror(), memcpy(), strcpy() */
 
45
                                   strerror(), asprintf(), strcpy() */
46
46
#include <sys/ioctl.h>          /* ioctl */
47
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
48
                                   sockaddr_in6, PF_INET6,
81
81
#include <avahi-common/error.h>
82
82
 
83
83
/* GnuTLS */
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
84
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
85
                                   functions:
85
86
                                   gnutls_*
86
87
                                   init_gnutls_session(),
87
88
                                   GNUTLS_* */
89
90
                                   GNUTLS_OPENPGP_FMT_BASE64 */
90
91
 
91
92
/* GPGME */
92
 
#include <gpgme.h>              /* All GPGME types, constants and functions
 
93
#include <gpgme.h>              /* All GPGME types, constants and
 
94
                                   functions:
93
95
                                   gpgme_*
94
96
                                   GPGME_PROTOCOL_OpenPGP,
95
97
                                   GPG_ERR_NO_* */
212
214
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
213
215
            gpgme_strsource(rc), gpgme_strerror(rc));
214
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
    }
215
245
    goto decrypt_end;
216
246
  }
217
247
  
219
249
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
220
250
  }
221
251
  
222
 
  if (debug){
223
 
    gpgme_decrypt_result_t result;
224
 
    result = gpgme_op_decrypt_result(ctx);
225
 
    if (result == NULL){
226
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
227
 
    } else {
228
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
229
 
              result->unsupported_algorithm);
230
 
      fprintf(stderr, "Wrong key usage: %u\n",
231
 
              result->wrong_key_usage);
232
 
      if(result->file_name != NULL){
233
 
        fprintf(stderr, "File name: %s\n", result->file_name);
234
 
      }
235
 
      gpgme_recipient_t recipient;
236
 
      recipient = result->recipients;
237
 
      if(recipient){
238
 
        while(recipient != NULL){
239
 
          fprintf(stderr, "Public key algorithm: %s\n",
240
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
241
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
242
 
          fprintf(stderr, "Secret key available: %s\n",
243
 
                  recipient->status == GPG_ERR_NO_SECKEY
244
 
                  ? "No" : "Yes");
245
 
          recipient = recipient->next;
246
 
        }
247
 
      }
248
 
    }
249
 
  }
250
 
  
251
252
  /* Seek back to the beginning of the GPGME plaintext data buffer */
252
253
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
253
254
    perror("pgpme_data_seek");
280
281
    }
281
282
    plaintext_length += ret;
282
283
  }
283
 
 
 
284
  
284
285
  if(debug){
285
286
    fprintf(stderr, "Decrypted password is: ");
286
287
    for(ssize_t i = 0; i < plaintext_length; i++){
300
301
}
301
302
 
302
303
static const char * safer_gnutls_strerror (int value) {
303
 
  const char *ret = gnutls_strerror (value);
 
304
  const char *ret = gnutls_strerror (value); /* Spurious warning */
304
305
  if (ret == NULL)
305
306
    ret = "(unknown)";
306
307
  return ret;
313
314
}
314
315
 
315
316
static int init_gnutls_global(mandos_context *mc,
316
 
                              const char *pubkeyfile,
317
 
                              const char *seckeyfile){
 
317
                              const char *pubkeyfilename,
 
318
                              const char *seckeyfilename){
318
319
  int ret;
319
320
  
320
321
  if(debug){
339
340
  /* OpenPGP credentials */
340
341
  gnutls_certificate_allocate_credentials(&mc->cred);
341
342
  if (ret != GNUTLS_E_SUCCESS){
342
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
343
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
344
                                                     warning */
343
345
             safer_gnutls_strerror(ret));
344
346
    gnutls_global_deinit ();
345
347
    return -1;
347
349
  
348
350
  if(debug){
349
351
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
350
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
351
 
            seckeyfile);
 
352
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
353
            seckeyfilename);
352
354
  }
353
355
  
354
356
  ret = gnutls_certificate_set_openpgp_key_file
355
 
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
357
    (mc->cred, pubkeyfilename, seckeyfilename,
 
358
     GNUTLS_OPENPGP_FMT_BASE64);
356
359
  if (ret != GNUTLS_E_SUCCESS) {
357
360
    fprintf(stderr,
358
361
            "Error[%d] while reading the OpenPGP key pair ('%s',"
359
 
            " '%s')\n", ret, pubkeyfile, seckeyfile);
 
362
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
360
363
    fprintf(stdout, "The GnuTLS error is: %s\n",
361
364
            safer_gnutls_strerror(ret));
362
365
    goto globalfail;
377
380
  }
378
381
  
379
382
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
380
 
 
 
383
  
381
384
  return 0;
382
 
 
 
385
  
383
386
 globalfail:
384
 
 
 
387
  
385
388
  gnutls_certificate_free_credentials(mc->cred);
386
389
  gnutls_global_deinit();
387
390
  return -1;
388
 
 
389
391
}
390
392
 
391
393
static int init_gnutls_session(mandos_context *mc,
463
465
    perror("socket");
464
466
    return -1;
465
467
  }
466
 
 
 
468
  
467
469
  if(debug){
468
470
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
469
471
      perror("if_indextoname");
472
474
    fprintf(stderr, "Binding to interface %s\n", interface);
473
475
  }
474
476
  
475
 
  memset(&to,0,sizeof(to));     /* Spurious warning */
 
477
  memset(&to, 0, sizeof(to));
476
478
  to.in6.sin6_family = AF_INET6;
477
479
  /* It would be nice to have a way to detect if we were passed an
478
480
     IPv4 address here.   Now we assume an IPv6 address. */
508
510
    perror("connect");
509
511
    return -1;
510
512
  }
511
 
 
 
513
  
512
514
  const char *out = mandos_protocol_version;
513
515
  written = 0;
514
516
  while (true){
532
534
      }
533
535
    }
534
536
  }
535
 
 
 
537
  
536
538
  if(debug){
537
539
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
538
540
  }
539
541
  
540
542
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
541
 
 
 
543
  
542
544
  do{
543
545
    ret = gnutls_handshake (session);
544
546
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
558
560
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
559
561
            ip);
560
562
  }
561
 
 
 
563
  
562
564
  while(true){
563
565
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
564
566
                                   buffer_capacity);
632
634
    } else {
633
635
      retval = -1;
634
636
    }
 
637
  } else {
 
638
    retval = -1;
635
639
  }
636
640
  
637
641
  /* Shutdown procedure */
658
662
                             flags,
659
663
                             void* userdata) {
660
664
  mandos_context *mc = userdata;
661
 
  assert(r);                    /* Spurious warning */
 
665
  assert(r);
662
666
  
663
667
  /* Called whenever a service has been resolved successfully or
664
668
     timed out */
682
686
      }
683
687
      int ret = start_mandos_communication(ip, port, interface, mc);
684
688
      if (ret == 0){
685
 
        exit(EXIT_SUCCESS);
 
689
        avahi_simple_poll_quit(mc->simple_poll);
686
690
      }
687
691
    }
688
692
  }
700
704
                             flags,
701
705
                             void* userdata) {
702
706
  mandos_context *mc = userdata;
703
 
  assert(b);                    /* Spurious warning */
 
707
  assert(b);
704
708
  
705
709
  /* Called whenever a new services becomes available on the LAN or
706
710
     is removed from the LAN */
742
746
 
743
747
/* Combines file name and path and returns the malloced new
744
748
   string. some sane checks could/should be added */
745
 
static const char *combinepath(const char *first, const char *second){
746
 
  size_t f_len = strlen(first);
747
 
  size_t s_len = strlen(second);
748
 
  char *tmp = malloc(f_len + s_len + 2);
749
 
  if (tmp == NULL){
 
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){
750
753
    return NULL;
751
754
  }
752
 
  if(f_len > 0){
753
 
    memcpy(tmp, first, f_len);  /* Spurious warning */
754
 
  }
755
 
  tmp[f_len] = '/';
756
 
  if(s_len > 0){
757
 
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
758
 
  }
759
 
  tmp[f_len + 1 + s_len] = '\0';
760
755
  return tmp;
761
756
}
762
757
 
773
768
    gid_t gid;
774
769
    char *connect_to = NULL;
775
770
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
776
 
    const char *pubkeyfile = "pubkey.txt";
777
 
    const char *seckeyfile = "seckey.txt";
 
771
    char *pubkeyfilename = NULL;
 
772
    char *seckeyfilename = NULL;
 
773
    const char *pubkeyname = "pubkey.txt";
 
774
    const char *seckeyname = "seckey.txt";
778
775
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
779
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
776
                          .dh_bits = 1024, .priority = "SECURE256"
 
777
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
780
778
    bool gnutls_initalized = false;
781
779
    
782
780
    {
784
782
        { .name = "debug", .key = 128,
785
783
          .doc = "Debug mode", .group = 3 },
786
784
        { .name = "connect", .key = 'c',
787
 
          .arg = "IP",
788
 
          .doc = "Connect directly to a sepcified mandos server",
 
785
          .arg = "ADDRESS:PORT",
 
786
          .doc = "Connect directly to a specific Mandos server",
789
787
          .group = 1 },
790
788
        { .name = "interface", .key = 'i',
791
 
          .arg = "INTERFACE",
792
 
          .doc = "Interface that Avahi will conntect through",
 
789
          .arg = "NAME",
 
790
          .doc = "Interface that will be used to search for Mandos"
 
791
          " servers",
793
792
          .group = 1 },
794
793
        { .name = "keydir", .key = 'd',
795
 
          .arg = "KEYDIR",
796
 
          .doc = "Directory where the openpgp keyring is",
 
794
          .arg = "DIRECTORY",
 
795
          .doc = "Directory to read the OpenPGP key files from",
797
796
          .group = 1 },
798
797
        { .name = "seckey", .key = 's',
799
 
          .arg = "SECKEY",
800
 
          .doc = "Secret openpgp key for gnutls authentication",
 
798
          .arg = "FILE",
 
799
          .doc = "OpenPGP secret key file base name",
801
800
          .group = 1 },
802
801
        { .name = "pubkey", .key = 'p',
803
 
          .arg = "PUBKEY",
804
 
          .doc = "Public openpgp key for gnutls authentication",
 
802
          .arg = "FILE",
 
803
          .doc = "OpenPGP public key file base name",
805
804
          .group = 2 },
806
805
        { .name = "dh-bits", .key = 129,
807
806
          .arg = "BITS",
808
 
          .doc = "dh-bits to use in gnutls communication",
 
807
          .doc = "Bit length of the prime number used in the"
 
808
          " Diffie-Hellman key exchange",
809
809
          .group = 2 },
810
810
        { .name = "priority", .key = 130,
811
 
          .arg = "PRIORITY",
812
 
          .doc = "GNUTLS priority", .group = 1 },
 
811
          .arg = "STRING",
 
812
          .doc = "GnuTLS priority string for the TLS handshake",
 
813
          .group = 1 },
813
814
        { .name = NULL }
814
815
      };
815
 
 
816
816
      
817
817
      error_t parse_opt (int key, char *arg,
818
818
                         struct argp_state *state) {
819
819
        /* Get the INPUT argument from `argp_parse', which we know is
820
820
           a pointer to our plugin list pointer. */
821
821
        switch (key) {
822
 
        case 128:
 
822
        case 128:               /* --debug */
823
823
          debug = true;
824
824
          break;
825
 
        case 'c':
 
825
        case 'c':               /* --connect */
826
826
          connect_to = arg;
827
827
          break;
828
 
        case 'i':
 
828
        case 'i':               /* --interface */
829
829
          interface = arg;
830
830
          break;
831
 
        case 'd':
 
831
        case 'd':               /* --keydir */
832
832
          keydir = arg;
833
833
          break;
834
 
        case 's':
835
 
          seckeyfile = arg;
836
 
          break;
837
 
        case 'p':
838
 
          pubkeyfile = arg;
839
 
          break;
840
 
        case 129:
 
834
        case 's':               /* --seckey */
 
835
          seckeyname = arg;
 
836
          break;
 
837
        case 'p':               /* --pubkey */
 
838
          pubkeyname = arg;
 
839
          break;
 
840
        case 129:               /* --dh-bits */
841
841
          errno = 0;
842
842
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
843
843
          if (errno){
845
845
            exit(EXIT_FAILURE);
846
846
          }
847
847
          break;
848
 
        case 130:
 
848
        case 130:               /* --priority */
849
849
          mc.priority = arg;
850
850
          break;
851
851
        case ARGP_KEY_ARG:
852
852
          argp_usage (state);
 
853
        case ARGP_KEY_END:
853
854
          break;
854
 
          case ARGP_KEY_END:
855
 
            break;
856
855
        default:
857
856
          return ARGP_ERR_UNKNOWN;
858
857
        }
859
858
        return 0;
860
859
      }
861
 
 
 
860
      
862
861
      struct argp argp = { .options = options, .parser = parse_opt,
863
862
                           .args_doc = "",
864
863
                           .doc = "Mandos client -- Get and decrypt"
865
 
                           " passwords from mandos server" };
 
864
                           " passwords from a Mandos server" };
866
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
867
866
      if (ret == ARGP_ERR_UNKNOWN){
868
867
        fprintf(stderr, "Unknown error while parsing arguments\n");
870
869
        goto end;
871
870
      }
872
871
    }
873
 
      
874
 
    pubkeyfile = combinepath(keydir, pubkeyfile);
875
 
    if (pubkeyfile == NULL){
876
 
      perror("combinepath");
877
 
      exitcode = EXIT_FAILURE;
878
 
      goto end;
879
 
    }
880
 
    
881
 
    seckeyfile = combinepath(keydir, seckeyfile);
882
 
    if (seckeyfile == NULL){
883
 
      perror("combinepath");
884
 
      goto end;
885
 
    }
886
 
 
887
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
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);
888
888
    if (ret == -1){
889
 
      fprintf(stderr, "init_gnutls_global\n");
 
889
      fprintf(stderr, "init_gnutls_global failed\n");
 
890
      exitcode = EXIT_FAILURE;
890
891
      goto end;
891
892
    } else {
892
893
      gnutls_initalized = true;
900
901
        exitcode = EXIT_FAILURE;
901
902
        goto end;
902
903
      }
903
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
904
      strcpy(network.ifr_name, interface);
904
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
905
906
      if(ret == -1){
906
907
        perror("ioctl SIOCGIFFLAGS");
980
981
        exitcode = EXIT_FAILURE;
981
982
        goto end;
982
983
    }
983
 
 
 
984
    
984
985
    {
985
986
      AvahiServerConfig config;
986
987
      /* Do not publish any local Zeroconf records */
989
990
      config.publish_addresses = 0;
990
991
      config.publish_workstation = 0;
991
992
      config.publish_domain = 0;
992
 
 
 
993
      
993
994
      /* Allocate a new server */
994
995
      mc.server = avahi_server_new(avahi_simple_poll_get
995
996
                                   (mc.simple_poll), &config, NULL,
996
997
                                   NULL, &error);
997
 
    
 
998
      
998
999
      /* Free the Avahi configuration data */
999
1000
      avahi_server_config_free(&config);
1000
1001
    }
1020
1021
    }
1021
1022
    
1022
1023
    /* Run the main loop */
1023
 
 
 
1024
    
1024
1025
    if (debug){
1025
1026
      fprintf(stderr, "Starting Avahi loop search\n");
1026
1027
    }
1028
1029
    avahi_simple_poll_loop(mc.simple_poll);
1029
1030
    
1030
1031
 end:
1031
 
 
 
1032
    
1032
1033
    if (debug){
1033
1034
      fprintf(stderr, "%s exiting\n", argv[0]);
1034
1035
    }
1039
1040
    
1040
1041
    if (mc.server != NULL)
1041
1042
        avahi_server_free(mc.server);
1042
 
 
 
1043
    
1043
1044
    if (mc.simple_poll != NULL)
1044
1045
        avahi_simple_poll_free(mc.simple_poll);
1045
 
    free(pubkeyfile);
1046
 
    free(seckeyfile);
1047
 
 
 
1046
    free(pubkeyfilename);
 
1047
    free(seckeyfilename);
 
1048
    
1048
1049
    if (gnutls_initalized){
1049
1050
      gnutls_certificate_free_credentials(mc.cred);
1050
1051
      gnutls_global_deinit ();