/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-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:
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,
81
83
#include <avahi-common/error.h>
82
84
 
83
85
/* GnuTLS */
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
85
 
                                   functions:
 
86
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
86
87
                                   gnutls_*
87
88
                                   init_gnutls_session(),
88
89
                                   GNUTLS_* */
90
91
                                   GNUTLS_OPENPGP_FMT_BASE64 */
91
92
 
92
93
/* GPGME */
93
 
#include <gpgme.h>              /* All GPGME types, constants and
94
 
                                   functions:
 
94
#include <gpgme.h>              /* All GPGME types, constants and functions
95
95
                                   gpgme_*
96
96
                                   GPGME_PROTOCOL_OpenPGP,
97
97
                                   GPG_ERR_NO_* */
315
315
}
316
316
 
317
317
static int init_gnutls_global(mandos_context *mc,
318
 
                              const char *pubkeyfilename,
319
 
                              const char *seckeyfilename){
 
318
                              const char *pubkeyfile,
 
319
                              const char *seckeyfile){
320
320
  int ret;
321
321
  
322
322
  if(debug){
349
349
  
350
350
  if(debug){
351
351
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
352
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
353
 
            seckeyfilename);
 
352
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
353
            seckeyfile);
354
354
  }
355
355
  
356
356
  ret = gnutls_certificate_set_openpgp_key_file
357
 
    (mc->cred, pubkeyfilename, seckeyfilename,
358
 
     GNUTLS_OPENPGP_FMT_BASE64);
 
357
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
359
358
  if (ret != GNUTLS_E_SUCCESS) {
360
359
    fprintf(stderr,
361
360
            "Error[%d] while reading the OpenPGP key pair ('%s',"
362
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
361
            " '%s')\n", ret, pubkeyfile, seckeyfile);
363
362
    fprintf(stdout, "The GnuTLS error is: %s\n",
364
363
            safer_gnutls_strerror(ret));
365
364
    goto globalfail;
475
474
    fprintf(stderr, "Binding to interface %s\n", interface);
476
475
  }
477
476
  
478
 
  memset(&to, 0, sizeof(to));   /* Spurious warning */
 
477
  memset(&to,0,sizeof(to));     /* Spurious warning */
479
478
  to.in6.sin6_family = AF_INET6;
480
479
  /* It would be nice to have a way to detect if we were passed an
481
480
     IPv4 address here.   Now we assume an IPv6 address. */
488
487
    fprintf(stderr, "Bad address: %s\n", ip);
489
488
    return -1;
490
489
  }
491
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
 
490
  to.in6.sin6_port = htons(port);       /* Spurious warning */
492
491
  
493
492
  to.in6.sin6_scope_id = (uint32_t)if_index;
494
493
  
685
684
      }
686
685
      int ret = start_mandos_communication(ip, port, interface, mc);
687
686
      if (ret == 0){
688
 
        avahi_simple_poll_quit(mc->simple_poll);
 
687
        exit(EXIT_SUCCESS);
689
688
      }
690
689
    }
691
690
  }
745
744
 
746
745
/* Combines file name and path and returns the malloced new
747
746
   string. some sane checks could/should be added */
748
 
static char *combinepath(const char *first, const char *second){
749
 
  char *tmp;
750
 
  int ret = asprintf(&tmp, "%s/%s", first, second);
751
 
  if(ret < 0){
 
747
static const char *combinepath(const char *first, const char *second){
 
748
  size_t f_len = strlen(first);
 
749
  size_t s_len = strlen(second);
 
750
  char *tmp = malloc(f_len + s_len + 2);
 
751
  if (tmp == NULL){
752
752
    return NULL;
753
753
  }
 
754
  if(f_len > 0){
 
755
    memcpy(tmp, first, f_len);  /* Spurious warning */
 
756
  }
 
757
  tmp[f_len] = '/';
 
758
  if(s_len > 0){
 
759
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
 
760
  }
 
761
  tmp[f_len + 1 + s_len] = '\0';
754
762
  return tmp;
755
763
}
756
764
 
767
775
    gid_t gid;
768
776
    char *connect_to = NULL;
769
777
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
770
 
    char *pubkeyfilename = NULL;
771
 
    char *seckeyfilename = NULL;
772
 
    const char *pubkeyname = "pubkey.txt";
773
 
    const char *seckeyname = "seckey.txt";
 
778
    const char *pubkeyfile = "pubkey.txt";
 
779
    const char *seckeyfile = "seckey.txt";
774
780
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
775
781
                          .dh_bits = 1024, .priority = "SECURE256"};
776
782
    bool gnutls_initalized = false;
828
834
          keydir = arg;
829
835
          break;
830
836
        case 's':
831
 
          seckeyname = arg;
 
837
          seckeyfile = arg;
832
838
          break;
833
839
        case 'p':
834
 
          pubkeyname = arg;
 
840
          pubkeyfile = arg;
835
841
          break;
836
842
        case 129:
837
843
          errno = 0;
846
852
          break;
847
853
        case ARGP_KEY_ARG:
848
854
          argp_usage (state);
849
 
        case ARGP_KEY_END:
850
855
          break;
 
856
          case ARGP_KEY_END:
 
857
            break;
851
858
        default:
852
859
          return ARGP_ERR_UNKNOWN;
853
860
        }
860
867
                           " passwords from mandos server" };
861
868
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
862
869
      if (ret == ARGP_ERR_UNKNOWN){
863
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
870
        fprintf(stderr, "Unkown error while parsing arguments\n");
864
871
        exitcode = EXIT_FAILURE;
865
872
        goto end;
866
873
      }
867
874
    }
868
875
      
869
 
    pubkeyfilename = combinepath(keydir, pubkeyname);
870
 
    if (pubkeyfilename == NULL){
 
876
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
877
    if (pubkeyfile == NULL){
871
878
      perror("combinepath");
872
879
      exitcode = EXIT_FAILURE;
873
880
      goto end;
874
881
    }
875
882
    
876
 
    seckeyfilename = combinepath(keydir, seckeyname);
877
 
    if (seckeyfilename == NULL){
 
883
    seckeyfile = combinepath(keydir, seckeyfile);
 
884
    if (seckeyfile == NULL){
878
885
      perror("combinepath");
879
 
      exitcode = EXIT_FAILURE;
880
886
      goto end;
881
887
    }
882
888
 
883
 
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
889
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
884
890
    if (ret == -1){
885
 
      fprintf(stderr, "init_gnutls_global failed\n");
886
 
      exitcode = EXIT_FAILURE;
 
891
      fprintf(stderr, "init_gnutls_global\n");
887
892
      goto end;
888
893
    } else {
889
894
      gnutls_initalized = true;
890
895
    }
891
 
    
892
 
    /* If the interface is down, bring it up */
893
 
    {
894
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
895
 
      if(sd < 0) {
896
 
        perror("socket");
897
 
        exitcode = EXIT_FAILURE;
898
 
        goto end;
899
 
      }
900
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
901
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
902
 
      if(ret == -1){
903
 
        perror("ioctl SIOCGIFFLAGS");
904
 
        exitcode = EXIT_FAILURE;
905
 
        goto end;
906
 
      }
907
 
      if((network.ifr_flags & IFF_UP) == 0){
908
 
        network.ifr_flags |= IFF_UP;
909
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
910
 
        if(ret == -1){
911
 
          perror("ioctl SIOCSIFFLAGS");
912
 
          exitcode = EXIT_FAILURE;
913
 
          goto end;
914
 
        }
915
 
      }
916
 
      close(sd);
917
 
    }
918
 
    
 
896
 
919
897
    uid = getuid();
920
898
    gid = getgid();
921
 
    
 
899
 
922
900
    ret = setuid(uid);
923
901
    if (ret == -1){
924
902
      perror("setuid");
962
940
      goto end;
963
941
    }
964
942
    
 
943
    /* If the interface is down, bring it up */
 
944
    {
 
945
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
946
      if(sd < 0) {
 
947
        perror("socket");
 
948
        exitcode = EXIT_FAILURE;
 
949
        goto end;
 
950
      }
 
951
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
952
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
953
      if(ret == -1){
 
954
        perror("ioctl SIOCGIFFLAGS");
 
955
        exitcode = EXIT_FAILURE;
 
956
        goto end;
 
957
      }
 
958
      if((network.ifr_flags & IFF_UP) == 0){
 
959
        network.ifr_flags |= IFF_UP;
 
960
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
961
        if(ret == -1){
 
962
          perror("ioctl SIOCSIFFLAGS");
 
963
          exitcode = EXIT_FAILURE;
 
964
          goto end;
 
965
        }
 
966
      }
 
967
      close(sd);
 
968
    }
 
969
    
965
970
    if (not debug){
966
971
      avahi_set_log_function(empty_log);
967
972
    }
1039
1044
 
1040
1045
    if (mc.simple_poll != NULL)
1041
1046
        avahi_simple_poll_free(mc.simple_poll);
1042
 
    free(pubkeyfilename);
1043
 
    free(seckeyfilename);
 
1047
    free(pubkeyfile);
 
1048
    free(seckeyfile);
1044
1049
 
1045
1050
    if (gnutls_initalized){
1046
1051
      gnutls_certificate_free_credentials(mc.cred);