/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-01-18 06:41:57 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090118064157-8o4oia1y0t8di0xj
* debian/mandos-client.lintian-overrides: Remove override for
                                          unbreakable line in
                                          plugin-runner manual page.
* plugin-runner.xml (EXAMPLES): Make long command line more breakable.

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