/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_* */
302
302
}
303
303
 
304
304
static const char * safer_gnutls_strerror (int value) {
305
 
  const char *ret = gnutls_strerror (value); /* Spurious warning */
 
305
  const char *ret = gnutls_strerror (value);
306
306
  if (ret == NULL)
307
307
    ret = "(unknown)";
308
308
  return ret;
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){
341
341
  /* OpenPGP credentials */
342
342
  gnutls_certificate_allocate_credentials(&mc->cred);
343
343
  if (ret != GNUTLS_E_SUCCESS){
344
 
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
345
 
                                                     warning */
 
344
    fprintf (stderr, "GnuTLS memory error: %s\n",
346
345
             safer_gnutls_strerror(ret));
347
346
    gnutls_global_deinit ();
348
347
    return -1;
350
349
  
351
350
  if(debug){
352
351
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
353
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
354
 
            seckeyfilename);
 
352
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
353
            seckeyfile);
355
354
  }
356
355
  
357
356
  ret = gnutls_certificate_set_openpgp_key_file
358
 
    (mc->cred, pubkeyfilename, seckeyfilename,
359
 
     GNUTLS_OPENPGP_FMT_BASE64);
 
357
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
360
358
  if (ret != GNUTLS_E_SUCCESS) {
361
359
    fprintf(stderr,
362
360
            "Error[%d] while reading the OpenPGP key pair ('%s',"
363
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
361
            " '%s')\n", ret, pubkeyfile, seckeyfile);
364
362
    fprintf(stdout, "The GnuTLS error is: %s\n",
365
363
            safer_gnutls_strerror(ret));
366
364
    goto globalfail;
476
474
    fprintf(stderr, "Binding to interface %s\n", interface);
477
475
  }
478
476
  
479
 
  memset(&to, 0, sizeof(to));
 
477
  memset(&to,0,sizeof(to));     /* Spurious warning */
480
478
  to.in6.sin6_family = AF_INET6;
481
479
  /* It would be nice to have a way to detect if we were passed an
482
480
     IPv4 address here.   Now we assume an IPv6 address. */
489
487
    fprintf(stderr, "Bad address: %s\n", ip);
490
488
    return -1;
491
489
  }
492
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
 
490
  to.in6.sin6_port = htons(port);       /* Spurious warning */
493
491
  
494
492
  to.in6.sin6_scope_id = (uint32_t)if_index;
495
493
  
662
660
                             flags,
663
661
                             void* userdata) {
664
662
  mandos_context *mc = userdata;
665
 
  assert(r);
 
663
  assert(r);                    /* Spurious warning */
666
664
  
667
665
  /* Called whenever a service has been resolved successfully or
668
666
     timed out */
686
684
      }
687
685
      int ret = start_mandos_communication(ip, port, interface, mc);
688
686
      if (ret == 0){
689
 
        avahi_simple_poll_quit(mc->simple_poll);
 
687
        exit(EXIT_SUCCESS);
690
688
      }
691
689
    }
692
690
  }
704
702
                             flags,
705
703
                             void* userdata) {
706
704
  mandos_context *mc = userdata;
707
 
  assert(b);
 
705
  assert(b);                    /* Spurious warning */
708
706
  
709
707
  /* Called whenever a new services becomes available on the LAN or
710
708
     is removed from the LAN */
746
744
 
747
745
/* Combines file name and path and returns the malloced new
748
746
   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){
 
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){
753
752
    return NULL;
754
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';
755
762
  return tmp;
756
763
}
757
764
 
768
775
    gid_t gid;
769
776
    char *connect_to = NULL;
770
777
    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";
 
778
    const char *pubkeyfile = "pubkey.txt";
 
779
    const char *seckeyfile = "seckey.txt";
775
780
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
776
781
                          .dh_bits = 1024, .priority = "SECURE256"};
777
782
    bool gnutls_initalized = false;
829
834
          keydir = arg;
830
835
          break;
831
836
        case 's':
832
 
          seckeyname = arg;
 
837
          seckeyfile = arg;
833
838
          break;
834
839
        case 'p':
835
 
          pubkeyname = arg;
 
840
          pubkeyfile = arg;
836
841
          break;
837
842
        case 129:
838
843
          errno = 0;
847
852
          break;
848
853
        case ARGP_KEY_ARG:
849
854
          argp_usage (state);
850
 
        case ARGP_KEY_END:
851
855
          break;
 
856
          case ARGP_KEY_END:
 
857
            break;
852
858
        default:
853
859
          return ARGP_ERR_UNKNOWN;
854
860
        }
861
867
                           " passwords from mandos server" };
862
868
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
863
869
      if (ret == ARGP_ERR_UNKNOWN){
864
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
870
        fprintf(stderr, "Unkown error while parsing arguments\n");
865
871
        exitcode = EXIT_FAILURE;
866
872
        goto end;
867
873
      }
868
874
    }
869
875
      
870
 
    pubkeyfilename = combinepath(keydir, pubkeyname);
871
 
    if (pubkeyfilename == NULL){
 
876
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
877
    if (pubkeyfile == NULL){
872
878
      perror("combinepath");
873
879
      exitcode = EXIT_FAILURE;
874
880
      goto end;
875
881
    }
876
882
    
877
 
    seckeyfilename = combinepath(keydir, seckeyname);
878
 
    if (seckeyfilename == NULL){
 
883
    seckeyfile = combinepath(keydir, seckeyfile);
 
884
    if (seckeyfile == NULL){
879
885
      perror("combinepath");
880
 
      exitcode = EXIT_FAILURE;
881
886
      goto end;
882
887
    }
883
888
 
884
 
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
889
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
885
890
    if (ret == -1){
886
 
      fprintf(stderr, "init_gnutls_global failed\n");
887
 
      exitcode = EXIT_FAILURE;
 
891
      fprintf(stderr, "init_gnutls_global\n");
888
892
      goto end;
889
893
    } else {
890
894
      gnutls_initalized = true;
891
895
    }
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
 
    
 
896
 
920
897
    uid = getuid();
921
898
    gid = getgid();
922
 
    
 
899
 
923
900
    ret = setuid(uid);
924
901
    if (ret == -1){
925
902
      perror("setuid");
963
940
      goto end;
964
941
    }
965
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
    
966
970
    if (not debug){
967
971
      avahi_set_log_function(empty_log);
968
972
    }
1040
1044
 
1041
1045
    if (mc.simple_poll != NULL)
1042
1046
        avahi_simple_poll_free(mc.simple_poll);
1043
 
    free(pubkeyfilename);
1044
 
    free(seckeyfilename);
 
1047
    free(pubkeyfile);
 
1048
    free(seckeyfile);
1045
1049
 
1046
1050
    if (gnutls_initalized){
1047
1051
      gnutls_certificate_free_credentials(mc.cred);