/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/mandos-client.c

* plugins.d/mandos-client.c (main): Take down network interface on
                                    exit if it was brought up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
 
33
#ifndef _LARGEFILE_SOURCE
33
34
#define _LARGEFILE_SOURCE
 
35
#endif
 
36
#ifndef _FILE_OFFSET_BITS
34
37
#define _FILE_OFFSET_BITS 64
 
38
#endif
35
39
 
36
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
37
41
 
38
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
39
 
                                   stdout, ferror(), sscanf */
 
43
                                   stdout, ferror(), remove() */
40
44
#include <stdint.h>             /* uint16_t, uint32_t */
41
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
42
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
43
 
                                   srand() */
44
 
#include <stdbool.h>            /* bool, true */
 
47
                                   srand(), strtof() */
 
48
#include <stdbool.h>            /* bool, false, true */
45
49
#include <string.h>             /* memset(), strcmp(), strlen(),
46
50
                                   strerror(), asprintf(), strcpy() */
47
 
#include <sys/ioctl.h>          /* ioctl */
 
51
#include <sys/ioctl.h>          /* ioctl */
48
52
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
49
53
                                   sockaddr_in6, PF_INET6,
50
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
51
 
                                   uid_t, gid_t, open(), opendir(),
52
 
                                   DIR */
 
54
                                   SOCK_STREAM, uid_t, gid_t, open(),
 
55
                                   opendir(), DIR */
53
56
#include <sys/stat.h>           /* open() */
54
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
55
 
                                   struct in6_addr, inet_pton(),
56
 
                                   connect() */
 
58
                                   inet_pton(), connect() */
57
59
#include <fcntl.h>              /* open() */
58
60
#include <dirent.h>             /* opendir(), struct dirent, readdir()
59
61
                                 */
60
 
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
 
63
                                   strtoimax() */
61
64
#include <assert.h>             /* assert() */
62
65
#include <errno.h>              /* perror(), errno */
63
 
#include <time.h>               /* time(), nanosleep() */
 
66
#include <time.h>               /* nanosleep(), time() */
64
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
65
68
                                   SIOCSIFFLAGS, if_indextoname(),
66
69
                                   if_nametoindex(), IF_NAMESIZE */
67
 
#include <netinet/in.h>
 
70
#include <netinet/in.h>         /* IN6_IS_ADDR_LINKLOCAL,
 
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
 
72
                                */
68
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
69
74
                                   getuid(), getgid(), setuid(),
70
75
                                   setgid() */
71
76
#include <arpa/inet.h>          /* inet_pton(), htons */
72
 
#include <iso646.h>             /* not, and, or */
 
77
#include <iso646.h>             /* not, or, and */
73
78
#include <argp.h>               /* struct argp_option, error_t, struct
74
79
                                   argp_state, struct argp,
75
80
                                   argp_parse(), ARGP_KEY_ARG,
76
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
 
83
                                   sigaction(), SIGTERM, sigaction,
 
84
                                   sig_atomic_t */
 
85
 
 
86
#ifdef __linux__
77
87
#include <sys/klog.h>           /* klogctl() */
 
88
#endif  /* __linux__ */
78
89
 
79
90
/* Avahi */
80
91
/* All Avahi types, constants and functions
126
137
  gpgme_ctx_t ctx;
127
138
} mandos_context;
128
139
 
 
140
/* global context so signal handler can reach it*/
 
141
mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
142
                      .dh_bits = 1024, .priority = "SECURE256"
 
143
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
144
 
129
145
/*
130
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
131
 
 * "buffer_capacity" is how much is currently allocated,
 
146
 * Make additional room in "buffer" for at least BUFFER_SIZE more
 
147
 * bytes. "buffer_capacity" is how much is currently allocated,
132
148
 * "buffer_length" is how much is already used.
133
149
 */
134
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
150
size_t incbuffer(char **buffer, size_t buffer_length,
135
151
                  size_t buffer_capacity){
136
152
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
137
153
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
146
162
/* 
147
163
 * Initialize GPGME.
148
164
 */
149
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
165
static bool init_gpgme(const char *seckey,
150
166
                       const char *pubkey, const char *tempdir){
151
167
  int ret;
152
168
  gpgme_error_t rc;
154
170
  
155
171
  
156
172
  /*
157
 
   * Helper function to insert pub and seckey to the enigne keyring.
 
173
   * Helper function to insert pub and seckey to the engine keyring.
158
174
   */
159
175
  bool import_key(const char *filename){
160
176
    int fd;
173
189
      return false;
174
190
    }
175
191
    
176
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
192
    rc = gpgme_op_import(mc.ctx, pgp_data);
177
193
    if(rc != GPG_ERR_NO_ERROR){
178
194
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
179
195
              gpgme_strsource(rc), gpgme_strerror(rc));
189
205
  }
190
206
  
191
207
  if(debug){
192
 
    fprintf(stderr, "Initialize gpgme\n");
 
208
    fprintf(stderr, "Initializing GPGME\n");
193
209
  }
194
210
  
195
211
  /* Init GPGME */
222
238
  }
223
239
  
224
240
  /* Create new GPGME "context" */
225
 
  rc = gpgme_new(&(mc->ctx));
 
241
  rc = gpgme_new(&(mc.ctx));
226
242
  if(rc != GPG_ERR_NO_ERROR){
227
243
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
228
244
            gpgme_strsource(rc), gpgme_strerror(rc));
240
256
 * Decrypt OpenPGP data.
241
257
 * Returns -1 on error
242
258
 */
243
 
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
244
 
                                  const char *cryptotext,
 
259
static ssize_t pgp_packet_decrypt(const char *cryptotext,
245
260
                                  size_t crypto_size,
246
261
                                  char **plaintext){
247
262
  gpgme_data_t dh_crypto, dh_plain;
274
289
  
275
290
  /* Decrypt data from the cryptotext data buffer to the plaintext
276
291
     data buffer */
277
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
292
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
278
293
  if(rc != GPG_ERR_NO_ERROR){
279
294
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
280
295
            gpgme_strsource(rc), gpgme_strerror(rc));
281
296
    plaintext_length = -1;
282
297
    if(debug){
283
298
      gpgme_decrypt_result_t result;
284
 
      result = gpgme_op_decrypt_result(mc->ctx);
 
299
      result = gpgme_op_decrypt_result(mc.ctx);
285
300
      if(result == NULL){
286
301
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
287
302
      } else {
294
309
        }
295
310
        gpgme_recipient_t recipient;
296
311
        recipient = result->recipients;
297
 
        if(recipient){
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
304
 
                    ? "No" : "Yes");
305
 
            recipient = recipient->next;
306
 
          }
 
312
        while(recipient != NULL){
 
313
          fprintf(stderr, "Public key algorithm: %s\n",
 
314
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
315
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
316
          fprintf(stderr, "Secret key available: %s\n",
 
317
                  recipient->status == GPG_ERR_NO_SECKEY
 
318
                  ? "No" : "Yes");
 
319
          recipient = recipient->next;
307
320
        }
308
321
      }
309
322
    }
323
336
  
324
337
  *plaintext = NULL;
325
338
  while(true){
326
 
    plaintext_capacity = adjustbuffer(plaintext,
 
339
    plaintext_capacity = incbuffer(plaintext,
327
340
                                      (size_t)plaintext_length,
328
341
                                      plaintext_capacity);
329
342
    if(plaintext_capacity == 0){
330
 
        perror("adjustbuffer");
 
343
        perror("incbuffer");
331
344
        plaintext_length = -1;
332
345
        goto decrypt_end;
333
346
    }
365
378
  return plaintext_length;
366
379
}
367
380
 
368
 
static const char * safer_gnutls_strerror(int value) {
 
381
static const char * safer_gnutls_strerror(int value){
369
382
  const char *ret = gnutls_strerror(value); /* Spurious warning from
370
383
                                               -Wunreachable-code */
371
384
  if(ret == NULL)
379
392
  fprintf(stderr, "GnuTLS: %s", string);
380
393
}
381
394
 
382
 
static int init_gnutls_global(mandos_context *mc,
383
 
                              const char *pubkeyfilename,
 
395
static int init_gnutls_global(const char *pubkeyfilename,
384
396
                              const char *seckeyfilename){
385
397
  int ret;
386
398
  
389
401
  }
390
402
  
391
403
  ret = gnutls_global_init();
392
 
  if(ret != GNUTLS_E_SUCCESS) {
 
404
  if(ret != GNUTLS_E_SUCCESS){
393
405
    fprintf(stderr, "GnuTLS global_init: %s\n",
394
406
            safer_gnutls_strerror(ret));
395
407
    return -1;
404
416
  }
405
417
  
406
418
  /* OpenPGP credentials */
407
 
  gnutls_certificate_allocate_credentials(&mc->cred);
 
419
  gnutls_certificate_allocate_credentials(&mc.cred);
408
420
  if(ret != GNUTLS_E_SUCCESS){
409
421
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
410
 
                                                  * from
411
 
                                                  * -Wunreachable-code
412
 
                                                  */
 
422
                                                    from
 
423
                                                    -Wunreachable-code
 
424
                                                 */
413
425
            safer_gnutls_strerror(ret));
414
426
    gnutls_global_deinit();
415
427
    return -1;
422
434
  }
423
435
  
424
436
  ret = gnutls_certificate_set_openpgp_key_file
425
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
437
    (mc.cred, pubkeyfilename, seckeyfilename,
426
438
     GNUTLS_OPENPGP_FMT_BASE64);
427
 
  if(ret != GNUTLS_E_SUCCESS) {
 
439
  if(ret != GNUTLS_E_SUCCESS){
428
440
    fprintf(stderr,
429
441
            "Error[%d] while reading the OpenPGP key pair ('%s',"
430
442
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
434
446
  }
435
447
  
436
448
  /* GnuTLS server initialization */
437
 
  ret = gnutls_dh_params_init(&mc->dh_params);
438
 
  if(ret != GNUTLS_E_SUCCESS) {
 
449
  ret = gnutls_dh_params_init(&mc.dh_params);
 
450
  if(ret != GNUTLS_E_SUCCESS){
439
451
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
440
452
            " %s\n", safer_gnutls_strerror(ret));
441
453
    goto globalfail;
442
454
  }
443
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
444
 
  if(ret != GNUTLS_E_SUCCESS) {
 
455
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
456
  if(ret != GNUTLS_E_SUCCESS){
445
457
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
446
458
            safer_gnutls_strerror(ret));
447
459
    goto globalfail;
448
460
  }
449
461
  
450
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
462
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
451
463
  
452
464
  return 0;
453
465
  
454
466
 globalfail:
455
467
  
456
 
  gnutls_certificate_free_credentials(mc->cred);
 
468
  gnutls_certificate_free_credentials(mc.cred);
457
469
  gnutls_global_deinit();
458
 
  gnutls_dh_params_deinit(mc->dh_params);
 
470
  gnutls_dh_params_deinit(mc.dh_params);
459
471
  return -1;
460
472
}
461
473
 
462
 
static int init_gnutls_session(mandos_context *mc,
463
 
                               gnutls_session_t *session){
 
474
static int init_gnutls_session(gnutls_session_t *session){
464
475
  int ret;
465
476
  /* GnuTLS session creation */
466
477
  ret = gnutls_init(session, GNUTLS_SERVER);
471
482
  
472
483
  {
473
484
    const char *err;
474
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
475
 
    if(ret != GNUTLS_E_SUCCESS) {
 
485
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
486
    if(ret != GNUTLS_E_SUCCESS){
476
487
      fprintf(stderr, "Syntax error at: %s\n", err);
477
488
      fprintf(stderr, "GnuTLS error: %s\n",
478
489
              safer_gnutls_strerror(ret));
482
493
  }
483
494
  
484
495
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
485
 
                               mc->cred);
486
 
  if(ret != GNUTLS_E_SUCCESS) {
 
496
                               mc.cred);
 
497
  if(ret != GNUTLS_E_SUCCESS){
487
498
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
488
499
            safer_gnutls_strerror(ret));
489
500
    gnutls_deinit(*session);
494
505
  gnutls_certificate_server_set_request(*session,
495
506
                                        GNUTLS_CERT_IGNORE);
496
507
  
497
 
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
508
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
498
509
  
499
510
  return 0;
500
511
}
506
517
/* Called when a Mandos server is found */
507
518
static int start_mandos_communication(const char *ip, uint16_t port,
508
519
                                      AvahiIfIndex if_index,
509
 
                                      mandos_context *mc){
 
520
                                      int af){
510
521
  int ret, tcp_sd;
511
522
  ssize_t sret;
512
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
523
  union {
 
524
    struct sockaddr_in in;
 
525
    struct sockaddr_in6 in6;
 
526
  } to;
513
527
  char *buffer = NULL;
514
528
  char *decrypted_buffer;
515
529
  size_t buffer_length = 0;
517
531
  ssize_t decrypted_buffer_size;
518
532
  size_t written;
519
533
  int retval = 0;
520
 
  char interface[IF_NAMESIZE];
521
534
  gnutls_session_t session;
522
 
  
523
 
  ret = init_gnutls_session(mc, &session);
 
535
  int pf;                       /* Protocol family */
 
536
  
 
537
  switch(af){
 
538
  case AF_INET6:
 
539
    pf = PF_INET6;
 
540
    break;
 
541
  case AF_INET:
 
542
    pf = PF_INET;
 
543
    break;
 
544
  default:
 
545
    fprintf(stderr, "Bad address family: %d\n", af);
 
546
    return -1;
 
547
  }
 
548
  
 
549
  ret = init_gnutls_session(&session);
524
550
  if(ret != 0){
525
551
    return -1;
526
552
  }
527
553
  
528
554
  if(debug){
529
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
555
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
530
556
            "\n", ip, port);
531
557
  }
532
558
  
533
 
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
534
 
  if(tcp_sd < 0) {
 
559
  tcp_sd = socket(pf, SOCK_STREAM, 0);
 
560
  if(tcp_sd < 0){
535
561
    perror("socket");
536
562
    return -1;
537
563
  }
538
564
  
539
 
  if(debug){
540
 
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
541
 
      perror("if_indextoname");
542
 
      return -1;
543
 
    }
544
 
    fprintf(stderr, "Binding to interface %s\n", interface);
545
 
  }
546
 
  
547
565
  memset(&to, 0, sizeof(to));
548
 
  to.in6.sin6_family = AF_INET6;
549
 
  /* It would be nice to have a way to detect if we were passed an
550
 
     IPv4 address here.   Now we assume an IPv6 address. */
551
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
566
  if(af == AF_INET6){
 
567
    to.in6.sin6_family = (sa_family_t)af;
 
568
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
569
  } else {                      /* IPv4 */
 
570
    to.in.sin_family = (sa_family_t)af;
 
571
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
572
  }
552
573
  if(ret < 0 ){
553
574
    perror("inet_pton");
554
575
    return -1;
557
578
    fprintf(stderr, "Bad address: %s\n", ip);
558
579
    return -1;
559
580
  }
560
 
  to.in6.sin6_port = htons(port); /* Spurious warnings from
 
581
  if(af == AF_INET6){
 
582
    to.in6.sin6_port = htons(port); /* Spurious warnings from
 
583
                                       -Wconversion and
 
584
                                       -Wunreachable-code */
 
585
    
 
586
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
 
587
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
 
588
                              -Wunreachable-code*/
 
589
      if(if_index == AVAHI_IF_UNSPEC){
 
590
        fprintf(stderr, "An IPv6 link-local address is incomplete"
 
591
                " without a network interface\n");
 
592
        return -1;
 
593
      }
 
594
      /* Set the network interface number as scope */
 
595
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
596
    }
 
597
  } else {
 
598
    to.in.sin_port = htons(port); /* Spurious warnings from
561
599
                                     -Wconversion and
562
600
                                     -Wunreachable-code */
563
 
  
564
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
601
  }
565
602
  
566
603
  if(debug){
567
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
568
 
            port);
569
 
    char addrstr[INET6_ADDRSTRLEN] = "";
570
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
571
 
                 sizeof(addrstr)) == NULL){
 
604
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
 
605
      char interface[IF_NAMESIZE];
 
606
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
607
        perror("if_indextoname");
 
608
      } else {
 
609
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
 
610
                ip, interface, port);
 
611
      }
 
612
    } else {
 
613
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
614
              port);
 
615
    }
 
616
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
 
617
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
 
618
    const char *pcret;
 
619
    if(af == AF_INET6){
 
620
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
 
621
                        sizeof(addrstr));
 
622
    } else {
 
623
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
 
624
                        sizeof(addrstr));
 
625
    }
 
626
    if(pcret == NULL){
572
627
      perror("inet_ntop");
573
628
    } else {
574
629
      if(strcmp(addrstr, ip) != 0){
577
632
    }
578
633
  }
579
634
  
580
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
 
635
  if(af == AF_INET6){
 
636
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
637
  } else {
 
638
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
639
  }
581
640
  if(ret < 0){
582
641
    perror("connect");
583
642
    return -1;
629
688
  /* Read OpenPGP packet that contains the wanted password */
630
689
  
631
690
  if(debug){
632
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
691
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
633
692
            ip);
634
693
  }
635
694
  
636
695
  while(true){
637
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
696
    buffer_capacity = incbuffer(&buffer, buffer_length,
638
697
                                   buffer_capacity);
639
698
    if(buffer_capacity == 0){
640
 
      perror("adjustbuffer");
 
699
      perror("incbuffer");
641
700
      retval = -1;
642
701
      goto mandos_end;
643
702
    }
682
741
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
683
742
  
684
743
  if(buffer_length > 0){
685
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
744
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
686
745
                                               buffer_length,
687
746
                                               &decrypted_buffer);
688
747
    if(decrypted_buffer_size >= 0){
723
782
 
724
783
static void resolve_callback(AvahiSServiceResolver *r,
725
784
                             AvahiIfIndex interface,
726
 
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
785
                             AvahiProtocol proto,
727
786
                             AvahiResolverEvent event,
728
787
                             const char *name,
729
788
                             const char *type,
734
793
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
735
794
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
736
795
                             flags,
737
 
                             void* userdata) {
738
 
  mandos_context *mc = userdata;
 
796
                             AVAHI_GCC_UNUSED void* userdata){
739
797
  assert(r);
740
798
  
741
799
  /* Called whenever a service has been resolved successfully or
742
800
     timed out */
743
801
  
744
 
  switch(event) {
 
802
  switch(event){
745
803
  default:
746
804
  case AVAHI_RESOLVER_FAILURE:
747
805
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
748
806
            " of type '%s' in domain '%s': %s\n", name, type, domain,
749
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
807
            avahi_strerror(avahi_server_errno(mc.server)));
750
808
    break;
751
809
    
752
810
  case AVAHI_RESOLVER_FOUND:
758
816
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
759
817
                ip, (intmax_t)interface, port);
760
818
      }
761
 
      int ret = start_mandos_communication(ip, port, interface, mc);
 
819
      int ret = start_mandos_communication(ip, port, interface,
 
820
                                           avahi_proto_to_af(proto));
762
821
      if(ret == 0){
763
 
        avahi_simple_poll_quit(mc->simple_poll);
 
822
        avahi_simple_poll_quit(mc.simple_poll);
764
823
      }
765
824
    }
766
825
  }
767
826
  avahi_s_service_resolver_free(r);
768
827
}
769
828
 
770
 
static void browse_callback( AvahiSServiceBrowser *b,
771
 
                             AvahiIfIndex interface,
772
 
                             AvahiProtocol protocol,
773
 
                             AvahiBrowserEvent event,
774
 
                             const char *name,
775
 
                             const char *type,
776
 
                             const char *domain,
777
 
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
778
 
                             flags,
779
 
                             void* userdata) {
780
 
  mandos_context *mc = userdata;
 
829
static void browse_callback(AvahiSServiceBrowser *b,
 
830
                            AvahiIfIndex interface,
 
831
                            AvahiProtocol protocol,
 
832
                            AvahiBrowserEvent event,
 
833
                            const char *name,
 
834
                            const char *type,
 
835
                            const char *domain,
 
836
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
837
                            flags,
 
838
                            AVAHI_GCC_UNUSED void* userdata){
781
839
  assert(b);
782
840
  
783
841
  /* Called whenever a new services becomes available on the LAN or
784
842
     is removed from the LAN */
785
843
  
786
 
  switch(event) {
 
844
  switch(event){
787
845
  default:
788
846
  case AVAHI_BROWSER_FAILURE:
789
847
    
790
848
    fprintf(stderr, "(Avahi browser) %s\n",
791
 
            avahi_strerror(avahi_server_errno(mc->server)));
792
 
    avahi_simple_poll_quit(mc->simple_poll);
 
849
            avahi_strerror(avahi_server_errno(mc.server)));
 
850
    avahi_simple_poll_quit(mc.simple_poll);
793
851
    return;
794
852
    
795
853
  case AVAHI_BROWSER_NEW:
798
856
       the callback function is called the Avahi server will free the
799
857
       resolver for us. */
800
858
    
801
 
    if(!(avahi_s_service_resolver_new(mc->server, interface,
802
 
                                       protocol, name, type, domain,
803
 
                                       AVAHI_PROTO_INET6, 0,
804
 
                                       resolve_callback, mc)))
 
859
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
 
860
                                    name, type, domain, protocol, 0,
 
861
                                    resolve_callback, NULL) == NULL)
805
862
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
806
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
863
              name, avahi_strerror(avahi_server_errno(mc.server)));
807
864
    break;
808
865
    
809
866
  case AVAHI_BROWSER_REMOVE:
818
875
  }
819
876
}
820
877
 
 
878
sig_atomic_t quit_now = 0;
 
879
 
 
880
/* stop main loop after sigterm has been called */
 
881
static void handle_sigterm(__attribute__((unused)) int sig){
 
882
  if(quit_now){
 
883
    return;
 
884
  }
 
885
  quit_now = 1;
 
886
  int old_errno = errno;
 
887
  if(mc.simple_poll != NULL){
 
888
    avahi_simple_poll_quit(mc.simple_poll);
 
889
  }
 
890
  errno = old_errno;
 
891
}
 
892
 
821
893
int main(int argc, char *argv[]){
822
 
    AvahiSServiceBrowser *sb = NULL;
823
 
    int error;
824
 
    int ret;
825
 
    intmax_t tmpmax;
826
 
    int numchars;
827
 
    int exitcode = EXIT_SUCCESS;
828
 
    const char *interface = "eth0";
829
 
    struct ifreq network;
830
 
    int sd;
831
 
    uid_t uid;
832
 
    gid_t gid;
833
 
    char *connect_to = NULL;
834
 
    char tempdir[] = "/tmp/mandosXXXXXX";
835
 
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
836
 
    const char *seckey = PATHDIR "/" SECKEY;
837
 
    const char *pubkey = PATHDIR "/" PUBKEY;
838
 
    
839
 
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
840
 
                          .dh_bits = 1024, .priority = "SECURE256"
841
 
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
842
 
    bool gnutls_initalized = false;
843
 
    bool gpgme_initalized = false;
844
 
    double delay = 2.5;
845
 
    
846
 
    {
847
 
      struct argp_option options[] = {
848
 
        { .name = "debug", .key = 128,
849
 
          .doc = "Debug mode", .group = 3 },
850
 
        { .name = "connect", .key = 'c',
851
 
          .arg = "ADDRESS:PORT",
852
 
          .doc = "Connect directly to a specific Mandos server",
853
 
          .group = 1 },
854
 
        { .name = "interface", .key = 'i',
855
 
          .arg = "NAME",
856
 
          .doc = "Interface that will be used to search for Mandos"
857
 
          " servers",
858
 
          .group = 1 },
859
 
        { .name = "seckey", .key = 's',
860
 
          .arg = "FILE",
861
 
          .doc = "OpenPGP secret key file base name",
862
 
          .group = 1 },
863
 
        { .name = "pubkey", .key = 'p',
864
 
          .arg = "FILE",
865
 
          .doc = "OpenPGP public key file base name",
866
 
          .group = 2 },
867
 
        { .name = "dh-bits", .key = 129,
868
 
          .arg = "BITS",
869
 
          .doc = "Bit length of the prime number used in the"
870
 
          " Diffie-Hellman key exchange",
871
 
          .group = 2 },
872
 
        { .name = "priority", .key = 130,
873
 
          .arg = "STRING",
874
 
          .doc = "GnuTLS priority string for the TLS handshake",
875
 
          .group = 1 },
876
 
        { .name = "delay", .key = 131,
877
 
          .arg = "SECONDS",
878
 
          .doc = "Maximum delay to wait for interface startup",
879
 
          .group = 2 },
880
 
        { .name = NULL }
881
 
      };
882
 
      
883
 
      error_t parse_opt(int key, char *arg,
884
 
                        struct argp_state *state) {
885
 
        switch(key) {
886
 
        case 128:               /* --debug */
887
 
          debug = true;
888
 
          break;
889
 
        case 'c':               /* --connect */
890
 
          connect_to = arg;
891
 
          break;
892
 
        case 'i':               /* --interface */
893
 
          interface = arg;
894
 
          break;
895
 
        case 's':               /* --seckey */
896
 
          seckey = arg;
897
 
          break;
898
 
        case 'p':               /* --pubkey */
899
 
          pubkey = arg;
900
 
          break;
901
 
        case 129:               /* --dh-bits */
902
 
          ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
903
 
          if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
904
 
             or arg[numchars] != '\0'){
905
 
            fprintf(stderr, "Bad number of DH bits\n");
906
 
            exit(EXIT_FAILURE);
907
 
          }
908
 
          mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
909
 
          break;
910
 
        case 130:               /* --priority */
911
 
          mc.priority = arg;
912
 
          break;
913
 
        case 131:               /* --delay */
914
 
          ret = sscanf(arg, "%lf%n", &delay, &numchars);
915
 
          if(ret < 1 or arg[numchars] != '\0'){
916
 
            fprintf(stderr, "Bad delay\n");
917
 
            exit(EXIT_FAILURE);
918
 
          }
919
 
          break;
920
 
        case ARGP_KEY_ARG:
921
 
          argp_usage(state);
922
 
        case ARGP_KEY_END:
923
 
          break;
924
 
        default:
925
 
          return ARGP_ERR_UNKNOWN;
926
 
        }
927
 
        return 0;
928
 
      }
929
 
      
930
 
      struct argp argp = { .options = options, .parser = parse_opt,
931
 
                           .args_doc = "",
932
 
                           .doc = "Mandos client -- Get and decrypt"
933
 
                           " passwords from a Mandos server" };
934
 
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
935
 
      if(ret == ARGP_ERR_UNKNOWN){
936
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
937
 
        exitcode = EXIT_FAILURE;
938
 
        goto end;
939
 
      }
940
 
    }
941
 
    
942
 
    /* If the interface is down, bring it up */
943
 
    {
944
 
      // Lower kernel loglevel to KERN_NOTICE to avoid
945
 
      // KERN_INFO messages to mess up the prompt
946
 
      ret = klogctl(8, NULL, 5);
947
 
      if(ret == -1){
948
 
        perror("klogctl");
949
 
      }
950
 
 
951
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
952
 
      if(sd < 0) {
953
 
        perror("socket");
954
 
        exitcode = EXIT_FAILURE;
955
 
        ret = klogctl(7, NULL, 0);
956
 
        if(ret == -1){
957
 
          perror("klogctl");
958
 
        }
959
 
        goto end;
960
 
      }
961
 
      strcpy(network.ifr_name, interface);
962
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
963
 
      if(ret == -1){
964
 
        perror("ioctl SIOCGIFFLAGS");
965
 
        ret = klogctl(7, NULL, 0);
966
 
        if(ret == -1){
967
 
          perror("klogctl");
968
 
        }
969
 
        exitcode = EXIT_FAILURE;
970
 
        goto end;
971
 
      }
972
 
      if((network.ifr_flags & IFF_UP) == 0){
973
 
        network.ifr_flags |= IFF_UP;
974
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
975
 
        if(ret == -1){
976
 
          perror("ioctl SIOCSIFFLAGS");
977
 
          exitcode = EXIT_FAILURE;
 
894
  AvahiSServiceBrowser *sb = NULL;
 
895
  int error;
 
896
  int ret;
 
897
  intmax_t tmpmax;
 
898
  char *tmp;
 
899
  int exitcode = EXIT_SUCCESS;
 
900
  const char *interface = "eth0";
 
901
  struct ifreq network;
 
902
  int sd = -1;
 
903
  bool interface_taken_up = false;
 
904
  uid_t uid;
 
905
  gid_t gid;
 
906
  char *connect_to = NULL;
 
907
  char tempdir[] = "/tmp/mandosXXXXXX";
 
908
  bool tempdir_created = false;
 
909
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
910
  const char *seckey = PATHDIR "/" SECKEY;
 
911
  const char *pubkey = PATHDIR "/" PUBKEY;
 
912
  
 
913
  bool gnutls_initialized = false;
 
914
  bool gpgme_initialized = false;
 
915
  float delay = 2.5f;
 
916
  
 
917
  struct sigaction old_sigterm_action;
 
918
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
 
919
  
 
920
  {
 
921
    struct argp_option options[] = {
 
922
      { .name = "debug", .key = 128,
 
923
        .doc = "Debug mode", .group = 3 },
 
924
      { .name = "connect", .key = 'c',
 
925
        .arg = "ADDRESS:PORT",
 
926
        .doc = "Connect directly to a specific Mandos server",
 
927
        .group = 1 },
 
928
      { .name = "interface", .key = 'i',
 
929
        .arg = "NAME",
 
930
        .doc = "Network interface that will be used to search for"
 
931
        " Mandos servers",
 
932
        .group = 1 },
 
933
      { .name = "seckey", .key = 's',
 
934
        .arg = "FILE",
 
935
        .doc = "OpenPGP secret key file base name",
 
936
        .group = 1 },
 
937
      { .name = "pubkey", .key = 'p',
 
938
        .arg = "FILE",
 
939
        .doc = "OpenPGP public key file base name",
 
940
        .group = 2 },
 
941
      { .name = "dh-bits", .key = 129,
 
942
        .arg = "BITS",
 
943
        .doc = "Bit length of the prime number used in the"
 
944
        " Diffie-Hellman key exchange",
 
945
        .group = 2 },
 
946
      { .name = "priority", .key = 130,
 
947
        .arg = "STRING",
 
948
        .doc = "GnuTLS priority string for the TLS handshake",
 
949
        .group = 1 },
 
950
      { .name = "delay", .key = 131,
 
951
        .arg = "SECONDS",
 
952
        .doc = "Maximum delay to wait for interface startup",
 
953
        .group = 2 },
 
954
      { .name = NULL }
 
955
    };
 
956
    
 
957
    error_t parse_opt(int key, char *arg,
 
958
                      struct argp_state *state){
 
959
      switch(key){
 
960
      case 128:                 /* --debug */
 
961
        debug = true;
 
962
        break;
 
963
      case 'c':                 /* --connect */
 
964
        connect_to = arg;
 
965
        break;
 
966
      case 'i':                 /* --interface */
 
967
        interface = arg;
 
968
        break;
 
969
      case 's':                 /* --seckey */
 
970
        seckey = arg;
 
971
        break;
 
972
      case 'p':                 /* --pubkey */
 
973
        pubkey = arg;
 
974
        break;
 
975
      case 129:                 /* --dh-bits */
 
976
        errno = 0;
 
977
        tmpmax = strtoimax(arg, &tmp, 10);
 
978
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
979
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
 
980
          fprintf(stderr, "Bad number of DH bits\n");
 
981
          exit(EXIT_FAILURE);
 
982
        }
 
983
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
984
        break;
 
985
      case 130:                 /* --priority */
 
986
        mc.priority = arg;
 
987
        break;
 
988
      case 131:                 /* --delay */
 
989
        errno = 0;
 
990
        delay = strtof(arg, &tmp);
 
991
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
992
          fprintf(stderr, "Bad delay\n");
 
993
          exit(EXIT_FAILURE);
 
994
        }
 
995
        break;
 
996
      case ARGP_KEY_ARG:
 
997
        argp_usage(state);
 
998
      case ARGP_KEY_END:
 
999
        break;
 
1000
      default:
 
1001
        return ARGP_ERR_UNKNOWN;
 
1002
      }
 
1003
      return 0;
 
1004
    }
 
1005
    
 
1006
    struct argp argp = { .options = options, .parser = parse_opt,
 
1007
                         .args_doc = "",
 
1008
                         .doc = "Mandos client -- Get and decrypt"
 
1009
                         " passwords from a Mandos server" };
 
1010
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
1011
    if(ret == ARGP_ERR_UNKNOWN){
 
1012
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
1013
      exitcode = EXIT_FAILURE;
 
1014
      goto end;
 
1015
    }
 
1016
  }
 
1017
  
 
1018
  if(not debug){
 
1019
    avahi_set_log_function(empty_log);
 
1020
  }
 
1021
  
 
1022
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
 
1023
     from the signal handler */
 
1024
  /* Initialize the pseudo-RNG for Avahi */
 
1025
  srand((unsigned int) time(NULL));
 
1026
  mc.simple_poll = avahi_simple_poll_new();
 
1027
  if(mc.simple_poll == NULL){
 
1028
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1029
    exitcode = EXIT_FAILURE;
 
1030
    goto end;
 
1031
  }
 
1032
  
 
1033
  sigemptyset(&sigterm_action.sa_mask);
 
1034
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
 
1035
  if(ret == -1){
 
1036
    perror("sigaddset");
 
1037
    exitcode = EXIT_FAILURE;
 
1038
    goto end;
 
1039
  }
 
1040
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
 
1041
  if(ret == -1){
 
1042
    perror("sigaddset");
 
1043
    exitcode = EXIT_FAILURE;
 
1044
    goto end;
 
1045
  }
 
1046
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1047
  if(ret == -1){
 
1048
    perror("sigaddset");
 
1049
    exitcode = EXIT_FAILURE;
 
1050
    goto end;
 
1051
  }
 
1052
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1053
  if(ret == -1){
 
1054
    perror("sigaction");
 
1055
    exitcode = EXIT_FAILURE;
 
1056
    goto end;
 
1057
  }  
 
1058
  
 
1059
  /* If the interface is down, bring it up */
 
1060
  if(interface[0] != '\0'){
 
1061
#ifdef __linux__
 
1062
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1063
       messages to mess up the prompt */
 
1064
    ret = klogctl(8, NULL, 5);
 
1065
    bool restore_loglevel = true;
 
1066
    if(ret == -1){
 
1067
      restore_loglevel = false;
 
1068
      perror("klogctl");
 
1069
    }
 
1070
#endif  /* __linux__ */
 
1071
    
 
1072
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1073
    if(sd < 0){
 
1074
      perror("socket");
 
1075
      exitcode = EXIT_FAILURE;
 
1076
#ifdef __linux__
 
1077
      if(restore_loglevel){
 
1078
        ret = klogctl(7, NULL, 0);
 
1079
        if(ret == -1){
 
1080
          perror("klogctl");
 
1081
        }
 
1082
      }
 
1083
#endif  /* __linux__ */
 
1084
      goto end;
 
1085
    }
 
1086
    strcpy(network.ifr_name, interface);
 
1087
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1088
    if(ret == -1){
 
1089
      perror("ioctl SIOCGIFFLAGS");
 
1090
#ifdef __linux__
 
1091
      if(restore_loglevel){
 
1092
        ret = klogctl(7, NULL, 0);
 
1093
        if(ret == -1){
 
1094
          perror("klogctl");
 
1095
        }
 
1096
      }
 
1097
#endif  /* __linux__ */
 
1098
      exitcode = EXIT_FAILURE;
 
1099
      goto end;
 
1100
    }
 
1101
    if((network.ifr_flags & IFF_UP) == 0){
 
1102
      network.ifr_flags |= IFF_UP;
 
1103
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1104
      if(ret == -1){
 
1105
        perror("ioctl SIOCSIFFLAGS");
 
1106
        exitcode = EXIT_FAILURE;
 
1107
#ifdef __linux__
 
1108
        if(restore_loglevel){
978
1109
          ret = klogctl(7, NULL, 0);
979
1110
          if(ret == -1){
980
1111
            perror("klogctl");
981
1112
          }
982
 
          goto end;
983
 
        }
984
 
      }
985
 
      // sleep checking until interface is running
986
 
      for(int i=0; i < delay * 4; i++){
987
 
        ret = ioctl(sd, SIOCGIFFLAGS, &network);
988
 
        if(ret == -1){
989
 
          perror("ioctl SIOCGIFFLAGS");
990
 
        } else if(network.ifr_flags & IFF_RUNNING){
991
 
          break;
992
 
        }
993
 
        struct timespec sleeptime = { .tv_nsec = 250000000 };
994
 
        nanosleep(&sleeptime, NULL);
995
 
      }
 
1113
        }
 
1114
#endif  /* __linux__ */
 
1115
        goto end;
 
1116
      }
 
1117
      interface_taken_up = true;
 
1118
    }
 
1119
    /* sleep checking until interface is running */
 
1120
    for(int i=0; i < delay * 4; i++){
 
1121
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1122
      if(ret == -1){
 
1123
        perror("ioctl SIOCGIFFLAGS");
 
1124
      } else if(network.ifr_flags & IFF_RUNNING){
 
1125
        break;
 
1126
      }
 
1127
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1128
      ret = nanosleep(&sleeptime, NULL);
 
1129
      if(ret == -1 and errno != EINTR){
 
1130
        perror("nanosleep");
 
1131
      }
 
1132
    }
 
1133
    if(not interface_taken_up){
996
1134
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
997
1135
      if(ret == -1){
998
1136
        perror("close");
999
1137
      }
1000
 
      // Restores kernel loglevel to default
 
1138
    }
 
1139
#ifdef __linux__
 
1140
    if(restore_loglevel){
 
1141
      /* Restores kernel loglevel to default */
1001
1142
      ret = klogctl(7, NULL, 0);
1002
1143
      if(ret == -1){
1003
1144
        perror("klogctl");
1004
1145
      }
1005
1146
    }
1006
 
    
1007
 
    uid = getuid();
1008
 
    gid = getgid();
1009
 
    
1010
 
    ret = setuid(uid);
1011
 
    if(ret == -1){
1012
 
      perror("setuid");
1013
 
    }
1014
 
    
1015
 
    setgid(gid);
1016
 
    if(ret == -1){
1017
 
      perror("setgid");
1018
 
    }
1019
 
    
1020
 
    ret = init_gnutls_global(&mc, pubkey, seckey);
1021
 
    if(ret == -1){
1022
 
      fprintf(stderr, "init_gnutls_global failed\n");
1023
 
      exitcode = EXIT_FAILURE;
1024
 
      goto end;
1025
 
    } else {
1026
 
      gnutls_initalized = true;
1027
 
    }
1028
 
    
1029
 
    if(mkdtemp(tempdir) == NULL){
1030
 
      perror("mkdtemp");
1031
 
      tempdir[0] = '\0';
1032
 
      goto end;
1033
 
    }
1034
 
    
1035
 
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
1036
 
      fprintf(stderr, "gpgme_initalized failed\n");
1037
 
      exitcode = EXIT_FAILURE;
1038
 
      goto end;
1039
 
    } else {
1040
 
      gpgme_initalized = true;
1041
 
    }
1042
 
    
 
1147
#endif  /* __linux__ */
 
1148
  }
 
1149
  
 
1150
  uid = getuid();
 
1151
  gid = getgid();
 
1152
  
 
1153
  errno = 0;
 
1154
  setgid(gid);
 
1155
  if(ret == -1){
 
1156
    perror("setgid");
 
1157
  }
 
1158
  
 
1159
  ret = setuid(uid);
 
1160
  if(ret == -1){
 
1161
    perror("setuid");
 
1162
  }
 
1163
  
 
1164
  ret = init_gnutls_global(pubkey, seckey);
 
1165
  if(ret == -1){
 
1166
    fprintf(stderr, "init_gnutls_global failed\n");
 
1167
    exitcode = EXIT_FAILURE;
 
1168
    goto end;
 
1169
  } else {
 
1170
    gnutls_initialized = true;
 
1171
  }
 
1172
  
 
1173
  if(mkdtemp(tempdir) == NULL){
 
1174
    perror("mkdtemp");
 
1175
    goto end;
 
1176
  }
 
1177
  tempdir_created = true;
 
1178
  
 
1179
  if(not init_gpgme(pubkey, seckey, tempdir)){
 
1180
    fprintf(stderr, "init_gpgme failed\n");
 
1181
    exitcode = EXIT_FAILURE;
 
1182
    goto end;
 
1183
  } else {
 
1184
    gpgme_initialized = true;
 
1185
  }
 
1186
  
 
1187
  if(interface[0] != '\0'){
1043
1188
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1044
1189
    if(if_index == 0){
1045
1190
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1046
 
      exit(EXIT_FAILURE);
1047
 
    }
1048
 
    
1049
 
    if(connect_to != NULL){
1050
 
      /* Connect directly, do not use Zeroconf */
1051
 
      /* (Mainly meant for debugging) */
1052
 
      char *address = strrchr(connect_to, ':');
1053
 
      if(address == NULL){
1054
 
        fprintf(stderr, "No colon in address\n");
1055
 
        exitcode = EXIT_FAILURE;
1056
 
        goto end;
1057
 
      }
1058
 
      uint16_t port;
1059
 
      ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1060
 
      if(ret < 1 or tmpmax != (uint16_t)tmpmax
1061
 
         or address[numchars+1] != '\0'){
1062
 
        fprintf(stderr, "Bad port number\n");
1063
 
        exitcode = EXIT_FAILURE;
1064
 
        goto end;
1065
 
      }
1066
 
      port = (uint16_t)tmpmax;
1067
 
      *address = '\0';
1068
 
      address = connect_to;
1069
 
      ret = start_mandos_communication(address, port, if_index, &mc);
1070
 
      if(ret < 0){
1071
 
        exitcode = EXIT_FAILURE;
1072
 
      } else {
1073
 
        exitcode = EXIT_SUCCESS;
1074
 
      }
1075
 
      goto end;
1076
 
    }
1077
 
    
1078
 
    if(not debug){
1079
 
      avahi_set_log_function(empty_log);
1080
 
    }
1081
 
    
1082
 
    /* Initialize the pseudo-RNG for Avahi */
1083
 
    srand((unsigned int) time(NULL));
1084
 
    
1085
 
    /* Allocate main Avahi loop object */
1086
 
    mc.simple_poll = avahi_simple_poll_new();
1087
 
    if(mc.simple_poll == NULL) {
1088
 
        fprintf(stderr, "Avahi: Failed to create simple poll"
1089
 
                " object.\n");
1090
 
        exitcode = EXIT_FAILURE;
1091
 
        goto end;
1092
 
    }
1093
 
    
1094
 
    {
1095
 
      AvahiServerConfig config;
1096
 
      /* Do not publish any local Zeroconf records */
1097
 
      avahi_server_config_init(&config);
1098
 
      config.publish_hinfo = 0;
1099
 
      config.publish_addresses = 0;
1100
 
      config.publish_workstation = 0;
1101
 
      config.publish_domain = 0;
1102
 
      
1103
 
      /* Allocate a new server */
1104
 
      mc.server = avahi_server_new(avahi_simple_poll_get
1105
 
                                   (mc.simple_poll), &config, NULL,
1106
 
                                   NULL, &error);
1107
 
      
1108
 
      /* Free the Avahi configuration data */
1109
 
      avahi_server_config_free(&config);
1110
 
    }
1111
 
    
1112
 
    /* Check if creating the Avahi server object succeeded */
1113
 
    if(mc.server == NULL) {
1114
 
        fprintf(stderr, "Failed to create Avahi server: %s\n",
1115
 
                avahi_strerror(error));
1116
 
        exitcode = EXIT_FAILURE;
1117
 
        goto end;
1118
 
    }
1119
 
    
1120
 
    /* Create the Avahi service browser */
1121
 
    sb = avahi_s_service_browser_new(mc.server, if_index,
1122
 
                                     AVAHI_PROTO_INET6,
1123
 
                                     "_mandos._tcp", NULL, 0,
1124
 
                                     browse_callback, &mc);
1125
 
    if(sb == NULL) {
1126
 
        fprintf(stderr, "Failed to create service browser: %s\n",
1127
 
                avahi_strerror(avahi_server_errno(mc.server)));
1128
 
        exitcode = EXIT_FAILURE;
1129
 
        goto end;
1130
 
    }
1131
 
    
1132
 
    /* Run the main loop */
1133
 
    
1134
 
    if(debug){
1135
 
      fprintf(stderr, "Starting Avahi loop search\n");
1136
 
    }
1137
 
 
1138
 
    avahi_simple_poll_loop(mc.simple_poll);
1139
 
    
 
1191
      exitcode = EXIT_FAILURE;
 
1192
      goto end;
 
1193
    }
 
1194
  }
 
1195
  
 
1196
  if(connect_to != NULL){
 
1197
    /* Connect directly, do not use Zeroconf */
 
1198
    /* (Mainly meant for debugging) */
 
1199
    char *address = strrchr(connect_to, ':');
 
1200
    if(address == NULL){
 
1201
      fprintf(stderr, "No colon in address\n");
 
1202
      exitcode = EXIT_FAILURE;
 
1203
      goto end;
 
1204
    }
 
1205
    uint16_t port;
 
1206
    errno = 0;
 
1207
    tmpmax = strtoimax(address+1, &tmp, 10);
 
1208
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
 
1209
       or tmpmax != (uint16_t)tmpmax){
 
1210
      fprintf(stderr, "Bad port number\n");
 
1211
      exitcode = EXIT_FAILURE;
 
1212
      goto end;
 
1213
    }
 
1214
    port = (uint16_t)tmpmax;
 
1215
    *address = '\0';
 
1216
    address = connect_to;
 
1217
    /* Colon in address indicates IPv6 */
 
1218
    int af;
 
1219
    if(strchr(address, ':') != NULL){
 
1220
      af = AF_INET6;
 
1221
    } else {
 
1222
      af = AF_INET;
 
1223
    }
 
1224
    ret = start_mandos_communication(address, port, if_index, af);
 
1225
    if(ret < 0){
 
1226
      exitcode = EXIT_FAILURE;
 
1227
    } else {
 
1228
      exitcode = EXIT_SUCCESS;
 
1229
    }
 
1230
    goto end;
 
1231
  }
 
1232
    
 
1233
  {
 
1234
    AvahiServerConfig config;
 
1235
    /* Do not publish any local Zeroconf records */
 
1236
    avahi_server_config_init(&config);
 
1237
    config.publish_hinfo = 0;
 
1238
    config.publish_addresses = 0;
 
1239
    config.publish_workstation = 0;
 
1240
    config.publish_domain = 0;
 
1241
    
 
1242
    /* Allocate a new server */
 
1243
    mc.server = avahi_server_new(avahi_simple_poll_get
 
1244
                                 (mc.simple_poll), &config, NULL,
 
1245
                                 NULL, &error);
 
1246
    
 
1247
    /* Free the Avahi configuration data */
 
1248
    avahi_server_config_free(&config);
 
1249
  }
 
1250
  
 
1251
  /* Check if creating the Avahi server object succeeded */
 
1252
  if(mc.server == NULL){
 
1253
    fprintf(stderr, "Failed to create Avahi server: %s\n",
 
1254
            avahi_strerror(error));
 
1255
    exitcode = EXIT_FAILURE;
 
1256
    goto end;
 
1257
  }
 
1258
  
 
1259
  /* Create the Avahi service browser */
 
1260
  sb = avahi_s_service_browser_new(mc.server, if_index,
 
1261
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1262
                                   NULL, 0, browse_callback, NULL);
 
1263
  if(sb == NULL){
 
1264
    fprintf(stderr, "Failed to create service browser: %s\n",
 
1265
            avahi_strerror(avahi_server_errno(mc.server)));
 
1266
    exitcode = EXIT_FAILURE;
 
1267
    goto end;
 
1268
  }
 
1269
  
 
1270
  /* Run the main loop */
 
1271
  
 
1272
  if(debug){
 
1273
    fprintf(stderr, "Starting Avahi loop search\n");
 
1274
  }
 
1275
  
 
1276
  avahi_simple_poll_loop(mc.simple_poll);
 
1277
  
1140
1278
 end:
1141
 
    
1142
 
    if(debug){
1143
 
      fprintf(stderr, "%s exiting\n", argv[0]);
1144
 
    }
1145
 
    
1146
 
    /* Cleanup things */
1147
 
    if(sb != NULL)
1148
 
        avahi_s_service_browser_free(sb);
1149
 
    
1150
 
    if(mc.server != NULL)
1151
 
        avahi_server_free(mc.server);
1152
 
    
1153
 
    if(mc.simple_poll != NULL)
1154
 
        avahi_simple_poll_free(mc.simple_poll);
1155
 
    
1156
 
    if(gnutls_initalized){
1157
 
      gnutls_certificate_free_credentials(mc.cred);
1158
 
      gnutls_global_deinit();
1159
 
      gnutls_dh_params_deinit(mc.dh_params);
1160
 
    }
1161
 
    
1162
 
    if(gpgme_initalized){
1163
 
      gpgme_release(mc.ctx);
1164
 
    }
1165
 
    
1166
 
    /* Removes the temp directory used by GPGME */
1167
 
    if(tempdir[0] != '\0'){
1168
 
      DIR *d;
1169
 
      struct dirent *direntry;
1170
 
      d = opendir(tempdir);
1171
 
      if(d == NULL){
1172
 
        if(errno != ENOENT){
1173
 
          perror("opendir");
1174
 
        }
1175
 
      } else {
1176
 
        while(true){
1177
 
          direntry = readdir(d);
1178
 
          if(direntry == NULL){
1179
 
            break;
1180
 
          }
1181
 
          if(direntry->d_type == DT_REG){
1182
 
            char *fullname = NULL;
1183
 
            ret = asprintf(&fullname, "%s/%s", tempdir,
1184
 
                           direntry->d_name);
1185
 
            if(ret < 0){
1186
 
              perror("asprintf");
1187
 
              continue;
1188
 
            }
1189
 
            ret = unlink(fullname);
1190
 
            if(ret == -1){
1191
 
              fprintf(stderr, "unlink(\"%s\"): %s",
1192
 
                      fullname, strerror(errno));
1193
 
            }
1194
 
            free(fullname);
1195
 
          }
1196
 
        }
1197
 
        closedir(d);
1198
 
      }
1199
 
      ret = rmdir(tempdir);
1200
 
      if(ret == -1 and errno != ENOENT){
1201
 
        perror("rmdir");
1202
 
      }
1203
 
    }
1204
 
          
1205
 
    return exitcode;
 
1279
  
 
1280
  if(debug){
 
1281
    fprintf(stderr, "%s exiting\n", argv[0]);
 
1282
  }
 
1283
  
 
1284
  /* Cleanup things */
 
1285
  if(sb != NULL)
 
1286
    avahi_s_service_browser_free(sb);
 
1287
  
 
1288
  if(mc.server != NULL)
 
1289
    avahi_server_free(mc.server);
 
1290
  
 
1291
  if(mc.simple_poll != NULL)
 
1292
    avahi_simple_poll_free(mc.simple_poll);
 
1293
  
 
1294
  if(gnutls_initialized){
 
1295
    gnutls_certificate_free_credentials(mc.cred);
 
1296
    gnutls_global_deinit();
 
1297
    gnutls_dh_params_deinit(mc.dh_params);
 
1298
  }
 
1299
  
 
1300
  if(gpgme_initialized){
 
1301
    gpgme_release(mc.ctx);
 
1302
  }
 
1303
  
 
1304
  /* Take down the network interface */
 
1305
  if(interface_taken_up){
 
1306
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1307
    if(ret == -1){
 
1308
      perror("ioctl SIOCGIFFLAGS");
 
1309
    } else if(network.ifr_flags & IFF_UP) {
 
1310
      network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1311
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1312
      if(ret == -1){
 
1313
        perror("ioctl SIOCSIFFLAGS");
 
1314
      }
 
1315
    }
 
1316
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1317
    if(ret == -1){
 
1318
      perror("close");
 
1319
    }
 
1320
  }
 
1321
  
 
1322
  /* Removes the temp directory used by GPGME */
 
1323
  if(tempdir_created){
 
1324
    DIR *d;
 
1325
    struct dirent *direntry;
 
1326
    d = opendir(tempdir);
 
1327
    if(d == NULL){
 
1328
      if(errno != ENOENT){
 
1329
        perror("opendir");
 
1330
      }
 
1331
    } else {
 
1332
      while(true){
 
1333
        direntry = readdir(d);
 
1334
        if(direntry == NULL){
 
1335
          break;
 
1336
        }
 
1337
        /* Skip "." and ".." */
 
1338
        if(direntry->d_name[0] == '.'
 
1339
           and (direntry->d_name[1] == '\0'
 
1340
                or (direntry->d_name[1] == '.'
 
1341
                    and direntry->d_name[2] == '\0'))){
 
1342
          continue;
 
1343
        }
 
1344
        char *fullname = NULL;
 
1345
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
1346
                       direntry->d_name);
 
1347
        if(ret < 0){
 
1348
          perror("asprintf");
 
1349
          continue;
 
1350
        }
 
1351
        ret = remove(fullname);
 
1352
        if(ret == -1){
 
1353
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
1354
                  strerror(errno));
 
1355
        }
 
1356
        free(fullname);
 
1357
      }
 
1358
      closedir(d);
 
1359
    }
 
1360
    ret = rmdir(tempdir);
 
1361
    if(ret == -1 and errno != ENOENT){
 
1362
      perror("rmdir");
 
1363
    }
 
1364
  }
 
1365
  
 
1366
  return exitcode;
1206
1367
}