/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-24 06:17:02 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080824061702-zxrru4r1vxmx4tuq
* Makefile (PREFIX, CONFDIR, MANDIR): Use $(DESTDIR).
  (install-server, install-client): Use "install --directory" instead
                                    of mkdir.

* mandos-keygen: New options --subtype and --sublength.
  (trap): Added semicolons and backslashes.
  (gpg): Added "--enable-dsa2" to all invocations.

* mandos-keygen.xml: Changed single quotes to double quotes for
                     consistency.
  (/refentry/refentryinfo/copyright) Split copyright holders.
  (SYNOPSIS): Added "--subtype", "--sublength", "-s", and "-L".
  (OPTIONS): Document the subtype and sublength options.
  (SECURITY): Also note the "--subtype" and "--sublength" options.

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