/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-09 20:32:12 UTC
  • mfrom: (24.1.32 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080809203212-m0klt43cpge9qysg
Resolving merge commit.

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(), asprintf() */
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
36
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
38
 
                                   stdout, ferror() */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
38
                                   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(), asprintf(), strcpy() */
 
45
                                   strerror(), memcpy(), strcpy() */
46
46
#include <sys/ioctl.h>          /* ioctl */
 
47
#include <net/if.h>             /* ifreq, SIOCGIFFLAGS, SIOCSIFFLAGS,
 
48
                                   IFF_UP */
47
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
50
                                   sockaddr_in6, PF_INET6,
49
51
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
50
52
                                   uid_t, gid_t */
51
 
#include <inttypes.h>           /* PRIu16 */
52
53
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
53
54
                                   struct in6_addr, inet_pton(),
54
55
                                   connect() */
81
82
#include <avahi-common/error.h>
82
83
 
83
84
/* GnuTLS */
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
85
 
                                   functions:
 
85
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
86
86
                                   gnutls_*
87
87
                                   init_gnutls_session(),
88
88
                                   GNUTLS_* */
90
90
                                   GNUTLS_OPENPGP_FMT_BASE64 */
91
91
 
92
92
/* GPGME */
93
 
#include <gpgme.h>              /* All GPGME types, constants and
94
 
                                   functions:
 
93
#include <gpgme.h>              /* All GPGME types, constants and functions
95
94
                                   gpgme_*
96
95
                                   GPGME_PROTOCOL_OpenPGP,
97
96
                                   GPG_ERR_NO_* */
101
100
bool debug = false;
102
101
static const char *keydir = "/conf/conf.d/mandos";
103
102
static const char mandos_protocol_version[] = "1";
104
 
const char *argp_program_version = "password-request 1.0";
 
103
const char *argp_program_version = "mandosclient 0.9";
105
104
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
106
105
 
107
106
/* Used for passing in values through the Avahi callback functions */
229
228
    } else {
230
229
      fprintf(stderr, "Unsupported algorithm: %s\n",
231
230
              result->unsupported_algorithm);
232
 
      fprintf(stderr, "Wrong key usage: %u\n",
 
231
      fprintf(stderr, "Wrong key usage: %d\n",
233
232
              result->wrong_key_usage);
234
233
      if(result->file_name != NULL){
235
234
        fprintf(stderr, "File name: %s\n", result->file_name);
302
301
}
303
302
 
304
303
static const char * safer_gnutls_strerror (int value) {
305
 
  const char *ret = gnutls_strerror (value); /* Spurious warning */
 
304
  const char *ret = gnutls_strerror (value);
306
305
  if (ret == NULL)
307
306
    ret = "(unknown)";
308
307
  return ret;
315
314
}
316
315
 
317
316
static int init_gnutls_global(mandos_context *mc,
318
 
                              const char *pubkeyfilename,
319
 
                              const char *seckeyfilename){
 
317
                              const char *pubkeyfile,
 
318
                              const char *seckeyfile){
320
319
  int ret;
321
320
  
322
321
  if(debug){
341
340
  /* OpenPGP credentials */
342
341
  gnutls_certificate_allocate_credentials(&mc->cred);
343
342
  if (ret != GNUTLS_E_SUCCESS){
344
 
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
345
 
                                                     warning */
 
343
    fprintf (stderr, "GnuTLS memory error: %s\n",
346
344
             safer_gnutls_strerror(ret));
347
345
    gnutls_global_deinit ();
348
346
    return -1;
350
348
  
351
349
  if(debug){
352
350
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
353
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
354
 
            seckeyfilename);
 
351
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
352
            seckeyfile);
355
353
  }
356
354
  
357
355
  ret = gnutls_certificate_set_openpgp_key_file
358
 
    (mc->cred, pubkeyfilename, seckeyfilename,
359
 
     GNUTLS_OPENPGP_FMT_BASE64);
 
356
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
360
357
  if (ret != GNUTLS_E_SUCCESS) {
361
358
    fprintf(stderr,
362
359
            "Error[%d] while reading the OpenPGP key pair ('%s',"
363
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
360
            " '%s')\n", ret, pubkeyfile, seckeyfile);
364
361
    fprintf(stdout, "The GnuTLS error is: %s\n",
365
362
            safer_gnutls_strerror(ret));
366
363
    goto globalfail;
458
455
  }
459
456
  
460
457
  if(debug){
461
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
462
 
            "\n", ip, port);
 
458
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
 
459
            ip, port);
463
460
  }
464
461
  
465
462
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
476
473
    fprintf(stderr, "Binding to interface %s\n", interface);
477
474
  }
478
475
  
479
 
  memset(&to, 0, sizeof(to));
 
476
  memset(&to,0,sizeof(to));     /* Spurious warning */
480
477
  to.in6.sin6_family = AF_INET6;
481
478
  /* It would be nice to have a way to detect if we were passed an
482
479
     IPv4 address here.   Now we assume an IPv6 address. */
489
486
    fprintf(stderr, "Bad address: %s\n", ip);
490
487
    return -1;
491
488
  }
492
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
 
489
  to.in6.sin6_port = htons(port);       /* Spurious warning */
493
490
  
494
491
  to.in6.sin6_scope_id = (uint32_t)if_index;
495
492
  
496
493
  if(debug){
497
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
498
 
            port);
 
494
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
499
495
    char addrstr[INET6_ADDRSTRLEN] = "";
500
496
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
501
497
                 sizeof(addrstr)) == NULL){
662
658
                             flags,
663
659
                             void* userdata) {
664
660
  mandos_context *mc = userdata;
665
 
  assert(r);
 
661
  assert(r);                    /* Spurious warning */
666
662
  
667
663
  /* Called whenever a service has been resolved successfully or
668
664
     timed out */
680
676
      char ip[AVAHI_ADDRESS_STR_MAX];
681
677
      avahi_address_snprint(ip, sizeof(ip), address);
682
678
      if(debug){
683
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
684
 
                PRIu16 ") on port %d\n", name, host_name, ip,
685
 
                interface, port);
 
679
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
 
680
                " port %d\n", name, host_name, ip, interface, port);
686
681
      }
687
682
      int ret = start_mandos_communication(ip, port, interface, mc);
688
683
      if (ret == 0){
689
 
        avahi_simple_poll_quit(mc->simple_poll);
 
684
        exit(EXIT_SUCCESS);
690
685
      }
691
686
    }
692
687
  }
704
699
                             flags,
705
700
                             void* userdata) {
706
701
  mandos_context *mc = userdata;
707
 
  assert(b);
 
702
  assert(b);                    /* Spurious warning */
708
703
  
709
704
  /* Called whenever a new services becomes available on the LAN or
710
705
     is removed from the LAN */
746
741
 
747
742
/* Combines file name and path and returns the malloced new
748
743
   string. some sane checks could/should be added */
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){
 
744
static const char *combinepath(const char *first, const char *second){
 
745
  size_t f_len = strlen(first);
 
746
  size_t s_len = strlen(second);
 
747
  char *tmp = malloc(f_len + s_len + 2);
 
748
  if (tmp == NULL){
753
749
    return NULL;
754
750
  }
 
751
  if(f_len > 0){
 
752
    memcpy(tmp, first, f_len);  /* Spurious warning */
 
753
  }
 
754
  tmp[f_len] = '/';
 
755
  if(s_len > 0){
 
756
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
 
757
  }
 
758
  tmp[f_len + 1 + s_len] = '\0';
755
759
  return tmp;
756
760
}
757
761
 
768
772
    gid_t gid;
769
773
    char *connect_to = NULL;
770
774
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
771
 
    char *pubkeyfilename = NULL;
772
 
    char *seckeyfilename = NULL;
773
 
    const char *pubkeyname = "pubkey.txt";
774
 
    const char *seckeyname = "seckey.txt";
 
775
    const char *pubkeyfile = "pubkey.txt";
 
776
    const char *seckeyfile = "seckey.txt";
775
777
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
776
778
                          .dh_bits = 1024, .priority = "SECURE256"};
777
779
    bool gnutls_initalized = false;
829
831
          keydir = arg;
830
832
          break;
831
833
        case 's':
832
 
          seckeyname = arg;
 
834
          seckeyfile = arg;
833
835
          break;
834
836
        case 'p':
835
 
          pubkeyname = arg;
 
837
          pubkeyfile = arg;
836
838
          break;
837
839
        case 129:
838
840
          errno = 0;
847
849
          break;
848
850
        case ARGP_KEY_ARG:
849
851
          argp_usage (state);
850
 
        case ARGP_KEY_END:
851
852
          break;
 
853
          case ARGP_KEY_END:
 
854
            break;
852
855
        default:
853
856
          return ARGP_ERR_UNKNOWN;
854
857
        }
861
864
                           " passwords from mandos server" };
862
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
863
866
      if (ret == ARGP_ERR_UNKNOWN){
864
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
867
        fprintf(stderr, "Unkown error while parsing arguments\n");
865
868
        exitcode = EXIT_FAILURE;
866
869
        goto end;
867
870
      }
868
871
    }
869
872
      
870
 
    pubkeyfilename = combinepath(keydir, pubkeyname);
871
 
    if (pubkeyfilename == NULL){
 
873
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
874
    if (pubkeyfile == NULL){
872
875
      perror("combinepath");
873
876
      exitcode = EXIT_FAILURE;
874
877
      goto end;
875
878
    }
876
879
    
877
 
    seckeyfilename = combinepath(keydir, seckeyname);
878
 
    if (seckeyfilename == NULL){
 
880
    seckeyfile = combinepath(keydir, seckeyfile);
 
881
    if (seckeyfile == NULL){
879
882
      perror("combinepath");
880
 
      exitcode = EXIT_FAILURE;
881
883
      goto end;
882
884
    }
883
885
 
884
 
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
886
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
885
887
    if (ret == -1){
886
 
      fprintf(stderr, "init_gnutls_global failed\n");
887
 
      exitcode = EXIT_FAILURE;
 
888
      fprintf(stderr, "init_gnutls_global\n");
888
889
      goto end;
889
890
    } else {
890
891
      gnutls_initalized = true;
891
892
    }
892
 
    
893
 
    /* If the interface is down, bring it up */
894
 
    {
895
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
896
 
      if(sd < 0) {
897
 
        perror("socket");
898
 
        exitcode = EXIT_FAILURE;
899
 
        goto end;
900
 
      }
901
 
      strcpy(network.ifr_name, interface);
902
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
903
 
      if(ret == -1){
904
 
        perror("ioctl SIOCGIFFLAGS");
905
 
        exitcode = EXIT_FAILURE;
906
 
        goto end;
907
 
      }
908
 
      if((network.ifr_flags & IFF_UP) == 0){
909
 
        network.ifr_flags |= IFF_UP;
910
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
911
 
        if(ret == -1){
912
 
          perror("ioctl SIOCSIFFLAGS");
913
 
          exitcode = EXIT_FAILURE;
914
 
          goto end;
915
 
        }
916
 
      }
917
 
      close(sd);
918
 
    }
919
 
    
 
893
 
920
894
    uid = getuid();
921
895
    gid = getgid();
922
 
    
 
896
 
923
897
    ret = setuid(uid);
924
898
    if (ret == -1){
925
899
      perror("setuid");
963
937
      goto end;
964
938
    }
965
939
    
 
940
    /* If the interface is down, bring it up */
 
941
    {
 
942
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
943
      if(sd < 0) {
 
944
        perror("socket");
 
945
        exitcode = EXIT_FAILURE;
 
946
        goto end;
 
947
      }
 
948
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
949
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
950
      if(ret == -1){
 
951
        perror("ioctl SIOCGIFFLAGS");
 
952
        exitcode = EXIT_FAILURE;
 
953
        goto end;
 
954
      }
 
955
      if((network.ifr_flags & IFF_UP) == 0){
 
956
        network.ifr_flags |= IFF_UP;
 
957
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
958
        if(ret == -1){
 
959
          perror("ioctl SIOCSIFFLAGS");
 
960
          exitcode = EXIT_FAILURE;
 
961
          goto end;
 
962
        }
 
963
      }
 
964
      close(sd);
 
965
    }
 
966
    
966
967
    if (not debug){
967
968
      avahi_set_log_function(empty_log);
968
969
    }
1040
1041
 
1041
1042
    if (mc.simple_poll != NULL)
1042
1043
        avahi_simple_poll_free(mc.simple_poll);
1043
 
    free(pubkeyfilename);
1044
 
    free(seckeyfilename);
 
1044
    free(pubkeyfile);
 
1045
    free(seckeyfile);
1045
1046
 
1046
1047
    if (gnutls_initalized){
1047
1048
      gnutls_certificate_free_credentials(mc.cred);