/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/mandosclient.c

mandosclient
        Droping privileges
        split gnutls function into global and session

* server.py (if_nametoindex): Redefine itself instead of using a
                              default keyword argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#include <arpa/inet.h>          /* inet_pton() */
66
66
#include <iso646.h>             /* not */
67
67
#include <net/if.h>             /* IF_NAMESIZE */
68
 
#include <argp.h>               /* struct argp_option,
69
 
                                   struct argp_state, struct argp,
70
 
                                   argp_parse() */
 
68
 
71
69
/* GPGME */
72
70
#include <errno.h>              /* perror() */
73
71
#include <gpgme.h>
74
72
 
 
73
/* getopt_long */
 
74
#include <getopt.h>
 
75
 
75
76
#define BUFFER_SIZE 256
76
77
 
 
78
static const char *keydir = "/conf/conf.d/mandos";
 
79
static const char *pubkeyfile = "pubkey.txt";
 
80
static const char *seckeyfile = "seckey.txt";
 
81
 
77
82
bool debug = false;
78
 
static const char *keydir = "/conf/conf.d/mandos";
79
 
const char *argp_program_version = "mandosclient 0.9";
80
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
81
 
static const char mandos_protocol_version[] = "1";
82
 
 
83
 
/* Used for passing in values through the Avahi callback functions */
 
83
 
 
84
const char mandos_protocol_version[] = "1";
 
85
 
 
86
/* Used for passing in values through all the callback functions */
84
87
typedef struct {
85
88
  AvahiSimplePoll *simple_poll;
86
89
  AvahiServer *server;
90
93
  const char *priority;
91
94
} mandos_context;
92
95
 
93
 
/* Make room in "buffer" for at least BUFFER_SIZE additional bytes.
94
 
 * "buffer_capacity" is how much is currently allocated,
95
 
 * "buffer_length" is how much is already used. */
96
96
size_t adjustbuffer(char **buffer, size_t buffer_length,
97
97
                  size_t buffer_capacity){
98
98
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
233
233
  
234
234
  *plaintext = NULL;
235
235
  while(true){
236
 
    plaintext_capacity = adjustbuffer(plaintext,
237
 
                                      (size_t)plaintext_length,
 
236
    plaintext_capacity = adjustbuffer(plaintext, (size_t)plaintext_length,
238
237
                                      plaintext_capacity);
239
238
    if (plaintext_capacity == 0){
240
239
        perror("adjustbuffer");
288
287
  fprintf(stderr, "GnuTLS: %s", string);
289
288
}
290
289
 
291
 
static int init_gnutls_global(mandos_context *mc,
292
 
                              const char *pubkeyfile,
293
 
                              const char *seckeyfile){
 
290
static int init_gnutls_global(mandos_context *mc){
294
291
  int ret;
295
292
  
296
293
  if(debug){
356
353
  return 0;
357
354
}
358
355
 
359
 
static int init_gnutls_session(mandos_context *mc,
360
 
                               gnutls_session_t *session){
 
356
static int init_gnutls_session(mandos_context *mc, gnutls_session_t *session){
361
357
  int ret;
362
358
  /* GnuTLS session creation */
363
359
  ret = gnutls_init(session, GNUTLS_SERVER);
403
399
                                      AvahiIfIndex if_index,
404
400
                                      mandos_context *mc){
405
401
  int ret, tcp_sd;
406
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
402
  struct sockaddr_in6 to;
407
403
  char *buffer = NULL;
408
404
  char *decrypted_buffer;
409
405
  size_t buffer_length = 0;
413
409
  int retval = 0;
414
410
  char interface[IF_NAMESIZE];
415
411
  gnutls_session_t session;
 
412
  gnutls_dh_params_t dh_params;
416
413
  
417
414
  ret = init_gnutls_session (mc, &session);
418
415
  if (ret != 0){
439
436
  }
440
437
  
441
438
  memset(&to,0,sizeof(to));     /* Spurious warning */
442
 
  to.in6.sin6_family = AF_INET6;
 
439
  to.sin6_family = AF_INET6;
443
440
  /* It would be nice to have a way to detect if we were passed an
444
441
     IPv4 address here.   Now we assume an IPv6 address. */
445
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
442
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
446
443
  if (ret < 0 ){
447
444
    perror("inet_pton");
448
445
    return -1;
451
448
    fprintf(stderr, "Bad address: %s\n", ip);
452
449
    return -1;
453
450
  }
454
 
  to.in6.sin6_port = htons(port);       /* Spurious warning */
 
451
  to.sin6_port = htons(port);   /* Spurious warning */
455
452
  
456
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
453
  to.sin6_scope_id = (uint32_t)if_index;
457
454
  
458
455
  if(debug){
459
456
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
460
457
    char addrstr[INET6_ADDRSTRLEN] = "";
461
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
 
458
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
462
459
                 sizeof(addrstr)) == NULL){
463
460
      perror("inet_ntop");
464
461
    } else {
468
465
    }
469
466
  }
470
467
  
471
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
 
468
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
472
469
  if (ret < 0){
473
470
    perror("connect");
474
471
    return -1;
523
520
  }
524
521
 
525
522
  while(true){
526
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
527
 
                                   buffer_capacity);
 
523
    buffer_capacity = adjustbuffer(&buffer, buffer_length, buffer_capacity);
528
524
    if (buffer_capacity == 0){
529
525
      perror("adjustbuffer");
530
526
      retval = -1;
735
731
    gid_t gid;
736
732
    char *connect_to = NULL;
737
733
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
738
 
    const char *pubkeyfile = "pubkey.txt";
739
 
    const char *seckeyfile = "seckey.txt";
740
734
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
741
735
                          .dh_bits = 1024, .priority = "SECURE256"};
742
736
    
743
737
    {
744
 
      struct argp_option options[] = {
745
 
        { .name = "debug", .key = 128,
746
 
          .doc = "Debug mode", .group = 3 },
747
 
        { .name = "connect", .key = 'c',
748
 
          .arg = "IP",
749
 
          .doc = "Connect directly to a sepcified mandos server",
750
 
          .group = 1 },
751
 
        { .name = "interface", .key = 'i',
752
 
          .arg = "INTERFACE",
753
 
          .doc = "Interface that Avahi will conntect through",
754
 
          .group = 1 },
755
 
        { .name = "keydir", .key = 'd',
756
 
          .arg = "KEYDIR",
757
 
          .doc = "Directory where the openpgp keyring is",
758
 
          .group = 1 },
759
 
        { .name = "seckey", .key = 's',
760
 
          .arg = "SECKEY",
761
 
          .doc = "Secret openpgp key for gnutls authentication",
762
 
          .group = 1 },
763
 
        { .name = "pubkey", .key = 'p',
764
 
          .arg = "PUBKEY",
765
 
          .doc = "Public openpgp key for gnutls authentication",
766
 
          .group = 2 },
767
 
        { .name = "dh-bits", .key = 129,
768
 
          .arg = "BITS",
769
 
          .doc = "dh-bits to use in gnutls communication",
770
 
          .group = 2 },
771
 
        { .name = "priority", .key = 130,
772
 
          .arg = "PRIORITY",
773
 
          .doc = "GNUTLS priority", .group = 1 },
774
 
        { .name = NULL }
775
 
      };
776
 
 
777
 
      
778
 
      error_t parse_opt (int key, char *arg,
779
 
                         struct argp_state *state) {
780
 
        /* Get the INPUT argument from `argp_parse', which we know is
781
 
           a pointer to our plugin list pointer. */
782
 
        switch (key) {
783
 
        case 128:
784
 
          debug = true;
 
738
      /* Temporary int to get the address of for getopt_long */
 
739
      int debug_int = debug ? 1 : 0;
 
740
      while (true){
 
741
        struct option long_options[] = {
 
742
          {"debug", no_argument, &debug_int, 1},
 
743
          {"connect", required_argument, NULL, 'c'},
 
744
          {"interface", required_argument, NULL, 'i'},
 
745
          {"keydir", required_argument, NULL, 'd'},
 
746
          {"seckey", required_argument, NULL, 's'},
 
747
          {"pubkey", required_argument, NULL, 'p'},
 
748
          {"dh-bits", required_argument, NULL, 'D'},
 
749
          {"priority", required_argument, NULL, 'P'},
 
750
          {0, 0, 0, 0} };
 
751
      
 
752
        int option_index = 0;
 
753
        ret = getopt_long (argc, argv, "i:", long_options,
 
754
                           &option_index);
 
755
      
 
756
        if (ret == -1){
 
757
          break;
 
758
        }
 
759
      
 
760
        switch(ret){
 
761
        case 0:
 
762
          break;
 
763
        case 'i':
 
764
          interface = optarg;
785
765
          break;
786
766
        case 'c':
787
 
          connect_to = arg;
788
 
          break;
789
 
        case 'i':
790
 
          interface = arg;
 
767
          connect_to = optarg;
791
768
          break;
792
769
        case 'd':
793
 
          keydir = arg;
 
770
          keydir = optarg;
 
771
          break;
 
772
        case 'p':
 
773
          pubkeyfile = optarg;
794
774
          break;
795
775
        case 's':
796
 
          seckeyfile = arg;
797
 
          break;
798
 
        case 'p':
799
 
          pubkeyfile = arg;
800
 
          break;
801
 
        case 129:
 
776
          seckeyfile = optarg;
 
777
          break;
 
778
        case 'D':
802
779
          errno = 0;
803
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
780
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
804
781
          if (errno){
805
782
            perror("strtol");
806
783
            exit(EXIT_FAILURE);
807
784
          }
808
785
          break;
809
 
        case 130:
810
 
          mc.priority = arg;
811
 
          break;
812
 
        case ARGP_KEY_ARG:
813
 
          argp_usage (state);
814
 
          break;
815
 
          case ARGP_KEY_END:
816
 
            break;
 
786
        case 'P':
 
787
          mc.priority = optarg;
 
788
          break;
 
789
        case '?':
817
790
        default:
818
 
          return ARGP_ERR_UNKNOWN;
 
791
          /* getopt_long() has already printed a message about the
 
792
             unrcognized option, so just exit. */
 
793
          exit(EXIT_FAILURE);
819
794
        }
820
 
        return 0;
821
795
      }
822
 
 
823
 
      struct argp argp = { .options = options, .parser = parse_opt,
824
 
                           .args_doc = "",
825
 
                           .doc = "Mandos client -- Get and decrypt"
826
 
                           " passwords from mandos server" };
827
 
      argp_parse (&argp, argc, argv, 0, 0, NULL);
 
796
      /* Set the global debug flag from the temporary int */
 
797
      debug = debug_int ? true : false;
828
798
    }
829
 
      
 
799
    
830
800
    pubkeyfile = combinepath(keydir, pubkeyfile);
831
801
    if (pubkeyfile == NULL){
832
802
      perror("combinepath");
840
810
      goto end;
841
811
    }
842
812
 
843
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
813
    ret = init_gnutls_global(&mc);
844
814
    if (ret == -1){
845
815
      fprintf(stderr, "init_gnutls_global\n");
846
816
      goto end;