/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, SCNu16 */
 
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() */
 
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__
 
87
#include <sys/klog.h>           /* klogctl() */
 
88
#endif  /* __linux__ */
77
89
 
78
90
/* Avahi */
79
91
/* All Avahi types, constants and functions
125
137
  gpgme_ctx_t ctx;
126
138
} mandos_context;
127
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
 
128
145
/*
129
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
130
 
 * "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,
131
148
 * "buffer_length" is how much is already used.
132
149
 */
133
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
150
size_t incbuffer(char **buffer, size_t buffer_length,
134
151
                  size_t buffer_capacity){
135
152
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
136
153
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
145
162
/* 
146
163
 * Initialize GPGME.
147
164
 */
148
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
165
static bool init_gpgme(const char *seckey,
149
166
                       const char *pubkey, const char *tempdir){
150
167
  int ret;
151
168
  gpgme_error_t rc;
153
170
  
154
171
  
155
172
  /*
156
 
   * Helper function to insert pub and seckey to the enigne keyring.
 
173
   * Helper function to insert pub and seckey to the engine keyring.
157
174
   */
158
175
  bool import_key(const char *filename){
159
176
    int fd;
172
189
      return false;
173
190
    }
174
191
    
175
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
192
    rc = gpgme_op_import(mc.ctx, pgp_data);
176
193
    if(rc != GPG_ERR_NO_ERROR){
177
194
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
178
195
              gpgme_strsource(rc), gpgme_strerror(rc));
188
205
  }
189
206
  
190
207
  if(debug){
191
 
    fprintf(stderr, "Initialize gpgme\n");
 
208
    fprintf(stderr, "Initializing GPGME\n");
192
209
  }
193
210
  
194
211
  /* Init GPGME */
221
238
  }
222
239
  
223
240
  /* Create new GPGME "context" */
224
 
  rc = gpgme_new(&(mc->ctx));
 
241
  rc = gpgme_new(&(mc.ctx));
225
242
  if(rc != GPG_ERR_NO_ERROR){
226
243
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
227
244
            gpgme_strsource(rc), gpgme_strerror(rc));
239
256
 * Decrypt OpenPGP data.
240
257
 * Returns -1 on error
241
258
 */
242
 
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
243
 
                                  const char *cryptotext,
 
259
static ssize_t pgp_packet_decrypt(const char *cryptotext,
244
260
                                  size_t crypto_size,
245
261
                                  char **plaintext){
246
262
  gpgme_data_t dh_crypto, dh_plain;
273
289
  
274
290
  /* Decrypt data from the cryptotext data buffer to the plaintext
275
291
     data buffer */
276
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
292
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
277
293
  if(rc != GPG_ERR_NO_ERROR){
278
294
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
279
295
            gpgme_strsource(rc), gpgme_strerror(rc));
280
296
    plaintext_length = -1;
281
297
    if(debug){
282
298
      gpgme_decrypt_result_t result;
283
 
      result = gpgme_op_decrypt_result(mc->ctx);
 
299
      result = gpgme_op_decrypt_result(mc.ctx);
284
300
      if(result == NULL){
285
301
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
286
302
      } else {
293
309
        }
294
310
        gpgme_recipient_t recipient;
295
311
        recipient = result->recipients;
296
 
        if(recipient){
297
 
          while(recipient != NULL){
298
 
            fprintf(stderr, "Public key algorithm: %s\n",
299
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
300
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
301
 
            fprintf(stderr, "Secret key available: %s\n",
302
 
                    recipient->status == GPG_ERR_NO_SECKEY
303
 
                    ? "No" : "Yes");
304
 
            recipient = recipient->next;
305
 
          }
 
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;
306
320
        }
307
321
      }
308
322
    }
322
336
  
323
337
  *plaintext = NULL;
324
338
  while(true){
325
 
    plaintext_capacity = adjustbuffer(plaintext,
 
339
    plaintext_capacity = incbuffer(plaintext,
326
340
                                      (size_t)plaintext_length,
327
341
                                      plaintext_capacity);
328
342
    if(plaintext_capacity == 0){
329
 
        perror("adjustbuffer");
 
343
        perror("incbuffer");
330
344
        plaintext_length = -1;
331
345
        goto decrypt_end;
332
346
    }
364
378
  return plaintext_length;
365
379
}
366
380
 
367
 
static const char * safer_gnutls_strerror(int value) {
368
 
  const char *ret = gnutls_strerror(value); /* Spurious warning */
 
381
static const char * safer_gnutls_strerror(int value){
 
382
  const char *ret = gnutls_strerror(value); /* Spurious warning from
 
383
                                               -Wunreachable-code */
369
384
  if(ret == NULL)
370
385
    ret = "(unknown)";
371
386
  return ret;
377
392
  fprintf(stderr, "GnuTLS: %s", string);
378
393
}
379
394
 
380
 
static int init_gnutls_global(mandos_context *mc,
381
 
                              const char *pubkeyfilename,
 
395
static int init_gnutls_global(const char *pubkeyfilename,
382
396
                              const char *seckeyfilename){
383
397
  int ret;
384
398
  
387
401
  }
388
402
  
389
403
  ret = gnutls_global_init();
390
 
  if(ret != GNUTLS_E_SUCCESS) {
 
404
  if(ret != GNUTLS_E_SUCCESS){
391
405
    fprintf(stderr, "GnuTLS global_init: %s\n",
392
406
            safer_gnutls_strerror(ret));
393
407
    return -1;
402
416
  }
403
417
  
404
418
  /* OpenPGP credentials */
405
 
  gnutls_certificate_allocate_credentials(&mc->cred);
 
419
  gnutls_certificate_allocate_credentials(&mc.cred);
406
420
  if(ret != GNUTLS_E_SUCCESS){
407
 
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious
408
 
                                                    warning */
 
421
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
422
                                                    from
 
423
                                                    -Wunreachable-code
 
424
                                                 */
409
425
            safer_gnutls_strerror(ret));
410
426
    gnutls_global_deinit();
411
427
    return -1;
418
434
  }
419
435
  
420
436
  ret = gnutls_certificate_set_openpgp_key_file
421
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
437
    (mc.cred, pubkeyfilename, seckeyfilename,
422
438
     GNUTLS_OPENPGP_FMT_BASE64);
423
 
  if(ret != GNUTLS_E_SUCCESS) {
 
439
  if(ret != GNUTLS_E_SUCCESS){
424
440
    fprintf(stderr,
425
441
            "Error[%d] while reading the OpenPGP key pair ('%s',"
426
442
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
430
446
  }
431
447
  
432
448
  /* GnuTLS server initialization */
433
 
  ret = gnutls_dh_params_init(&mc->dh_params);
434
 
  if(ret != GNUTLS_E_SUCCESS) {
 
449
  ret = gnutls_dh_params_init(&mc.dh_params);
 
450
  if(ret != GNUTLS_E_SUCCESS){
435
451
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
436
452
            " %s\n", safer_gnutls_strerror(ret));
437
453
    goto globalfail;
438
454
  }
439
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
440
 
  if(ret != GNUTLS_E_SUCCESS) {
 
455
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
456
  if(ret != GNUTLS_E_SUCCESS){
441
457
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
442
458
            safer_gnutls_strerror(ret));
443
459
    goto globalfail;
444
460
  }
445
461
  
446
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
462
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
447
463
  
448
464
  return 0;
449
465
  
450
466
 globalfail:
451
467
  
452
 
  gnutls_certificate_free_credentials(mc->cred);
 
468
  gnutls_certificate_free_credentials(mc.cred);
453
469
  gnutls_global_deinit();
454
 
  gnutls_dh_params_deinit(mc->dh_params);
 
470
  gnutls_dh_params_deinit(mc.dh_params);
455
471
  return -1;
456
472
}
457
473
 
458
 
static int init_gnutls_session(mandos_context *mc,
459
 
                               gnutls_session_t *session){
 
474
static int init_gnutls_session(gnutls_session_t *session){
460
475
  int ret;
461
476
  /* GnuTLS session creation */
462
477
  ret = gnutls_init(session, GNUTLS_SERVER);
467
482
  
468
483
  {
469
484
    const char *err;
470
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
471
 
    if(ret != GNUTLS_E_SUCCESS) {
 
485
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
486
    if(ret != GNUTLS_E_SUCCESS){
472
487
      fprintf(stderr, "Syntax error at: %s\n", err);
473
488
      fprintf(stderr, "GnuTLS error: %s\n",
474
489
              safer_gnutls_strerror(ret));
478
493
  }
479
494
  
480
495
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
481
 
                               mc->cred);
482
 
  if(ret != GNUTLS_E_SUCCESS) {
 
496
                               mc.cred);
 
497
  if(ret != GNUTLS_E_SUCCESS){
483
498
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
484
499
            safer_gnutls_strerror(ret));
485
500
    gnutls_deinit(*session);
490
505
  gnutls_certificate_server_set_request(*session,
491
506
                                        GNUTLS_CERT_IGNORE);
492
507
  
493
 
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
508
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
494
509
  
495
510
  return 0;
496
511
}
502
517
/* Called when a Mandos server is found */
503
518
static int start_mandos_communication(const char *ip, uint16_t port,
504
519
                                      AvahiIfIndex if_index,
505
 
                                      mandos_context *mc){
 
520
                                      int af){
506
521
  int ret, tcp_sd;
507
522
  ssize_t sret;
508
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
523
  union {
 
524
    struct sockaddr_in in;
 
525
    struct sockaddr_in6 in6;
 
526
  } to;
509
527
  char *buffer = NULL;
510
528
  char *decrypted_buffer;
511
529
  size_t buffer_length = 0;
513
531
  ssize_t decrypted_buffer_size;
514
532
  size_t written;
515
533
  int retval = 0;
516
 
  char interface[IF_NAMESIZE];
517
534
  gnutls_session_t session;
518
 
  
519
 
  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);
520
550
  if(ret != 0){
521
551
    return -1;
522
552
  }
523
553
  
524
554
  if(debug){
525
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
555
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
526
556
            "\n", ip, port);
527
557
  }
528
558
  
529
 
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
530
 
  if(tcp_sd < 0) {
 
559
  tcp_sd = socket(pf, SOCK_STREAM, 0);
 
560
  if(tcp_sd < 0){
531
561
    perror("socket");
532
562
    return -1;
533
563
  }
534
564
  
535
 
  if(debug){
536
 
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
537
 
      perror("if_indextoname");
538
 
      return -1;
539
 
    }
540
 
    fprintf(stderr, "Binding to interface %s\n", interface);
541
 
  }
542
 
  
543
565
  memset(&to, 0, sizeof(to));
544
 
  to.in6.sin6_family = AF_INET6;
545
 
  /* It would be nice to have a way to detect if we were passed an
546
 
     IPv4 address here.   Now we assume an IPv6 address. */
547
 
  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
  }
548
573
  if(ret < 0 ){
549
574
    perror("inet_pton");
550
575
    return -1;
553
578
    fprintf(stderr, "Bad address: %s\n", ip);
554
579
    return -1;
555
580
  }
556
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
557
 
  
558
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
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
 
599
                                     -Wconversion and
 
600
                                     -Wunreachable-code */
 
601
  }
559
602
  
560
603
  if(debug){
561
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
562
 
            port);
563
 
    char addrstr[INET6_ADDRSTRLEN] = "";
564
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
565
 
                 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){
566
627
      perror("inet_ntop");
567
628
    } else {
568
629
      if(strcmp(addrstr, ip) != 0){
571
632
    }
572
633
  }
573
634
  
574
 
  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
  }
575
640
  if(ret < 0){
576
641
    perror("connect");
577
642
    return -1;
623
688
  /* Read OpenPGP packet that contains the wanted password */
624
689
  
625
690
  if(debug){
626
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
691
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
627
692
            ip);
628
693
  }
629
694
  
630
695
  while(true){
631
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
696
    buffer_capacity = incbuffer(&buffer, buffer_length,
632
697
                                   buffer_capacity);
633
698
    if(buffer_capacity == 0){
634
 
      perror("adjustbuffer");
 
699
      perror("incbuffer");
635
700
      retval = -1;
636
701
      goto mandos_end;
637
702
    }
676
741
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
677
742
  
678
743
  if(buffer_length > 0){
679
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
744
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
680
745
                                               buffer_length,
681
746
                                               &decrypted_buffer);
682
747
    if(decrypted_buffer_size >= 0){
717
782
 
718
783
static void resolve_callback(AvahiSServiceResolver *r,
719
784
                             AvahiIfIndex interface,
720
 
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
785
                             AvahiProtocol proto,
721
786
                             AvahiResolverEvent event,
722
787
                             const char *name,
723
788
                             const char *type,
728
793
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
729
794
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
730
795
                             flags,
731
 
                             void* userdata) {
732
 
  mandos_context *mc = userdata;
 
796
                             AVAHI_GCC_UNUSED void* userdata){
733
797
  assert(r);
734
798
  
735
799
  /* Called whenever a service has been resolved successfully or
736
800
     timed out */
737
801
  
738
 
  switch(event) {
 
802
  switch(event){
739
803
  default:
740
804
  case AVAHI_RESOLVER_FAILURE:
741
805
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
742
806
            " of type '%s' in domain '%s': %s\n", name, type, domain,
743
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
807
            avahi_strerror(avahi_server_errno(mc.server)));
744
808
    break;
745
809
    
746
810
  case AVAHI_RESOLVER_FOUND:
749
813
      avahi_address_snprint(ip, sizeof(ip), address);
750
814
      if(debug){
751
815
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
752
 
                PRIu16 ") on port %d\n", name, host_name, ip,
753
 
                interface, port);
 
816
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
817
                ip, (intmax_t)interface, port);
754
818
      }
755
 
      int ret = start_mandos_communication(ip, port, interface, mc);
 
819
      int ret = start_mandos_communication(ip, port, interface,
 
820
                                           avahi_proto_to_af(proto));
756
821
      if(ret == 0){
757
 
        avahi_simple_poll_quit(mc->simple_poll);
 
822
        avahi_simple_poll_quit(mc.simple_poll);
758
823
      }
759
824
    }
760
825
  }
761
826
  avahi_s_service_resolver_free(r);
762
827
}
763
828
 
764
 
static void browse_callback( AvahiSServiceBrowser *b,
765
 
                             AvahiIfIndex interface,
766
 
                             AvahiProtocol protocol,
767
 
                             AvahiBrowserEvent event,
768
 
                             const char *name,
769
 
                             const char *type,
770
 
                             const char *domain,
771
 
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
772
 
                             flags,
773
 
                             void* userdata) {
774
 
  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){
775
839
  assert(b);
776
840
  
777
841
  /* Called whenever a new services becomes available on the LAN or
778
842
     is removed from the LAN */
779
843
  
780
 
  switch(event) {
 
844
  switch(event){
781
845
  default:
782
846
  case AVAHI_BROWSER_FAILURE:
783
847
    
784
848
    fprintf(stderr, "(Avahi browser) %s\n",
785
 
            avahi_strerror(avahi_server_errno(mc->server)));
786
 
    avahi_simple_poll_quit(mc->simple_poll);
 
849
            avahi_strerror(avahi_server_errno(mc.server)));
 
850
    avahi_simple_poll_quit(mc.simple_poll);
787
851
    return;
788
852
    
789
853
  case AVAHI_BROWSER_NEW:
792
856
       the callback function is called the Avahi server will free the
793
857
       resolver for us. */
794
858
    
795
 
    if(!(avahi_s_service_resolver_new(mc->server, interface,
796
 
                                       protocol, name, type, domain,
797
 
                                       AVAHI_PROTO_INET6, 0,
798
 
                                       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)
799
862
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
800
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
863
              name, avahi_strerror(avahi_server_errno(mc.server)));
801
864
    break;
802
865
    
803
866
  case AVAHI_BROWSER_REMOVE:
812
875
  }
813
876
}
814
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
 
815
893
int main(int argc, char *argv[]){
816
 
    AvahiSServiceBrowser *sb = NULL;
817
 
    int error;
818
 
    int ret;
819
 
    int exitcode = EXIT_SUCCESS;
820
 
    const char *interface = "eth0";
821
 
    struct ifreq network;
822
 
    int sd;
823
 
    uid_t uid;
824
 
    gid_t gid;
825
 
    char *connect_to = NULL;
826
 
    char tempdir[] = "/tmp/mandosXXXXXX";
827
 
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
828
 
    const char *seckey = PATHDIR "/" SECKEY;
829
 
    const char *pubkey = PATHDIR "/" PUBKEY;
830
 
    
831
 
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
832
 
                          .dh_bits = 1024, .priority = "SECURE256"
833
 
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
834
 
    bool gnutls_initalized = false;
835
 
    bool gpgme_initalized = false;
836
 
    
837
 
    {
838
 
      struct argp_option options[] = {
839
 
        { .name = "debug", .key = 128,
840
 
          .doc = "Debug mode", .group = 3 },
841
 
        { .name = "connect", .key = 'c',
842
 
          .arg = "ADDRESS:PORT",
843
 
          .doc = "Connect directly to a specific Mandos server",
844
 
          .group = 1 },
845
 
        { .name = "interface", .key = 'i',
846
 
          .arg = "NAME",
847
 
          .doc = "Interface that will be used to search for Mandos"
848
 
          " servers",
849
 
          .group = 1 },
850
 
        { .name = "seckey", .key = 's',
851
 
          .arg = "FILE",
852
 
          .doc = "OpenPGP secret key file base name",
853
 
          .group = 1 },
854
 
        { .name = "pubkey", .key = 'p',
855
 
          .arg = "FILE",
856
 
          .doc = "OpenPGP public key file base name",
857
 
          .group = 2 },
858
 
        { .name = "dh-bits", .key = 129,
859
 
          .arg = "BITS",
860
 
          .doc = "Bit length of the prime number used in the"
861
 
          " Diffie-Hellman key exchange",
862
 
          .group = 2 },
863
 
        { .name = "priority", .key = 130,
864
 
          .arg = "STRING",
865
 
          .doc = "GnuTLS priority string for the TLS handshake",
866
 
          .group = 1 },
867
 
        { .name = NULL }
868
 
      };
869
 
      
870
 
      error_t parse_opt(int key, char *arg,
871
 
                        struct argp_state *state) {
872
 
        switch(key) {
873
 
        case 128:               /* --debug */
874
 
          debug = true;
875
 
          break;
876
 
        case 'c':               /* --connect */
877
 
          connect_to = arg;
878
 
          break;
879
 
        case 'i':               /* --interface */
880
 
          interface = arg;
881
 
          break;
882
 
        case 's':               /* --seckey */
883
 
          seckey = arg;
884
 
          break;
885
 
        case 'p':               /* --pubkey */
886
 
          pubkey = arg;
887
 
          break;
888
 
        case 129:               /* --dh-bits */
889
 
          ret = sscanf(arg, "%u", &mc.dh_bits);
890
 
          if(ret != 1){
891
 
            fprintf(stderr, "Bad number of DH bits\n");
892
 
            exit(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){
 
1109
          ret = klogctl(7, NULL, 0);
 
1110
          if(ret == -1){
 
1111
            perror("klogctl");
893
1112
          }
894
 
          break;
895
 
        case 130:               /* --priority */
896
 
          mc.priority = arg;
897
 
          break;
898
 
        case ARGP_KEY_ARG:
899
 
          argp_usage(state);
900
 
        case ARGP_KEY_END:
901
 
          break;
902
 
        default:
903
 
          return ARGP_ERR_UNKNOWN;
904
1113
        }
905
 
        return 0;
906
 
      }
907
 
      
908
 
      struct argp argp = { .options = options, .parser = parse_opt,
909
 
                           .args_doc = "",
910
 
                           .doc = "Mandos client -- Get and decrypt"
911
 
                           " passwords from a Mandos server" };
912
 
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
913
 
      if(ret == ARGP_ERR_UNKNOWN){
914
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
915
 
        exitcode = EXIT_FAILURE;
 
1114
#endif  /* __linux__ */
916
1115
        goto end;
917
1116
      }
 
1117
      interface_taken_up = true;
918
1118
    }
919
 
    
920
 
    /* If the interface is down, bring it up */
921
 
    {
922
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
923
 
      if(sd < 0) {
924
 
        perror("socket");
925
 
        exitcode = EXIT_FAILURE;
926
 
        goto end;
927
 
      }
928
 
      strcpy(network.ifr_name, interface);
 
1119
    /* sleep checking until interface is running */
 
1120
    for(int i=0; i < delay * 4; i++){
929
1121
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
930
1122
      if(ret == -1){
931
1123
        perror("ioctl SIOCGIFFLAGS");
932
 
        exitcode = EXIT_FAILURE;
933
 
        goto end;
934
 
      }
935
 
      if((network.ifr_flags & IFF_UP) == 0){
936
 
        network.ifr_flags |= IFF_UP;
937
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
938
 
        if(ret == -1){
939
 
          perror("ioctl SIOCSIFFLAGS");
940
 
          exitcode = EXIT_FAILURE;
941
 
          goto end;
942
 
        }
943
 
      }
 
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){
944
1134
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
945
1135
      if(ret == -1){
946
1136
        perror("close");
947
1137
      }
948
1138
    }
949
 
    
950
 
    uid = getuid();
951
 
    gid = getgid();
952
 
    
953
 
    ret = setuid(uid);
954
 
    if(ret == -1){
955
 
      perror("setuid");
956
 
    }
957
 
    
958
 
    setgid(gid);
959
 
    if(ret == -1){
960
 
      perror("setgid");
961
 
    }
962
 
    
963
 
    ret = init_gnutls_global(&mc, pubkey, seckey);
964
 
    if(ret == -1){
965
 
      fprintf(stderr, "init_gnutls_global failed\n");
966
 
      exitcode = EXIT_FAILURE;
967
 
      goto end;
968
 
    } else {
969
 
      gnutls_initalized = true;
970
 
    }
971
 
    
972
 
    if(mkdtemp(tempdir) == NULL){
973
 
      perror("mkdtemp");
974
 
      tempdir[0] = '\0';
975
 
      goto end;
976
 
    }
977
 
    
978
 
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
979
 
      fprintf(stderr, "gpgme_initalized failed\n");
980
 
      exitcode = EXIT_FAILURE;
981
 
      goto end;
982
 
    } else {
983
 
      gpgme_initalized = true;
984
 
    }
985
 
    
 
1139
#ifdef __linux__
 
1140
    if(restore_loglevel){
 
1141
      /* Restores kernel loglevel to default */
 
1142
      ret = klogctl(7, NULL, 0);
 
1143
      if(ret == -1){
 
1144
        perror("klogctl");
 
1145
      }
 
1146
    }
 
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'){
986
1188
    if_index = (AvahiIfIndex) if_nametoindex(interface);
987
1189
    if(if_index == 0){
988
1190
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
989
 
      exit(EXIT_FAILURE);
990
 
    }
991
 
    
992
 
    if(connect_to != NULL){
993
 
      /* Connect directly, do not use Zeroconf */
994
 
      /* (Mainly meant for debugging) */
995
 
      char *address = strrchr(connect_to, ':');
996
 
      if(address == NULL){
997
 
        fprintf(stderr, "No colon in address\n");
998
 
        exitcode = EXIT_FAILURE;
999
 
        goto end;
1000
 
      }
1001
 
      uint16_t port;
1002
 
      ret = sscanf(address+1, "%" SCNu16, &port);
1003
 
      if(ret != 1){
1004
 
        fprintf(stderr, "Bad port number\n");
1005
 
        exitcode = EXIT_FAILURE;
1006
 
        goto end;
1007
 
      }
1008
 
      *address = '\0';
1009
 
      address = connect_to;
1010
 
      ret = start_mandos_communication(address, port, if_index, &mc);
1011
 
      if(ret < 0){
1012
 
        exitcode = EXIT_FAILURE;
1013
 
      } else {
1014
 
        exitcode = EXIT_SUCCESS;
1015
 
      }
1016
 
      goto end;
1017
 
    }
1018
 
    
1019
 
    if(not debug){
1020
 
      avahi_set_log_function(empty_log);
1021
 
    }
1022
 
    
1023
 
    /* Initialize the pseudo-RNG for Avahi */
1024
 
    srand((unsigned int) time(NULL));
1025
 
    
1026
 
    /* Allocate main Avahi loop object */
1027
 
    mc.simple_poll = avahi_simple_poll_new();
1028
 
    if(mc.simple_poll == NULL) {
1029
 
        fprintf(stderr, "Avahi: Failed to create simple poll"
1030
 
                " object.\n");
1031
 
        exitcode = EXIT_FAILURE;
1032
 
        goto end;
1033
 
    }
1034
 
    
1035
 
    {
1036
 
      AvahiServerConfig config;
1037
 
      /* Do not publish any local Zeroconf records */
1038
 
      avahi_server_config_init(&config);
1039
 
      config.publish_hinfo = 0;
1040
 
      config.publish_addresses = 0;
1041
 
      config.publish_workstation = 0;
1042
 
      config.publish_domain = 0;
1043
 
      
1044
 
      /* Allocate a new server */
1045
 
      mc.server = avahi_server_new(avahi_simple_poll_get
1046
 
                                   (mc.simple_poll), &config, NULL,
1047
 
                                   NULL, &error);
1048
 
      
1049
 
      /* Free the Avahi configuration data */
1050
 
      avahi_server_config_free(&config);
1051
 
    }
1052
 
    
1053
 
    /* Check if creating the Avahi server object succeeded */
1054
 
    if(mc.server == NULL) {
1055
 
        fprintf(stderr, "Failed to create Avahi server: %s\n",
1056
 
                avahi_strerror(error));
1057
 
        exitcode = EXIT_FAILURE;
1058
 
        goto end;
1059
 
    }
1060
 
    
1061
 
    /* Create the Avahi service browser */
1062
 
    sb = avahi_s_service_browser_new(mc.server, if_index,
1063
 
                                     AVAHI_PROTO_INET6,
1064
 
                                     "_mandos._tcp", NULL, 0,
1065
 
                                     browse_callback, &mc);
1066
 
    if(sb == NULL) {
1067
 
        fprintf(stderr, "Failed to create service browser: %s\n",
1068
 
                avahi_strerror(avahi_server_errno(mc.server)));
1069
 
        exitcode = EXIT_FAILURE;
1070
 
        goto end;
1071
 
    }
1072
 
    
1073
 
    /* Run the main loop */
1074
 
    
1075
 
    if(debug){
1076
 
      fprintf(stderr, "Starting Avahi loop search\n");
1077
 
    }
1078
 
    
1079
 
    avahi_simple_poll_loop(mc.simple_poll);
1080
 
    
 
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
  
1081
1278
 end:
1082
 
    
1083
 
    if(debug){
1084
 
      fprintf(stderr, "%s exiting\n", argv[0]);
1085
 
    }
1086
 
    
1087
 
    /* Cleanup things */
1088
 
    if(sb != NULL)
1089
 
        avahi_s_service_browser_free(sb);
1090
 
    
1091
 
    if(mc.server != NULL)
1092
 
        avahi_server_free(mc.server);
1093
 
    
1094
 
    if(mc.simple_poll != NULL)
1095
 
        avahi_simple_poll_free(mc.simple_poll);
1096
 
    
1097
 
    if(gnutls_initalized){
1098
 
      gnutls_certificate_free_credentials(mc.cred);
1099
 
      gnutls_global_deinit();
1100
 
      gnutls_dh_params_deinit(mc.dh_params);
1101
 
    }
1102
 
    
1103
 
    if(gpgme_initalized){
1104
 
      gpgme_release(mc.ctx);
1105
 
    }
1106
 
    
1107
 
    /* Removes the temp directory used by GPGME */
1108
 
    if(tempdir[0] != '\0'){
1109
 
      DIR *d;
1110
 
      struct dirent *direntry;
1111
 
      d = opendir(tempdir);
1112
 
      if(d == NULL){
1113
 
        if(errno != ENOENT){
1114
 
          perror("opendir");
1115
 
        }
1116
 
      } else {
1117
 
        while(true){
1118
 
          direntry = readdir(d);
1119
 
          if(direntry == NULL){
1120
 
            break;
1121
 
          }
1122
 
          if(direntry->d_type == DT_REG){
1123
 
            char *fullname = NULL;
1124
 
            ret = asprintf(&fullname, "%s/%s", tempdir,
1125
 
                           direntry->d_name);
1126
 
            if(ret < 0){
1127
 
              perror("asprintf");
1128
 
              continue;
1129
 
            }
1130
 
            ret = unlink(fullname);
1131
 
            if(ret == -1){
1132
 
              fprintf(stderr, "unlink(\"%s\"): %s",
1133
 
                      fullname, strerror(errno));
1134
 
            }
1135
 
            free(fullname);
1136
 
          }
1137
 
        }
1138
 
        closedir(d);
1139
 
      }
1140
 
      ret = rmdir(tempdir);
1141
 
      if(ret == -1 and errno != ENOENT){
1142
 
        perror("rmdir");
1143
 
      }
1144
 
    }
1145
 
          
1146
 
    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;
1147
1367
}