/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-08-10 20:35:01 UTC
  • mfrom: (24.1.42 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080810203501-euh3qcf1nopilksm
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
36
 
37
 
#include <stdio.h>
38
 
#include <assert.h>
39
 
#include <stdlib.h>
40
 
#include <time.h>
41
 
#include <net/if.h>             /* if_nametoindex */
42
 
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
43
 
                                   SIOCSIFFLAGS */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
38
                                   ferror() */
 
39
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
42
                                   srand() */
 
43
#include <stdbool.h>            /* bool, true */
 
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
                                   strerror(), memcpy(), strcpy() */
 
46
#include <sys/ioctl.h>          /* ioctl */
 
47
#include <net/if.h>             /* ifreq, SIOCGIFFLAGS, SIOCSIFFLAGS,
 
48
                                   IFF_UP */
 
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
50
                                   sockaddr_in6, PF_INET6,
 
51
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
52
                                   uid_t, gid_t */
 
53
#include <inttypes.h>           /* PRIu16 */
 
54
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
55
                                   struct in6_addr, inet_pton(),
 
56
                                   connect() */
 
57
#include <assert.h>             /* assert() */
 
58
#include <errno.h>              /* perror(), errno */
 
59
#include <time.h>               /* time() */
44
60
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
45
 
                                   SIOCSIFFLAGS */
 
61
                                   SIOCSIFFLAGS, if_indextoname(),
 
62
                                   if_nametoindex(), IF_NAMESIZE */
 
63
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
64
                                   getuid(), getgid(), setuid(),
 
65
                                   setgid() */
 
66
#include <netinet/in.h>
 
67
#include <arpa/inet.h>          /* inet_pton(), htons */
 
68
#include <iso646.h>             /* not, and */
 
69
#include <argp.h>               /* struct argp_option, error_t, struct
 
70
                                   argp_state, struct argp,
 
71
                                   argp_parse(), ARGP_KEY_ARG,
 
72
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
46
73
 
 
74
/* Avahi */
 
75
/* All Avahi types, constants and functions
 
76
 Avahi*, avahi_*,
 
77
 AVAHI_* */
47
78
#include <avahi-core/core.h>
48
79
#include <avahi-core/lookup.h>
49
80
#include <avahi-core/log.h>
51
82
#include <avahi-common/malloc.h>
52
83
#include <avahi-common/error.h>
53
84
 
54
 
/* Mandos client part */
55
 
#include <sys/types.h>          /* socket(), inet_pton() */
56
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
57
 
                                   struct in6_addr, inet_pton() */
58
 
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
59
 
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
 
85
/* GnuTLS */
 
86
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
87
                                   gnutls_*
 
88
                                   init_gnutls_session(),
 
89
                                   GNUTLS_* */
 
90
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
91
                                   GNUTLS_OPENPGP_FMT_BASE64 */
60
92
 
61
 
#include <unistd.h>             /* close() */
62
 
#include <netinet/in.h>
63
 
#include <stdbool.h>            /* true */
64
 
#include <string.h>             /* memset */
65
 
#include <arpa/inet.h>          /* inet_pton() */
66
 
#include <iso646.h>             /* not */
67
 
#include <net/if.h>             /* IF_NAMESIZE */
68
 
#include <argp.h>               /* struct argp_option,
69
 
                                   struct argp_state, struct argp,
70
 
                                   argp_parse() */
71
93
/* GPGME */
72
 
#include <errno.h>              /* perror() */
73
 
#include <gpgme.h>
 
94
#include <gpgme.h>              /* All GPGME types, constants and functions
 
95
                                   gpgme_*
 
96
                                   GPGME_PROTOCOL_OpenPGP,
 
97
                                   GPG_ERR_NO_* */
74
98
 
75
99
#define BUFFER_SIZE 256
76
100
 
77
101
bool debug = false;
78
 
const char *keydir = "/conf/conf.d/mandos";
79
 
const char *argp_program_version = "mandosclient 0.9";
 
102
static const char *keydir = "/conf/conf.d/mandos";
 
103
static const char mandos_protocol_version[] = "1";
 
104
const char *argp_program_version = "password-request 1.0";
80
105
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
81
 
const char mandos_protocol_version[] = "1";
82
106
 
83
 
/* Used for passing in values through all the callback functions */
 
107
/* Used for passing in values through the Avahi callback functions */
84
108
typedef struct {
85
109
  AvahiSimplePoll *simple_poll;
86
110
  AvahiServer *server;
90
114
  const char *priority;
91
115
} mandos_context;
92
116
 
 
117
/*
 
118
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
 
119
 * "buffer_capacity" is how much is currently allocated,
 
120
 * "buffer_length" is how much is already used.
 
121
 */
93
122
size_t adjustbuffer(char **buffer, size_t buffer_length,
94
123
                  size_t buffer_capacity){
95
124
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
200
229
    } else {
201
230
      fprintf(stderr, "Unsupported algorithm: %s\n",
202
231
              result->unsupported_algorithm);
203
 
      fprintf(stderr, "Wrong key usage: %d\n",
 
232
      fprintf(stderr, "Wrong key usage: %u\n",
204
233
              result->wrong_key_usage);
205
234
      if(result->file_name != NULL){
206
235
        fprintf(stderr, "File name: %s\n", result->file_name);
230
259
  
231
260
  *plaintext = NULL;
232
261
  while(true){
233
 
    plaintext_capacity = adjustbuffer(plaintext, (size_t)plaintext_length,
 
262
    plaintext_capacity = adjustbuffer(plaintext,
 
263
                                      (size_t)plaintext_length,
234
264
                                      plaintext_capacity);
235
265
    if (plaintext_capacity == 0){
236
266
        perror("adjustbuffer");
292
322
  if(debug){
293
323
    fprintf(stderr, "Initializing GnuTLS\n");
294
324
  }
295
 
 
296
 
  if ((ret = gnutls_global_init ())
297
 
      != GNUTLS_E_SUCCESS) {
 
325
  
 
326
  ret = gnutls_global_init();
 
327
  if (ret != GNUTLS_E_SUCCESS) {
298
328
    fprintf (stderr, "GnuTLS global_init: %s\n",
299
329
             safer_gnutls_strerror(ret));
300
330
    return -1;
309
339
  }
310
340
  
311
341
  /* OpenPGP credentials */
312
 
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
313
 
      != GNUTLS_E_SUCCESS) {
 
342
  gnutls_certificate_allocate_credentials(&mc->cred);
 
343
  if (ret != GNUTLS_E_SUCCESS){
314
344
    fprintf (stderr, "GnuTLS memory error: %s\n",
315
345
             safer_gnutls_strerror(ret));
 
346
    gnutls_global_deinit ();
316
347
    return -1;
317
348
  }
318
349
  
330
361
            " '%s')\n", ret, pubkeyfile, seckeyfile);
331
362
    fprintf(stdout, "The GnuTLS error is: %s\n",
332
363
            safer_gnutls_strerror(ret));
333
 
    return -1;
 
364
    goto globalfail;
334
365
  }
335
366
  
336
367
  /* GnuTLS server initialization */
338
369
  if (ret != GNUTLS_E_SUCCESS) {
339
370
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
340
371
             " %s\n", safer_gnutls_strerror(ret));
341
 
    return -1;
 
372
    goto globalfail;
342
373
  }
343
374
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
344
375
  if (ret != GNUTLS_E_SUCCESS) {
345
376
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
346
377
             safer_gnutls_strerror(ret));
347
 
    return -1;
 
378
    goto globalfail;
348
379
  }
349
380
  
350
381
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
351
382
 
352
383
  return 0;
 
384
 
 
385
 globalfail:
 
386
 
 
387
  gnutls_certificate_free_credentials(mc->cred);
 
388
  gnutls_global_deinit();
 
389
  return -1;
 
390
 
353
391
}
354
392
 
355
 
static int init_gnutls_session(mandos_context *mc, gnutls_session_t *session){
 
393
static int init_gnutls_session(mandos_context *mc,
 
394
                               gnutls_session_t *session){
356
395
  int ret;
357
396
  /* GnuTLS session creation */
358
397
  ret = gnutls_init(session, GNUTLS_SERVER);
368
407
      fprintf(stderr, "Syntax error at: %s\n", err);
369
408
      fprintf(stderr, "GnuTLS error: %s\n",
370
409
              safer_gnutls_strerror(ret));
 
410
      gnutls_deinit (*session);
371
411
      return -1;
372
412
    }
373
413
  }
377
417
  if (ret != GNUTLS_E_SUCCESS) {
378
418
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
379
419
            safer_gnutls_strerror(ret));
 
420
    gnutls_deinit (*session);
380
421
    return -1;
381
422
  }
382
423
  
398
439
                                      AvahiIfIndex if_index,
399
440
                                      mandos_context *mc){
400
441
  int ret, tcp_sd;
401
 
  struct sockaddr_in6 to;
 
442
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
402
443
  char *buffer = NULL;
403
444
  char *decrypted_buffer;
404
445
  size_t buffer_length = 0;
408
449
  int retval = 0;
409
450
  char interface[IF_NAMESIZE];
410
451
  gnutls_session_t session;
411
 
  gnutls_dh_params_t dh_params;
412
452
  
413
453
  ret = init_gnutls_session (mc, &session);
414
454
  if (ret != 0){
416
456
  }
417
457
  
418
458
  if(debug){
419
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
420
 
            ip, port);
 
459
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
460
            "\n", ip, port);
421
461
  }
422
462
  
423
463
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
435
475
  }
436
476
  
437
477
  memset(&to,0,sizeof(to));     /* Spurious warning */
438
 
  to.sin6_family = AF_INET6;
 
478
  to.in6.sin6_family = AF_INET6;
439
479
  /* It would be nice to have a way to detect if we were passed an
440
480
     IPv4 address here.   Now we assume an IPv6 address. */
441
 
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
 
481
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
442
482
  if (ret < 0 ){
443
483
    perror("inet_pton");
444
484
    return -1;
447
487
    fprintf(stderr, "Bad address: %s\n", ip);
448
488
    return -1;
449
489
  }
450
 
  to.sin6_port = htons(port);   /* Spurious warning */
 
490
  to.in6.sin6_port = htons(port);       /* Spurious warning */
451
491
  
452
 
  to.sin6_scope_id = (uint32_t)if_index;
 
492
  to.in6.sin6_scope_id = (uint32_t)if_index;
453
493
  
454
494
  if(debug){
455
 
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
 
495
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
496
            port);
456
497
    char addrstr[INET6_ADDRSTRLEN] = "";
457
 
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
 
498
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
458
499
                 sizeof(addrstr)) == NULL){
459
500
      perror("inet_ntop");
460
501
    } else {
464
505
    }
465
506
  }
466
507
  
467
 
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
 
508
  ret = connect(tcp_sd, &to.in, sizeof(to));
468
509
  if (ret < 0){
469
510
    perror("connect");
470
511
    return -1;
499
540
  }
500
541
  
501
542
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
502
 
  
503
 
  ret = gnutls_handshake (session);
 
543
 
 
544
  do{
 
545
    ret = gnutls_handshake (session);
 
546
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
504
547
  
505
548
  if (ret != GNUTLS_E_SUCCESS){
506
549
    if(debug){
519
562
  }
520
563
 
521
564
  while(true){
522
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length, buffer_capacity);
 
565
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
566
                                   buffer_capacity);
523
567
    if (buffer_capacity == 0){
524
568
      perror("adjustbuffer");
525
569
      retval = -1;
537
581
      case GNUTLS_E_AGAIN:
538
582
        break;
539
583
      case GNUTLS_E_REHANDSHAKE:
540
 
        ret = gnutls_handshake (session);
 
584
        do{
 
585
          ret = gnutls_handshake (session);
 
586
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
541
587
        if (ret < 0){
542
588
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
543
589
          gnutls_perror (ret);
596
642
  free(buffer);
597
643
  close(tcp_sd);
598
644
  gnutls_deinit (session);
599
 
  gnutls_certificate_free_credentials (mc->cred);
600
 
  gnutls_global_deinit ();
601
645
  return retval;
602
646
}
603
647
 
634
678
      char ip[AVAHI_ADDRESS_STR_MAX];
635
679
      avahi_address_snprint(ip, sizeof(ip), address);
636
680
      if(debug){
637
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
638
 
                " port %d\n", name, host_name, ip, interface, port);
 
681
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
682
                PRIu16 ") on port %d\n", name, host_name, ip,
 
683
                interface, port);
639
684
      }
640
685
      int ret = start_mandos_communication(ip, port, interface, mc);
641
686
      if (ret == 0){
734
779
    const char *seckeyfile = "seckey.txt";
735
780
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
736
781
                          .dh_bits = 1024, .priority = "SECURE256"};
 
782
    bool gnutls_initalized = false;
737
783
    
738
784
    {
739
785
      struct argp_option options[] = {
741
787
          .doc = "Debug mode", .group = 3 },
742
788
        { .name = "connect", .key = 'c',
743
789
          .arg = "IP",
744
 
          .doc = "Connect directly to a sepcified mandos server", .group = 1 },
 
790
          .doc = "Connect directly to a sepcified mandos server",
 
791
          .group = 1 },
745
792
        { .name = "interface", .key = 'i',
746
793
          .arg = "INTERFACE",
747
 
          .doc = "Interface that Avahi will conntect through", .group = 1 },
 
794
          .doc = "Interface that Avahi will conntect through",
 
795
          .group = 1 },
748
796
        { .name = "keydir", .key = 'd',
749
797
          .arg = "KEYDIR",
750
 
          .doc = "Directory where the openpgp keyring is", .group = 1 },
 
798
          .doc = "Directory where the openpgp keyring is",
 
799
          .group = 1 },
751
800
        { .name = "seckey", .key = 's',
752
801
          .arg = "SECKEY",
753
 
          .doc = "Secret openpgp key for gnutls authentication", .group = 1 },
 
802
          .doc = "Secret openpgp key for gnutls authentication",
 
803
          .group = 1 },
754
804
        { .name = "pubkey", .key = 'p',
755
805
          .arg = "PUBKEY",
756
 
          .doc = "Public openpgp key for gnutls authentication", .group = 2 },
 
806
          .doc = "Public openpgp key for gnutls authentication",
 
807
          .group = 2 },
757
808
        { .name = "dh-bits", .key = 129,
758
809
          .arg = "BITS",
759
 
          .doc = "dh-bits to use in gnutls communication", .group = 2 },
 
810
          .doc = "dh-bits to use in gnutls communication",
 
811
          .group = 2 },
760
812
        { .name = "priority", .key = 130,
761
813
          .arg = "PRIORITY",
762
814
          .doc = "GNUTLS priority", .group = 1 },
764
816
      };
765
817
 
766
818
      
767
 
      error_t parse_opt (int key, char *arg, struct argp_state *state) {
768
 
        /* Get the INPUT argument from `argp_parse', which we know is a
769
 
           pointer to our plugin list pointer. */
 
819
      error_t parse_opt (int key, char *arg,
 
820
                         struct argp_state *state) {
 
821
        /* Get the INPUT argument from `argp_parse', which we know is
 
822
           a pointer to our plugin list pointer. */
770
823
        switch (key) {
771
824
        case 128:
772
825
          debug = true;
810
863
 
811
864
      struct argp argp = { .options = options, .parser = parse_opt,
812
865
                           .args_doc = "",
813
 
                           .doc = "Mandos client -- Get and decrypt passwords from mandos server" };
814
 
      argp_parse (&argp, argc, argv, 0, 0, NULL);
 
866
                           .doc = "Mandos client -- Get and decrypt"
 
867
                           " passwords from mandos server" };
 
868
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
869
      if (ret == ARGP_ERR_UNKNOWN){
 
870
        fprintf(stderr, "Unkown error while parsing arguments\n");
 
871
        exitcode = EXIT_FAILURE;
 
872
        goto end;
 
873
      }
815
874
    }
816
875
      
817
876
    pubkeyfile = combinepath(keydir, pubkeyfile);
831
890
    if (ret == -1){
832
891
      fprintf(stderr, "init_gnutls_global\n");
833
892
      goto end;
 
893
    } else {
 
894
      gnutls_initalized = true;
834
895
    }
835
896
 
836
897
    uid = getuid();
985
1046
        avahi_simple_poll_free(mc.simple_poll);
986
1047
    free(pubkeyfile);
987
1048
    free(seckeyfile);
 
1049
 
 
1050
    if (gnutls_initalized){
 
1051
      gnutls_certificate_free_credentials(mc.cred);
 
1052
      gnutls_global_deinit ();
 
1053
    }
988
1054
    
989
1055
    return exitcode;
990
1056
}