/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-10 02:01:04 UTC
  • mfrom: (24.1.38 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080810020104-s49hp25rfx8gmw2e
* mandos (main): Use program name in --version output.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
36
 
37
 
#include <stdio.h>
38
 
#include <assert.h>
39
 
#include <stdlib.h>
40
 
#include <time.h>
41
 
#include <net/if.h>             /* if_nametoindex */
42
 
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
43
 
                                   SIOCSIFFLAGS */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
38
                                   ferror() */
 
39
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
42
                                   srand() */
 
43
#include <stdbool.h>            /* bool, true */
 
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
                                   strerror(), memcpy(), strcpy() */
 
46
#include <sys/ioctl.h>          /* ioctl */
 
47
#include <net/if.h>             /* ifreq, SIOCGIFFLAGS, SIOCSIFFLAGS,
 
48
                                   IFF_UP */
 
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
50
                                   sockaddr_in6, PF_INET6,
 
51
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
52
                                   uid_t, gid_t */
 
53
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
54
                                   struct in6_addr, inet_pton(),
 
55
                                   connect() */
 
56
#include <assert.h>             /* assert() */
 
57
#include <errno.h>              /* perror(), errno */
 
58
#include <time.h>               /* time() */
44
59
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
45
 
                                   SIOCSIFFLAGS */
 
60
                                   SIOCSIFFLAGS, if_indextoname(),
 
61
                                   if_nametoindex(), IF_NAMESIZE */
 
62
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
63
                                   getuid(), getgid(), setuid(),
 
64
                                   setgid() */
 
65
#include <netinet/in.h>
 
66
#include <arpa/inet.h>          /* inet_pton(), htons */
 
67
#include <iso646.h>             /* not, and */
 
68
#include <argp.h>               /* struct argp_option, error_t, struct
 
69
                                   argp_state, struct argp,
 
70
                                   argp_parse(), ARGP_KEY_ARG,
 
71
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
46
72
 
 
73
/* Avahi */
 
74
/* All Avahi types, constants and functions
 
75
 Avahi*, avahi_*,
 
76
 AVAHI_* */
47
77
#include <avahi-core/core.h>
48
78
#include <avahi-core/lookup.h>
49
79
#include <avahi-core/log.h>
51
81
#include <avahi-common/malloc.h>
52
82
#include <avahi-common/error.h>
53
83
 
54
 
/* Mandos client part */
55
 
#include <sys/types.h>          /* socket(), inet_pton() */
56
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
57
 
                                   struct in6_addr, inet_pton() */
58
 
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
59
 
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
 
84
/* GnuTLS */
 
85
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
86
                                   gnutls_*
 
87
                                   init_gnutls_session(),
 
88
                                   GNUTLS_* */
 
89
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
90
                                   GNUTLS_OPENPGP_FMT_BASE64 */
60
91
 
61
 
#include <unistd.h>             /* close() */
62
 
#include <netinet/in.h>
63
 
#include <stdbool.h>            /* true */
64
 
#include <string.h>             /* memset */
65
 
#include <arpa/inet.h>          /* inet_pton() */
66
 
#include <iso646.h>             /* not */
67
 
#include <net/if.h>             /* IF_NAMESIZE */
68
 
#include <argp.h>               /* struct argp_option,
69
 
                                   struct argp_state, struct argp,
70
 
                                   argp_parse() */
71
92
/* GPGME */
72
 
#include <errno.h>              /* perror() */
73
 
#include <gpgme.h>
 
93
#include <gpgme.h>              /* All GPGME types, constants and functions
 
94
                                   gpgme_*
 
95
                                   GPGME_PROTOCOL_OpenPGP,
 
96
                                   GPG_ERR_NO_* */
74
97
 
75
98
#define BUFFER_SIZE 256
76
99
 
77
100
bool debug = false;
78
101
static const char *keydir = "/conf/conf.d/mandos";
79
102
static const char mandos_protocol_version[] = "1";
80
 
const char *argp_program_version = "mandosclient 0.9";
 
103
const char *argp_program_version = "password-request 1.0";
81
104
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
82
105
 
83
106
/* Used for passing in values through the Avahi callback functions */
298
321
  if(debug){
299
322
    fprintf(stderr, "Initializing GnuTLS\n");
300
323
  }
301
 
 
302
 
  if ((ret = gnutls_global_init ())
303
 
      != GNUTLS_E_SUCCESS) {
 
324
  
 
325
  ret = gnutls_global_init();
 
326
  if (ret != GNUTLS_E_SUCCESS) {
304
327
    fprintf (stderr, "GnuTLS global_init: %s\n",
305
328
             safer_gnutls_strerror(ret));
306
329
    return -1;
315
338
  }
316
339
  
317
340
  /* OpenPGP credentials */
318
 
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
319
 
      != GNUTLS_E_SUCCESS) {
 
341
  gnutls_certificate_allocate_credentials(&mc->cred);
 
342
  if (ret != GNUTLS_E_SUCCESS){
320
343
    fprintf (stderr, "GnuTLS memory error: %s\n",
321
344
             safer_gnutls_strerror(ret));
 
345
    gnutls_global_deinit ();
322
346
    return -1;
323
347
  }
324
348
  
336
360
            " '%s')\n", ret, pubkeyfile, seckeyfile);
337
361
    fprintf(stdout, "The GnuTLS error is: %s\n",
338
362
            safer_gnutls_strerror(ret));
339
 
    return -1;
 
363
    goto globalfail;
340
364
  }
341
365
  
342
366
  /* GnuTLS server initialization */
344
368
  if (ret != GNUTLS_E_SUCCESS) {
345
369
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
346
370
             " %s\n", safer_gnutls_strerror(ret));
347
 
    return -1;
 
371
    goto globalfail;
348
372
  }
349
373
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
350
374
  if (ret != GNUTLS_E_SUCCESS) {
351
375
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
352
376
             safer_gnutls_strerror(ret));
353
 
    return -1;
 
377
    goto globalfail;
354
378
  }
355
379
  
356
380
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
357
381
 
358
382
  return 0;
 
383
 
 
384
 globalfail:
 
385
 
 
386
  gnutls_certificate_free_credentials(mc->cred);
 
387
  gnutls_global_deinit();
 
388
  return -1;
 
389
 
359
390
}
360
391
 
361
392
static int init_gnutls_session(mandos_context *mc,
375
406
      fprintf(stderr, "Syntax error at: %s\n", err);
376
407
      fprintf(stderr, "GnuTLS error: %s\n",
377
408
              safer_gnutls_strerror(ret));
 
409
      gnutls_deinit (*session);
378
410
      return -1;
379
411
    }
380
412
  }
384
416
  if (ret != GNUTLS_E_SUCCESS) {
385
417
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
386
418
            safer_gnutls_strerror(ret));
 
419
    gnutls_deinit (*session);
387
420
    return -1;
388
421
  }
389
422
  
505
538
  }
506
539
  
507
540
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
508
 
  
509
 
  ret = gnutls_handshake (session);
 
541
 
 
542
  do{
 
543
    ret = gnutls_handshake (session);
 
544
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
510
545
  
511
546
  if (ret != GNUTLS_E_SUCCESS){
512
547
    if(debug){
544
579
      case GNUTLS_E_AGAIN:
545
580
        break;
546
581
      case GNUTLS_E_REHANDSHAKE:
547
 
        ret = gnutls_handshake (session);
 
582
        do{
 
583
          ret = gnutls_handshake (session);
 
584
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
548
585
        if (ret < 0){
549
586
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
550
587
          gnutls_perror (ret);
603
640
  free(buffer);
604
641
  close(tcp_sd);
605
642
  gnutls_deinit (session);
606
 
  gnutls_certificate_free_credentials (mc->cred);
607
 
  gnutls_global_deinit ();
608
643
  return retval;
609
644
}
610
645
 
741
776
    const char *seckeyfile = "seckey.txt";
742
777
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
743
778
                          .dh_bits = 1024, .priority = "SECURE256"};
 
779
    bool gnutls_initalized = false;
744
780
    
745
781
    {
746
782
      struct argp_option options[] = {
826
862
                           .args_doc = "",
827
863
                           .doc = "Mandos client -- Get and decrypt"
828
864
                           " passwords from mandos server" };
829
 
      argp_parse (&argp, argc, argv, 0, 0, NULL);
 
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
866
      if (ret == ARGP_ERR_UNKNOWN){
 
867
        fprintf(stderr, "Unkown error while parsing arguments\n");
 
868
        exitcode = EXIT_FAILURE;
 
869
        goto end;
 
870
      }
830
871
    }
831
872
      
832
873
    pubkeyfile = combinepath(keydir, pubkeyfile);
846
887
    if (ret == -1){
847
888
      fprintf(stderr, "init_gnutls_global\n");
848
889
      goto end;
 
890
    } else {
 
891
      gnutls_initalized = true;
849
892
    }
850
893
 
851
894
    uid = getuid();
1000
1043
        avahi_simple_poll_free(mc.simple_poll);
1001
1044
    free(pubkeyfile);
1002
1045
    free(seckeyfile);
 
1046
 
 
1047
    if (gnutls_initalized){
 
1048
      gnutls_certificate_free_credentials(mc.cred);
 
1049
      gnutls_global_deinit ();
 
1050
    }
1003
1051
    
1004
1052
    return exitcode;
1005
1053
}