63
65
#include <arpa/inet.h> /* inet_pton() */
64
66
#include <iso646.h> /* not */
65
67
#include <net/if.h> /* IF_NAMESIZE */
68
#include <argp.h> /* struct argp_option,
69
struct argp_state, struct argp,
68
72
#include <errno.h> /* perror() */
74
75
#define BUFFER_SIZE 256
76
78
static const char *keydir = "/conf/conf.d/mandos";
77
static const char *pubkeyfile = "pubkey.txt";
78
static const char *seckeyfile = "seckey.txt";
82
/* Used for passing in values through all the callback functions */
79
static const char mandos_protocol_version[] = "1";
80
const char *argp_program_version = "mandosclient 0.9";
81
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
83
/* Used for passing in values through the Avahi callback functions */
84
85
AvahiSimplePoll *simple_poll;
85
86
AvahiServer *server;
86
87
gnutls_certificate_credentials_t cred;
87
88
unsigned int dh_bits;
89
gnutls_dh_params_t dh_params;
88
90
const char *priority;
94
* Make room in "buffer" for at least BUFFER_SIZE additional bytes.
95
* "buffer_capacity" is how much is currently allocated,
96
* "buffer_length" is how much is already used.
98
size_t adjustbuffer(char **buffer, size_t buffer_length,
99
size_t buffer_capacity){
100
if (buffer_length + BUFFER_SIZE > buffer_capacity){
101
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
105
buffer_capacity += BUFFER_SIZE;
107
return buffer_capacity;
92
111
* Decrypt OpenPGP data using keyrings in HOMEDIR.
93
112
* Returns -1 on error
319
337
" '%s')\n", ret, pubkeyfile, seckeyfile);
320
338
fprintf(stdout, "The GnuTLS error is: %s\n",
321
339
safer_gnutls_strerror(ret));
325
343
/* GnuTLS server initialization */
326
ret = gnutls_dh_params_init(dh_params);
344
ret = gnutls_dh_params_init(&mc->dh_params);
327
345
if (ret != GNUTLS_E_SUCCESS) {
328
346
fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
329
347
" %s\n", safer_gnutls_strerror(ret));
332
ret = gnutls_dh_params_generate2(*dh_params, mc->dh_bits);
350
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
333
351
if (ret != GNUTLS_E_SUCCESS) {
334
352
fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
335
353
safer_gnutls_strerror(ret));
339
gnutls_certificate_set_dh_params(mc->cred, *dh_params);
357
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
363
gnutls_certificate_free_credentials (mc->cred);
364
gnutls_global_deinit ();
369
static int init_gnutls_session(mandos_context *mc,
370
gnutls_session_t *session){
341
372
/* GnuTLS session creation */
342
373
ret = gnutls_init(session, GNUTLS_SERVER);
343
374
if (ret != GNUTLS_E_SUCCESS){
431
463
fprintf(stderr, "Bad address: %s\n", ip);
434
to.sin6_port = htons(port); /* Spurious warning */
466
to.in6.sin6_port = htons(port); /* Spurious warning */
436
to.sin6_scope_id = (uint32_t)if_index;
468
to.in6.sin6_scope_id = (uint32_t)if_index;
439
471
fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
440
472
char addrstr[INET6_ADDRSTRLEN] = "";
441
if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
473
if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
442
474
sizeof(addrstr)) == NULL){
443
475
perror("inet_ntop");
688
741
const char *interface = "eth0";
689
742
struct ifreq network;
691
746
char *connect_to = NULL;
692
747
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
748
const char *pubkeyfile = "pubkey.txt";
749
const char *seckeyfile = "seckey.txt";
693
750
mandos_context mc = { .simple_poll = NULL, .server = NULL,
694
751
.dh_bits = 1024, .priority = "SECURE256"};
752
bool gnutls_initalized = false;
697
/* Temporary int to get the address of for getopt_long */
698
int debug_int = debug ? 1 : 0;
700
struct option long_options[] = {
701
{"debug", no_argument, &debug_int, 1},
702
{"connect", required_argument, NULL, 'c'},
703
{"interface", required_argument, NULL, 'i'},
704
{"keydir", required_argument, NULL, 'd'},
705
{"seckey", required_argument, NULL, 's'},
706
{"pubkey", required_argument, NULL, 'p'},
707
{"dh-bits", required_argument, NULL, 'D'},
708
{"priority", required_argument, NULL, 'P'},
711
int option_index = 0;
712
ret = getopt_long (argc, argv, "i:", long_options,
755
struct argp_option options[] = {
756
{ .name = "debug", .key = 128,
757
.doc = "Debug mode", .group = 3 },
758
{ .name = "connect", .key = 'c',
760
.doc = "Connect directly to a sepcified mandos server",
762
{ .name = "interface", .key = 'i',
764
.doc = "Interface that Avahi will conntect through",
766
{ .name = "keydir", .key = 'd',
768
.doc = "Directory where the openpgp keyring is",
770
{ .name = "seckey", .key = 's',
772
.doc = "Secret openpgp key for gnutls authentication",
774
{ .name = "pubkey", .key = 'p',
776
.doc = "Public openpgp key for gnutls authentication",
778
{ .name = "dh-bits", .key = 129,
780
.doc = "dh-bits to use in gnutls communication",
782
{ .name = "priority", .key = 130,
784
.doc = "GNUTLS priority", .group = 1 },
789
error_t parse_opt (int key, char *arg,
790
struct argp_state *state) {
791
/* Get the INPUT argument from `argp_parse', which we know is
792
a pointer to our plugin list pointer. */
739
mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
814
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
741
816
perror("strtol");
742
817
exit(EXIT_FAILURE);
746
mc.priority = optarg;
750
/* getopt_long() has already printed a message about the
751
unrcognized option, so just exit. */
829
return ARGP_ERR_UNKNOWN;
755
/* Set the global debug flag from the temporary int */
756
debug = debug_int ? true : false;
834
struct argp argp = { .options = options, .parser = parse_opt,
836
.doc = "Mandos client -- Get and decrypt"
837
" passwords from mandos server" };
838
argp_parse (&argp, argc, argv, 0, 0, NULL);
759
841
pubkeyfile = combinepath(keydir, pubkeyfile);
760
842
if (pubkeyfile == NULL){
761
843
perror("combinepath");