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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-03 21:45:14 UTC
  • mfrom: (24.1.13 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080803214514-plvvkrpoitwsrxeg
Merge.

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
 
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>";
 
83
 
81
84
const char mandos_protocol_version[] = "1";
82
85
 
83
86
/* Used for passing in values through all the callback functions */
284
287
  fprintf(stderr, "GnuTLS: %s", string);
285
288
}
286
289
 
287
 
static int init_gnutls_global(mandos_context *mc,
288
 
                              const char *pubkeyfile,
289
 
                              const char *seckeyfile){
 
290
static int init_gnutls_global(mandos_context *mc){
290
291
  int ret;
291
292
  
292
293
  if(debug){
730
731
    gid_t gid;
731
732
    char *connect_to = NULL;
732
733
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
733
 
    const char *pubkeyfile = "pubkey.txt";
734
 
    const char *seckeyfile = "seckey.txt";
735
734
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
736
735
                          .dh_bits = 1024, .priority = "SECURE256"};
737
736
    
738
737
    {
739
 
      struct argp_option options[] = {
740
 
        { .name = "debug", .key = 128,
741
 
          .doc = "Debug mode", .group = 3 },
742
 
        { .name = "connect", .key = 'c',
743
 
          .arg = "IP",
744
 
          .doc = "Connect directly to a sepcified mandos server", .group = 1 },
745
 
        { .name = "interface", .key = 'i',
746
 
          .arg = "INTERFACE",
747
 
          .doc = "Interface that Avahi will conntect through", .group = 1 },
748
 
        { .name = "keydir", .key = 'd',
749
 
          .arg = "KEYDIR",
750
 
          .doc = "Directory where the openpgp keyring is", .group = 1 },
751
 
        { .name = "seckey", .key = 's',
752
 
          .arg = "SECKEY",
753
 
          .doc = "Secret openpgp key for gnutls authentication", .group = 1 },
754
 
        { .name = "pubkey", .key = 'p',
755
 
          .arg = "PUBKEY",
756
 
          .doc = "Public openpgp key for gnutls authentication", .group = 2 },
757
 
        { .name = "dh-bits", .key = 129,
758
 
          .arg = "BITS",
759
 
          .doc = "dh-bits to use in gnutls communication", .group = 2 },
760
 
        { .name = "priority", .key = 130,
761
 
          .arg = "PRIORITY",
762
 
          .doc = "GNUTLS priority", .group = 1 },
763
 
        { .name = NULL }
764
 
      };
765
 
 
766
 
      
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. */
770
 
        switch (key) {
771
 
        case 128:
772
 
          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;
773
765
          break;
774
766
        case 'c':
775
 
          connect_to = arg;
776
 
          break;
777
 
        case 'i':
778
 
          interface = arg;
 
767
          connect_to = optarg;
779
768
          break;
780
769
        case 'd':
781
 
          keydir = arg;
 
770
          keydir = optarg;
 
771
          break;
 
772
        case 'p':
 
773
          pubkeyfile = optarg;
782
774
          break;
783
775
        case 's':
784
 
          seckeyfile = arg;
785
 
          break;
786
 
        case 'p':
787
 
          pubkeyfile = arg;
788
 
          break;
789
 
        case 129:
 
776
          seckeyfile = optarg;
 
777
          break;
 
778
        case 'D':
790
779
          errno = 0;
791
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
780
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
792
781
          if (errno){
793
782
            perror("strtol");
794
783
            exit(EXIT_FAILURE);
795
784
          }
796
785
          break;
797
 
        case 130:
798
 
          mc.priority = arg;
799
 
          break;
800
 
        case ARGP_KEY_ARG:
801
 
          argp_usage (state);
802
 
          break;
803
 
          case ARGP_KEY_END:
804
 
            break;
 
786
        case 'P':
 
787
          mc.priority = optarg;
 
788
          break;
 
789
        case '?':
805
790
        default:
806
 
          return ARGP_ERR_UNKNOWN;
 
791
          /* getopt_long() has already printed a message about the
 
792
             unrcognized option, so just exit. */
 
793
          exit(EXIT_FAILURE);
807
794
        }
808
 
        return 0;
809
795
      }
810
 
 
811
 
      struct argp argp = { .options = options, .parser = parse_opt,
812
 
                           .args_doc = "",
813
 
                           .doc = "Mandos client -- Get and decrypt passwords from mandos server" };
814
 
      argp_parse (&argp, argc, argv, 0, 0, NULL);
 
796
      /* Set the global debug flag from the temporary int */
 
797
      debug = debug_int ? true : false;
815
798
    }
816
 
      
 
799
    
817
800
    pubkeyfile = combinepath(keydir, pubkeyfile);
818
801
    if (pubkeyfile == NULL){
819
802
      perror("combinepath");
827
810
      goto end;
828
811
    }
829
812
 
830
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
813
    ret = init_gnutls_global(&mc);
831
814
    if (ret == -1){
832
815
      fprintf(stderr, "init_gnutls_global\n");
833
816
      goto end;