32
33
#define _LARGEFILE_SOURCE
 
33
34
#define _FILE_OFFSET_BITS 64
 
35
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
 
 
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
 
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
 
39
                                   stdout, ferror(), sscanf(),
 
39
41
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
42
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
43
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
43
45
#include <stdbool.h>            /* bool, true */
 
44
46
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
 
                                   strerror(), memcpy(), strcpy() */
 
 
47
                                   strerror(), asprintf(), strcpy() */
 
46
48
#include <sys/ioctl.h>          /* ioctl */
 
47
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
48
50
                                   sockaddr_in6, PF_INET6,
 
49
51
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
51
 
#include <inttypes.h>           /* PRIu16 */
 
 
52
                                   uid_t, gid_t, open(), opendir(),
 
 
54
#include <sys/stat.h>           /* open() */
 
52
55
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
53
56
                                   struct in6_addr, inet_pton(),
 
 
58
#include <fcntl.h>              /* open() */
 
 
59
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
 
61
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
55
62
#include <assert.h>             /* assert() */
 
56
63
#include <errno.h>              /* perror(), errno */
 
57
64
#include <time.h>               /* time() */
 
58
65
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
59
66
                                   SIOCSIFFLAGS, if_indextoname(),
 
60
67
                                   if_nametoindex(), IF_NAMESIZE */
 
 
68
#include <netinet/in.h>
 
61
69
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
62
70
                                   getuid(), getgid(), setuid(),
 
64
 
#include <netinet/in.h>
 
65
72
#include <arpa/inet.h>          /* inet_pton(), htons */
 
66
 
#include <iso646.h>             /* not, and */
 
 
73
#include <iso646.h>             /* not, and, or */
 
67
74
#include <argp.h>               /* struct argp_option, error_t, struct
 
68
75
                                   argp_state, struct argp,
 
69
76
                                   argp_parse(), ARGP_KEY_ARG,
 
 
81
88
#include <avahi-common/error.h>
 
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
 
91
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
86
94
                                   init_gnutls_session(),
 
88
 
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
 
96
#include <gnutls/openpgp.h>
 
 
97
                          /* gnutls_certificate_set_openpgp_key_file(),
 
89
98
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
92
 
#include <gpgme.h>              /* All GPGME types, constants and functions
 
 
101
#include <gpgme.h>              /* All GPGME types, constants and
 
94
104
                                   GPGME_PROTOCOL_OpenPGP,
 
97
107
#define BUFFER_SIZE 256
 
 
109
#define PATHDIR "/conf/conf.d/mandos"
 
 
110
#define SECKEY "seckey.txt"
 
 
111
#define PUBKEY "pubkey.txt"
 
99
113
bool debug = false;
 
100
 
static const char *keydir = "/conf/conf.d/mandos";
 
101
114
static const char mandos_protocol_version[] = "1";
 
102
 
const char *argp_program_version = "password-request 1.0";
 
 
115
const char *argp_program_version = "mandos-client " VERSION;
 
103
116
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
105
118
/* Used for passing in values through the Avahi callback functions */
 
 
133
 
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
 
134
 
 * Returns -1 on error
 
136
 
static ssize_t pgp_packet_decrypt (const char *cryptotext,
 
139
 
                                   const char *homedir){
 
140
 
  gpgme_data_t dh_crypto, dh_plain;
 
 
149
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
 
150
                       const char *pubkey, const char *tempdir){
 
142
152
  gpgme_error_t rc;
 
144
 
  size_t plaintext_capacity = 0;
 
145
 
  ssize_t plaintext_length = 0;
 
146
153
  gpgme_engine_info_t engine_info;
 
149
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
 
157
   * Helper function to insert pub and seckey to the enigne keyring.
 
 
159
  bool import_key(const char *filename){
 
 
161
    gpgme_data_t pgp_data;
 
 
163
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
 
169
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
 
 
170
    if(rc != GPG_ERR_NO_ERROR){
 
 
171
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
 
172
              gpgme_strsource(rc), gpgme_strerror(rc));
 
 
176
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
 
177
    if(rc != GPG_ERR_NO_ERROR){
 
 
178
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
 
179
              gpgme_strsource(rc), gpgme_strerror(rc));
 
 
183
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
 
 
187
    gpgme_data_release(pgp_data);
 
 
192
    fprintf(stderr, "Initialize gpgme\n");
 
153
196
  gpgme_check_version(NULL);
 
154
197
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
 
155
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
198
  if(rc != GPG_ERR_NO_ERROR){
 
156
199
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
157
200
            gpgme_strsource(rc), gpgme_strerror(rc));
 
161
 
  /* Set GPGME home directory for the OpenPGP engine only */
 
162
 
  rc = gpgme_get_engine_info (&engine_info);
 
163
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
204
    /* Set GPGME home directory for the OpenPGP engine only */
 
 
205
  rc = gpgme_get_engine_info(&engine_info);
 
 
206
  if(rc != GPG_ERR_NO_ERROR){
 
164
207
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
165
208
            gpgme_strsource(rc), gpgme_strerror(rc));
 
168
211
  while(engine_info != NULL){
 
169
212
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
 
170
213
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
 
171
 
                            engine_info->file_name, homedir);
 
 
214
                            engine_info->file_name, tempdir);
 
174
217
    engine_info = engine_info->next;
 
176
219
  if(engine_info == NULL){
 
177
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
 
 
220
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
 
224
  /* Create new GPGME "context" */
 
 
225
  rc = gpgme_new(&(mc->ctx));
 
 
226
  if(rc != GPG_ERR_NO_ERROR){
 
 
227
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
 
228
            gpgme_strsource(rc), gpgme_strerror(rc));
 
 
232
  if(not import_key(pubkey) or not import_key(seckey)){
 
 
240
 * Decrypt OpenPGP data.
 
 
241
 * Returns -1 on error
 
 
243
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
 
 
244
                                  const char *cryptotext,
 
 
247
  gpgme_data_t dh_crypto, dh_plain;
 
 
250
  size_t plaintext_capacity = 0;
 
 
251
  ssize_t plaintext_length = 0;
 
 
254
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
181
257
  /* Create new GPGME data buffer from memory cryptotext */
 
182
258
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
 
184
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
260
  if(rc != GPG_ERR_NO_ERROR){
 
185
261
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
186
262
            gpgme_strsource(rc), gpgme_strerror(rc));
 
 
190
266
  /* Create new empty GPGME data buffer for the plaintext */
 
191
267
  rc = gpgme_data_new(&dh_plain);
 
192
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
268
  if(rc != GPG_ERR_NO_ERROR){
 
193
269
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
 
194
270
            gpgme_strsource(rc), gpgme_strerror(rc));
 
195
271
    gpgme_data_release(dh_crypto);
 
199
 
  /* Create new GPGME "context" */
 
200
 
  rc = gpgme_new(&ctx);
 
201
 
  if (rc != GPG_ERR_NO_ERROR){
 
202
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
203
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
204
 
    plaintext_length = -1;
 
208
275
  /* Decrypt data from the cryptotext data buffer to the plaintext
 
210
 
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
 
211
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
277
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
 
278
  if(rc != GPG_ERR_NO_ERROR){
 
212
279
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
213
280
            gpgme_strsource(rc), gpgme_strerror(rc));
 
214
281
    plaintext_length = -1;
 
 
283
      gpgme_decrypt_result_t result;
 
 
284
      result = gpgme_op_decrypt_result(mc->ctx);
 
 
286
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
 
288
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
 
289
                result->unsupported_algorithm);
 
 
290
        fprintf(stderr, "Wrong key usage: %u\n",
 
 
291
                result->wrong_key_usage);
 
 
292
        if(result->file_name != NULL){
 
 
293
          fprintf(stderr, "File name: %s\n", result->file_name);
 
 
295
        gpgme_recipient_t recipient;
 
 
296
        recipient = result->recipients;
 
 
298
          while(recipient != NULL){
 
 
299
            fprintf(stderr, "Public key algorithm: %s\n",
 
 
300
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
 
301
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
 
302
            fprintf(stderr, "Secret key available: %s\n",
 
 
303
                    recipient->status == GPG_ERR_NO_SECKEY
 
 
305
            recipient = recipient->next;
 
215
310
    goto decrypt_end;
 
 
219
314
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
223
 
    gpgme_decrypt_result_t result;
 
224
 
    result = gpgme_op_decrypt_result(ctx);
 
226
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
228
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
 
229
 
              result->unsupported_algorithm);
 
230
 
      fprintf(stderr, "Wrong key usage: %u\n",
 
231
 
              result->wrong_key_usage);
 
232
 
      if(result->file_name != NULL){
 
233
 
        fprintf(stderr, "File name: %s\n", result->file_name);
 
235
 
      gpgme_recipient_t recipient;
 
236
 
      recipient = result->recipients;
 
238
 
        while(recipient != NULL){
 
239
 
          fprintf(stderr, "Public key algorithm: %s\n",
 
240
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
241
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
242
 
          fprintf(stderr, "Secret key available: %s\n",
 
243
 
                  recipient->status == GPG_ERR_NO_SECKEY
 
245
 
          recipient = recipient->next;
 
251
317
  /* Seek back to the beginning of the GPGME plaintext data buffer */
 
252
 
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
 
253
 
    perror("pgpme_data_seek");
 
 
318
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
 
 
319
    perror("gpgme_data_seek");
 
254
320
    plaintext_length = -1;
 
255
321
    goto decrypt_end;
 
 
339
406
  /* OpenPGP credentials */
 
340
407
  gnutls_certificate_allocate_credentials(&mc->cred);
 
341
 
  if (ret != GNUTLS_E_SUCCESS){
 
342
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
343
 
             safer_gnutls_strerror(ret));
 
344
 
    gnutls_global_deinit ();
 
 
408
  if(ret != GNUTLS_E_SUCCESS){
 
 
409
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
 
413
            safer_gnutls_strerror(ret));
 
 
414
    gnutls_global_deinit();
 
349
 
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
 
350
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
 
419
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
 
420
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
354
424
  ret = gnutls_certificate_set_openpgp_key_file
 
355
 
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
356
 
  if (ret != GNUTLS_E_SUCCESS) {
 
 
425
    (mc->cred, pubkeyfilename, seckeyfilename,
 
 
426
     GNUTLS_OPENPGP_FMT_BASE64);
 
 
427
  if(ret != GNUTLS_E_SUCCESS) {
 
358
429
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
359
 
            " '%s')\n", ret, pubkeyfile, seckeyfile);
 
360
 
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
 
430
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
 
431
    fprintf(stderr, "The GnuTLS error is: %s\n",
 
361
432
            safer_gnutls_strerror(ret));
 
365
436
  /* GnuTLS server initialization */
 
366
437
  ret = gnutls_dh_params_init(&mc->dh_params);
 
367
 
  if (ret != GNUTLS_E_SUCCESS) {
 
368
 
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
 
369
 
             " %s\n", safer_gnutls_strerror(ret));
 
 
438
  if(ret != GNUTLS_E_SUCCESS) {
 
 
439
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
 
440
            " %s\n", safer_gnutls_strerror(ret));
 
372
443
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
373
 
  if (ret != GNUTLS_E_SUCCESS) {
 
374
 
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
 
375
 
             safer_gnutls_strerror(ret));
 
 
444
  if(ret != GNUTLS_E_SUCCESS) {
 
 
445
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
 
446
            safer_gnutls_strerror(ret));
 
379
450
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
385
456
  gnutls_certificate_free_credentials(mc->cred);
 
386
457
  gnutls_global_deinit();
 
 
458
  gnutls_dh_params_deinit(mc->dh_params);
 
391
462
static int init_gnutls_session(mandos_context *mc,
 
 
403
474
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
404
 
    if (ret != GNUTLS_E_SUCCESS) {
 
 
475
    if(ret != GNUTLS_E_SUCCESS) {
 
405
476
      fprintf(stderr, "Syntax error at: %s\n", err);
 
406
477
      fprintf(stderr, "GnuTLS error: %s\n",
 
407
478
              safer_gnutls_strerror(ret));
 
408
 
      gnutls_deinit (*session);
 
 
479
      gnutls_deinit(*session);
 
413
484
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
415
 
  if (ret != GNUTLS_E_SUCCESS) {
 
 
486
  if(ret != GNUTLS_E_SUCCESS) {
 
416
487
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
 
417
488
            safer_gnutls_strerror(ret));
 
418
 
    gnutls_deinit (*session);
 
 
489
    gnutls_deinit(*session);
 
422
493
  /* ignore client certificate if any. */
 
423
 
  gnutls_certificate_server_set_request (*session,
 
 
494
  gnutls_certificate_server_set_request(*session,
 
426
 
  gnutls_dh_set_prime_bits (*session, mc->dh_bits);
 
 
497
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
 
558
632
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
563
637
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
564
638
                                   buffer_capacity);
 
565
 
    if (buffer_capacity == 0){
 
 
639
    if(buffer_capacity == 0){
 
566
640
      perror("adjustbuffer");
 
571
 
    ret = gnutls_record_recv(session, buffer+buffer_length,
 
 
645
    sret = gnutls_record_recv(session, buffer+buffer_length,
 
578
652
      case GNUTLS_E_INTERRUPTED:
 
579
653
      case GNUTLS_E_AGAIN:
 
581
655
      case GNUTLS_E_REHANDSHAKE:
 
583
 
          ret = gnutls_handshake (session);
 
 
657
          ret = gnutls_handshake(session);
 
584
658
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
586
660
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
 
605
679
    fprintf(stderr, "Closing TLS session\n");
 
608
 
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
 
682
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
610
 
  if (buffer_length > 0){
 
611
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
 
 
684
  if(buffer_length > 0){
 
 
685
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
615
 
    if (decrypted_buffer_size >= 0){
 
 
688
    if(decrypted_buffer_size >= 0){
 
617
690
      while(written < (size_t) decrypted_buffer_size){
 
618
 
        ret = (int)fwrite (decrypted_buffer + written, 1,
 
619
 
                           (size_t)decrypted_buffer_size - written,
 
 
691
        ret = (int)fwrite(decrypted_buffer + written, 1,
 
 
692
                          (size_t)decrypted_buffer_size - written,
 
621
694
        if(ret == 0 and ferror(stdout)){
 
623
696
            fprintf(stderr, "Error writing encrypted data: %s\n",
 
 
677
755
      avahi_address_snprint(ip, sizeof(ip), address);
 
679
757
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
680
 
                PRIu16 ") on port %d\n", name, host_name, ip,
 
 
758
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
 
759
                ip, (intmax_t)interface, port);
 
683
761
      int ret = start_mandos_communication(ip, port, interface, mc);
 
685
763
        avahi_simple_poll_quit(mc->simple_poll);
 
 
743
 
/* Combines file name and path and returns the malloced new
 
744
 
   string. some sane checks could/should be added */
 
745
 
static const char *combinepath(const char *first, const char *second){
 
746
 
  size_t f_len = strlen(first);
 
747
 
  size_t s_len = strlen(second);
 
748
 
  char *tmp = malloc(f_len + s_len + 2);
 
753
 
    memcpy(tmp, first, f_len);  /* Spurious warning */
 
757
 
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
 
759
 
  tmp[f_len + 1 + s_len] = '\0';
 
764
821
int main(int argc, char *argv[]){
 
765
822
    AvahiSServiceBrowser *sb = NULL;
 
768
827
    int exitcode = EXIT_SUCCESS;
 
769
828
    const char *interface = "eth0";
 
770
829
    struct ifreq network;
 
 
774
833
    char *connect_to = NULL;
 
 
834
    char tempdir[] = "/tmp/mandosXXXXXX";
 
775
835
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
776
 
    const char *pubkeyfile = "pubkey.txt";
 
777
 
    const char *seckeyfile = "seckey.txt";
 
 
836
    const char *seckey = PATHDIR "/" SECKEY;
 
 
837
    const char *pubkey = PATHDIR "/" PUBKEY;
 
778
839
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
779
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
780
 
    bool gnutls_initalized = false;
 
 
840
                          .dh_bits = 1024, .priority = "SECURE256"
 
 
841
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
 
842
    bool gnutls_initialized = false;
 
 
843
    bool gpgme_initialized = false;
 
783
846
      struct argp_option options[] = {
 
784
847
        { .name = "debug", .key = 128,
 
785
848
          .doc = "Debug mode", .group = 3 },
 
786
849
        { .name = "connect", .key = 'c',
 
788
 
          .doc = "Connect directly to a sepcified mandos server",
 
 
850
          .arg = "ADDRESS:PORT",
 
 
851
          .doc = "Connect directly to a specific Mandos server",
 
790
853
        { .name = "interface", .key = 'i',
 
792
 
          .doc = "Interface that Avahi will conntect through",
 
794
 
        { .name = "keydir", .key = 'd',
 
796
 
          .doc = "Directory where the openpgp keyring is",
 
 
855
          .doc = "Interface that will be used to search for Mandos"
 
798
858
        { .name = "seckey", .key = 's',
 
800
 
          .doc = "Secret openpgp key for gnutls authentication",
 
 
860
          .doc = "OpenPGP secret key file base name",
 
802
862
        { .name = "pubkey", .key = 'p',
 
804
 
          .doc = "Public openpgp key for gnutls authentication",
 
 
864
          .doc = "OpenPGP public key file base name",
 
806
866
        { .name = "dh-bits", .key = 129,
 
808
 
          .doc = "dh-bits to use in gnutls communication",
 
 
868
          .doc = "Bit length of the prime number used in the"
 
 
869
          " Diffie-Hellman key exchange",
 
810
871
        { .name = "priority", .key = 130,
 
812
 
          .doc = "GNUTLS priority", .group = 1 },
 
 
873
          .doc = "GnuTLS priority string for the TLS handshake",
 
817
 
      error_t parse_opt (int key, char *arg,
 
818
 
                         struct argp_state *state) {
 
819
 
        /* Get the INPUT argument from `argp_parse', which we know is
 
820
 
           a pointer to our plugin list pointer. */
 
 
878
      error_t parse_opt(int key, char *arg,
 
 
879
                        struct argp_state *state) {
 
 
881
        case 128:               /* --debug */
 
 
884
        case 'c':               /* --connect */
 
826
885
          connect_to = arg;
 
 
887
        case 'i':               /* --interface */
 
842
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
 
890
        case 's':               /* --seckey */
 
 
893
        case 'p':               /* --pubkey */
 
 
896
        case 129:               /* --dh-bits */
 
 
897
          ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
 
898
          if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
 
899
             or arg[numchars] != '\0'){
 
 
900
            fprintf(stderr, "Bad number of DH bits\n");
 
845
901
            exit(EXIT_FAILURE);
 
 
903
          mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
 
905
        case 130:               /* --priority */
 
849
906
          mc.priority = arg;
 
851
908
        case ARGP_KEY_ARG:
 
853
910
        case ARGP_KEY_END:
 
 
861
918
      struct argp argp = { .options = options, .parser = parse_opt,
 
863
920
                           .doc = "Mandos client -- Get and decrypt"
 
864
 
                           " passwords from mandos server" };
 
865
 
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
866
 
      if (ret == ARGP_ERR_UNKNOWN){
 
 
921
                           " passwords from a Mandos server" };
 
 
922
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
 
923
      if(ret == ARGP_ERR_UNKNOWN){
 
867
924
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
868
925
        exitcode = EXIT_FAILURE;
 
873
 
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
874
 
    if (pubkeyfile == NULL){
 
875
 
      perror("combinepath");
 
876
 
      exitcode = EXIT_FAILURE;
 
880
 
    seckeyfile = combinepath(keydir, seckeyfile);
 
881
 
    if (seckeyfile == NULL){
 
882
 
      perror("combinepath");
 
883
 
      exitcode = EXIT_FAILURE;
 
887
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
 
889
 
      fprintf(stderr, "init_gnutls_global failed\n");
 
890
 
      exitcode = EXIT_FAILURE;
 
893
 
      gnutls_initalized = true;
 
896
930
    /* If the interface is down, bring it up */
 
 
 
954
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
926
963
    ret = setuid(uid);
 
928
965
      perror("setuid");
 
933
970
      perror("setgid");
 
 
973
    ret = init_gnutls_global(&mc, pubkey, seckey);
 
 
975
      fprintf(stderr, "init_gnutls_global failed\n");
 
 
976
      exitcode = EXIT_FAILURE;
 
 
979
      gnutls_initialized = true;
 
 
982
    if(mkdtemp(tempdir) == NULL){
 
 
988
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
 
989
      fprintf(stderr, "init_gpgme failed\n");
 
 
990
      exitcode = EXIT_FAILURE;
 
 
993
      gpgme_initialized = true;
 
936
996
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
937
997
    if(if_index == 0){
 
938
998
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
 
1023
1085
    /* Run the main loop */
 
1026
1088
      fprintf(stderr, "Starting Avahi loop search\n");
 
1029
1091
    avahi_simple_poll_loop(mc.simple_poll);
 
1034
1096
      fprintf(stderr, "%s exiting\n", argv[0]);
 
1037
1099
    /* Cleanup things */
 
1039
1101
        avahi_s_service_browser_free(sb);
 
1041
 
    if (mc.server != NULL)
 
 
1103
    if(mc.server != NULL)
 
1042
1104
        avahi_server_free(mc.server);
 
1044
 
    if (mc.simple_poll != NULL)
 
 
1106
    if(mc.simple_poll != NULL)
 
1045
1107
        avahi_simple_poll_free(mc.simple_poll);
 
1049
 
    if (gnutls_initalized){
 
 
1109
    if(gnutls_initialized){
 
1050
1110
      gnutls_certificate_free_credentials(mc.cred);
 
1051
 
      gnutls_global_deinit ();
 
 
1111
      gnutls_global_deinit();
 
 
1112
      gnutls_dh_params_deinit(mc.dh_params);
 
 
1115
    if(gpgme_initialized){
 
 
1116
      gpgme_release(mc.ctx);
 
 
1119
    /* Removes the temp directory used by GPGME */
 
 
1120
    if(tempdir[0] != '\0'){
 
 
1122
      struct dirent *direntry;
 
 
1123
      d = opendir(tempdir);
 
 
1125
        if(errno != ENOENT){
 
 
1130
          direntry = readdir(d);
 
 
1131
          if(direntry == NULL){
 
 
1134
          /* Skip "." and ".." */
 
 
1135
          if(direntry->d_name[0] == '.'
 
 
1136
             and (direntry->d_name[1] == '\0'
 
 
1137
                  or (direntry->d_name[1] == '.'
 
 
1138
                      and direntry->d_name[2] == '\0'))){
 
 
1141
          char *fullname = NULL;
 
 
1142
          ret = asprintf(&fullname, "%s/%s", tempdir,
 
 
1148
          ret = remove(fullname);
 
 
1150
            fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
 
1157
      ret = rmdir(tempdir);
 
 
1158
      if(ret == -1 and errno != ENOENT){
 
1054
1163
    return exitcode;