/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2009-03-15 04:22:14 UTC
  • mfrom: (326 mandos)
  • mto: This revision was merged to the branch mainline in revision 327.
  • Revision ID: teddy@fukt.bsnet.se-20090315042214-gvps0knkvuyewtxl
MergeĀ fromĀ trunk.

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