/mandos/release

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

« back to all changes in this revision

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

Merge from Björn:

* plugin-runner.c (main): Bug fix: For the "--options-for" option, do
                          not mangle arguments with colon characters.
                          Also support adding empty arguments.

* plugins.d/mandos-client.c: (mc): New global variable; moved from
                                   "main".
  (init_gpgme, pgp_packet_decrypt, init_gnutls_global,
  init_gnutls_session, start_mandos_communication): Removed "mc"
                                                    argument.  All
                                                    callers changed.

  (resolve_callback, browse_callback): Ignore "userdata" argument.
                                       All callers changed.
  (handle_sigterm): New function.
  (main): Add "handle_sigterm" as signal handler for SIGTERM before
          starting the main loop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#include <stddef.h>             /* NULL, size_t, ssize_t */
43
43
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
44
44
                                   srand() */
45
 
#include <stdbool.h>            /* bool, true */
 
45
#include <stdbool.h>            /* bool, false, true */
46
46
#include <string.h>             /* memset(), strcmp(), strlen(),
47
47
                                   strerror(), asprintf(), strcpy() */
48
 
#include <sys/ioctl.h>          /* ioctl */
 
48
#include <sys/ioctl.h>          /* ioctl */
49
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
50
50
                                   sockaddr_in6, PF_INET6,
51
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
52
 
                                   uid_t, gid_t, open(), opendir(),
53
 
                                   DIR */
 
51
                                   SOCK_STREAM, uid_t, gid_t, open(),
 
52
                                   opendir(), DIR */
54
53
#include <sys/stat.h>           /* open() */
55
54
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
56
 
                                   struct in6_addr, inet_pton(),
57
 
                                   connect() */
 
55
                                   inet_pton(), connect() */
58
56
#include <fcntl.h>              /* open() */
59
57
#include <dirent.h>             /* opendir(), struct dirent, readdir()
60
58
                                 */
65
63
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
66
64
                                   SIOCSIFFLAGS, if_indextoname(),
67
65
                                   if_nametoindex(), IF_NAMESIZE */
68
 
#include <netinet/in.h>
 
66
#include <netinet/in.h>         /* IN6_IS_ADDR_LINKLOCAL,
 
67
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
 
68
                                */
69
69
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
70
70
                                   getuid(), getgid(), setuid(),
71
71
                                   setgid() */
72
72
#include <arpa/inet.h>          /* inet_pton(), htons */
73
 
#include <iso646.h>             /* not, and, or */
 
73
#include <iso646.h>             /* not, or, and */
74
74
#include <argp.h>               /* struct argp_option, error_t, struct
75
75
                                   argp_state, struct argp,
76
76
                                   argp_parse(), ARGP_KEY_ARG,
77
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
78
#include <signal.h>             /* sigemptyset(), sigaddset(),
 
79
                                   sigaction(), SIGTERM, sigaction */
 
80
 
78
81
#ifdef __linux__
79
82
#include <sys/klog.h>           /* klogctl() */
80
83
#endif
129
132
  gpgme_ctx_t ctx;
130
133
} mandos_context;
131
134
 
 
135
/* global context so signal handler can reach it*/
 
136
mandos_context mc;
 
137
 
132
138
/*
133
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
134
 
 * "buffer_capacity" is how much is currently allocated,
135
 
 * "buffer_length" is how much is already used.
 
139
 * Make additional room in "buffer" for at least BUFFER_SIZE
 
140
 * additional bytes. "buffer_capacity" is how much is currently
 
141
 * allocated, "buffer_length" is how much is already used.
136
142
 */
137
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
143
size_t incbuffer(char **buffer, size_t buffer_length,
138
144
                  size_t buffer_capacity){
139
145
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
140
146
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
149
155
/* 
150
156
 * Initialize GPGME.
151
157
 */
152
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
158
static bool init_gpgme(const char *seckey,
153
159
                       const char *pubkey, const char *tempdir){
154
160
  int ret;
155
161
  gpgme_error_t rc;
176
182
      return false;
177
183
    }
178
184
    
179
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
185
    rc = gpgme_op_import(mc.ctx, pgp_data);
180
186
    if(rc != GPG_ERR_NO_ERROR){
181
187
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
182
188
              gpgme_strsource(rc), gpgme_strerror(rc));
192
198
  }
193
199
  
194
200
  if(debug){
195
 
    fprintf(stderr, "Initialize gpgme\n");
 
201
    fprintf(stderr, "Initializing GPGME\n");
196
202
  }
197
203
  
198
204
  /* Init GPGME */
225
231
  }
226
232
  
227
233
  /* Create new GPGME "context" */
228
 
  rc = gpgme_new(&(mc->ctx));
 
234
  rc = gpgme_new(&(mc.ctx));
229
235
  if(rc != GPG_ERR_NO_ERROR){
230
236
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
231
237
            gpgme_strsource(rc), gpgme_strerror(rc));
243
249
 * Decrypt OpenPGP data.
244
250
 * Returns -1 on error
245
251
 */
246
 
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
247
 
                                  const char *cryptotext,
 
252
static ssize_t pgp_packet_decrypt(const char *cryptotext,
248
253
                                  size_t crypto_size,
249
254
                                  char **plaintext){
250
255
  gpgme_data_t dh_crypto, dh_plain;
277
282
  
278
283
  /* Decrypt data from the cryptotext data buffer to the plaintext
279
284
     data buffer */
280
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
285
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
281
286
  if(rc != GPG_ERR_NO_ERROR){
282
287
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
283
288
            gpgme_strsource(rc), gpgme_strerror(rc));
284
289
    plaintext_length = -1;
285
290
    if(debug){
286
291
      gpgme_decrypt_result_t result;
287
 
      result = gpgme_op_decrypt_result(mc->ctx);
 
292
      result = gpgme_op_decrypt_result(mc.ctx);
288
293
      if(result == NULL){
289
294
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
290
295
      } else {
326
331
  
327
332
  *plaintext = NULL;
328
333
  while(true){
329
 
    plaintext_capacity = adjustbuffer(plaintext,
 
334
    plaintext_capacity = incbuffer(plaintext,
330
335
                                      (size_t)plaintext_length,
331
336
                                      plaintext_capacity);
332
337
    if(plaintext_capacity == 0){
333
 
        perror("adjustbuffer");
 
338
        perror("incbuffer");
334
339
        plaintext_length = -1;
335
340
        goto decrypt_end;
336
341
    }
382
387
  fprintf(stderr, "GnuTLS: %s", string);
383
388
}
384
389
 
385
 
static int init_gnutls_global(mandos_context *mc,
386
 
                              const char *pubkeyfilename,
 
390
static int init_gnutls_global(const char *pubkeyfilename,
387
391
                              const char *seckeyfilename){
388
392
  int ret;
389
393
  
407
411
  }
408
412
  
409
413
  /* OpenPGP credentials */
410
 
  gnutls_certificate_allocate_credentials(&mc->cred);
 
414
  gnutls_certificate_allocate_credentials(&mc.cred);
411
415
  if(ret != GNUTLS_E_SUCCESS){
412
416
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
413
 
                                                  * from
414
 
                                                  * -Wunreachable-code
415
 
                                                  */
 
417
                                                    from
 
418
                                                    -Wunreachable-code
 
419
                                                 */
416
420
            safer_gnutls_strerror(ret));
417
421
    gnutls_global_deinit();
418
422
    return -1;
425
429
  }
426
430
  
427
431
  ret = gnutls_certificate_set_openpgp_key_file
428
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
432
    (mc.cred, pubkeyfilename, seckeyfilename,
429
433
     GNUTLS_OPENPGP_FMT_BASE64);
430
434
  if(ret != GNUTLS_E_SUCCESS){
431
435
    fprintf(stderr,
437
441
  }
438
442
  
439
443
  /* GnuTLS server initialization */
440
 
  ret = gnutls_dh_params_init(&mc->dh_params);
 
444
  ret = gnutls_dh_params_init(&mc.dh_params);
441
445
  if(ret != GNUTLS_E_SUCCESS){
442
446
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
443
447
            " %s\n", safer_gnutls_strerror(ret));
444
448
    goto globalfail;
445
449
  }
446
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
450
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
447
451
  if(ret != GNUTLS_E_SUCCESS){
448
452
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
449
453
            safer_gnutls_strerror(ret));
450
454
    goto globalfail;
451
455
  }
452
456
  
453
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
457
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
454
458
  
455
459
  return 0;
456
460
  
457
461
 globalfail:
458
462
  
459
 
  gnutls_certificate_free_credentials(mc->cred);
 
463
  gnutls_certificate_free_credentials(mc.cred);
460
464
  gnutls_global_deinit();
461
 
  gnutls_dh_params_deinit(mc->dh_params);
 
465
  gnutls_dh_params_deinit(mc.dh_params);
462
466
  return -1;
463
467
}
464
468
 
465
 
static int init_gnutls_session(mandos_context *mc,
466
 
                               gnutls_session_t *session){
 
469
static int init_gnutls_session(gnutls_session_t *session){
467
470
  int ret;
468
471
  /* GnuTLS session creation */
469
472
  ret = gnutls_init(session, GNUTLS_SERVER);
474
477
  
475
478
  {
476
479
    const char *err;
477
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
480
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
478
481
    if(ret != GNUTLS_E_SUCCESS){
479
482
      fprintf(stderr, "Syntax error at: %s\n", err);
480
483
      fprintf(stderr, "GnuTLS error: %s\n",
485
488
  }
486
489
  
487
490
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
488
 
                               mc->cred);
 
491
                               mc.cred);
489
492
  if(ret != GNUTLS_E_SUCCESS){
490
493
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
491
494
            safer_gnutls_strerror(ret));
497
500
  gnutls_certificate_server_set_request(*session,
498
501
                                        GNUTLS_CERT_IGNORE);
499
502
  
500
 
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
503
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
501
504
  
502
505
  return 0;
503
506
}
509
512
/* Called when a Mandos server is found */
510
513
static int start_mandos_communication(const char *ip, uint16_t port,
511
514
                                      AvahiIfIndex if_index,
512
 
                                      mandos_context *mc){
 
515
                                      int af){
513
516
  int ret, tcp_sd;
514
517
  ssize_t sret;
515
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
518
  union {
 
519
    struct sockaddr_in in;
 
520
    struct sockaddr_in6 in6;
 
521
  } to;
516
522
  char *buffer = NULL;
517
523
  char *decrypted_buffer;
518
524
  size_t buffer_length = 0;
520
526
  ssize_t decrypted_buffer_size;
521
527
  size_t written;
522
528
  int retval = 0;
523
 
  char interface[IF_NAMESIZE];
524
529
  gnutls_session_t session;
525
 
  
526
 
  ret = init_gnutls_session(mc, &session);
 
530
  int pf;                       /* Protocol family */
 
531
  
 
532
  switch(af){
 
533
  case AF_INET6:
 
534
    pf = PF_INET6;
 
535
    break;
 
536
  case AF_INET:
 
537
    pf = PF_INET;
 
538
    break;
 
539
  default:
 
540
    fprintf(stderr, "Bad address family: %d\n", af);
 
541
    return -1;
 
542
  }
 
543
  
 
544
  ret = init_gnutls_session(&session);
527
545
  if(ret != 0){
528
546
    return -1;
529
547
  }
530
548
  
531
549
  if(debug){
532
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
550
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
533
551
            "\n", ip, port);
534
552
  }
535
553
  
536
 
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
 
554
  tcp_sd = socket(pf, SOCK_STREAM, 0);
537
555
  if(tcp_sd < 0){
538
556
    perror("socket");
539
557
    return -1;
540
558
  }
541
559
  
542
 
  if(debug){
543
 
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
544
 
      perror("if_indextoname");
545
 
      return -1;
546
 
    }
547
 
    fprintf(stderr, "Binding to interface %s\n", interface);
548
 
  }
549
 
  
550
560
  memset(&to, 0, sizeof(to));
551
 
  to.in6.sin6_family = AF_INET6;
552
 
  /* It would be nice to have a way to detect if we were passed an
553
 
     IPv4 address here.   Now we assume an IPv6 address. */
554
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
561
  if(af == AF_INET6){
 
562
    to.in6.sin6_family = (uint16_t)af;
 
563
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
564
  } else {                      /* IPv4 */
 
565
    to.in.sin_family = (sa_family_t)af;
 
566
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
567
  }
555
568
  if(ret < 0 ){
556
569
    perror("inet_pton");
557
570
    return -1;
560
573
    fprintf(stderr, "Bad address: %s\n", ip);
561
574
    return -1;
562
575
  }
563
 
  to.in6.sin6_port = htons(port); /* Spurious warnings from
 
576
  if(af == AF_INET6){
 
577
    to.in6.sin6_port = htons(port); /* Spurious warnings from
 
578
                                       -Wconversion and
 
579
                                       -Wunreachable-code */
 
580
    
 
581
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
 
582
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
 
583
                              -Wunreachable-code*/
 
584
      if(if_index == AVAHI_IF_UNSPEC){
 
585
        fprintf(stderr, "An IPv6 link-local address is incomplete"
 
586
                " without a network interface\n");
 
587
        return -1;
 
588
      }
 
589
      /* Set the network interface number as scope */
 
590
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
591
    }
 
592
  } else {
 
593
    to.in.sin_port = htons(port); /* Spurious warnings from
564
594
                                     -Wconversion and
565
595
                                     -Wunreachable-code */
566
 
  
567
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
596
  }
568
597
  
569
598
  if(debug){
570
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
571
 
            port);
572
 
    char addrstr[INET6_ADDRSTRLEN] = "";
573
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
574
 
                 sizeof(addrstr)) == NULL){
 
599
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
 
600
      char interface[IF_NAMESIZE];
 
601
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
602
        perror("if_indextoname");
 
603
      } else {
 
604
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
 
605
                ip, interface, port);
 
606
      }
 
607
    } else {
 
608
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
609
              port);
 
610
    }
 
611
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
 
612
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
 
613
    const char *pcret;
 
614
    if(af == AF_INET6){
 
615
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
 
616
                        sizeof(addrstr));
 
617
    } else {
 
618
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
 
619
                        sizeof(addrstr));
 
620
    }
 
621
    if(pcret == NULL){
575
622
      perror("inet_ntop");
576
623
    } else {
577
624
      if(strcmp(addrstr, ip) != 0){
580
627
    }
581
628
  }
582
629
  
583
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
 
630
  if(af == AF_INET6){
 
631
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
632
  } else {
 
633
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
634
  }
584
635
  if(ret < 0){
585
636
    perror("connect");
586
637
    return -1;
632
683
  /* Read OpenPGP packet that contains the wanted password */
633
684
  
634
685
  if(debug){
635
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
686
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
636
687
            ip);
637
688
  }
638
689
  
639
690
  while(true){
640
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
691
    buffer_capacity = incbuffer(&buffer, buffer_length,
641
692
                                   buffer_capacity);
642
693
    if(buffer_capacity == 0){
643
 
      perror("adjustbuffer");
 
694
      perror("incbuffer");
644
695
      retval = -1;
645
696
      goto mandos_end;
646
697
    }
685
736
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
686
737
  
687
738
  if(buffer_length > 0){
688
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
739
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
689
740
                                               buffer_length,
690
741
                                               &decrypted_buffer);
691
742
    if(decrypted_buffer_size >= 0){
726
777
 
727
778
static void resolve_callback(AvahiSServiceResolver *r,
728
779
                             AvahiIfIndex interface,
729
 
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
780
                             AvahiProtocol proto,
730
781
                             AvahiResolverEvent event,
731
782
                             const char *name,
732
783
                             const char *type,
737
788
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
738
789
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
739
790
                             flags,
740
 
                             void* userdata){
741
 
  mandos_context *mc = userdata;
 
791
                             AVAHI_GCC_UNUSED void* userdata){
742
792
  assert(r);
743
793
  
744
794
  /* Called whenever a service has been resolved successfully or
749
799
  case AVAHI_RESOLVER_FAILURE:
750
800
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
751
801
            " of type '%s' in domain '%s': %s\n", name, type, domain,
752
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
802
            avahi_strerror(avahi_server_errno(mc.server)));
753
803
    break;
754
804
    
755
805
  case AVAHI_RESOLVER_FOUND:
761
811
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
762
812
                ip, (intmax_t)interface, port);
763
813
      }
764
 
      int ret = start_mandos_communication(ip, port, interface, mc);
 
814
      int ret = start_mandos_communication(ip, port, interface,
 
815
                                           avahi_proto_to_af(proto));
765
816
      if(ret == 0){
766
 
        avahi_simple_poll_quit(mc->simple_poll);
 
817
        avahi_simple_poll_quit(mc.simple_poll);
767
818
      }
768
819
    }
769
820
  }
779
830
                            const char *domain,
780
831
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
781
832
                            flags,
782
 
                            void* userdata){
783
 
  mandos_context *mc = userdata;
 
833
                            AVAHI_GCC_UNUSED void* userdata){
784
834
  assert(b);
785
835
  
786
836
  /* Called whenever a new services becomes available on the LAN or
791
841
  case AVAHI_BROWSER_FAILURE:
792
842
    
793
843
    fprintf(stderr, "(Avahi browser) %s\n",
794
 
            avahi_strerror(avahi_server_errno(mc->server)));
795
 
    avahi_simple_poll_quit(mc->simple_poll);
 
844
            avahi_strerror(avahi_server_errno(mc.server)));
 
845
    avahi_simple_poll_quit(mc.simple_poll);
796
846
    return;
797
847
    
798
848
  case AVAHI_BROWSER_NEW:
801
851
       the callback function is called the Avahi server will free the
802
852
       resolver for us. */
803
853
    
804
 
    if(!(avahi_s_service_resolver_new(mc->server, interface,
 
854
    if(!(avahi_s_service_resolver_new(mc.server, interface,
805
855
                                       protocol, name, type, domain,
806
856
                                       AVAHI_PROTO_INET6, 0,
807
 
                                       resolve_callback, mc)))
 
857
                                       resolve_callback, NULL)))
808
858
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
809
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
859
              name, avahi_strerror(avahi_server_errno(mc.server)));
810
860
    break;
811
861
    
812
862
  case AVAHI_BROWSER_REMOVE:
821
871
  }
822
872
}
823
873
 
 
874
static void handle_sigterm(__attribute__((unused)) int sig){
 
875
  int old_errno = errno;
 
876
  avahi_simple_poll_quit(mc.simple_poll);
 
877
  errno = old_errno;
 
878
}
 
879
 
824
880
int main(int argc, char *argv[]){
825
881
  AvahiSServiceBrowser *sb = NULL;
826
882
  int error;
840
896
  const char *seckey = PATHDIR "/" SECKEY;
841
897
  const char *pubkey = PATHDIR "/" PUBKEY;
842
898
  
843
 
  mandos_context mc = { .simple_poll = NULL, .server = NULL,
844
 
                        .dh_bits = 1024, .priority = "SECURE256"
845
 
                        ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
899
  /* Initialize Mandos context */
 
900
  mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
 
901
                         .dh_bits = 1024, .priority = "SECURE256"
 
902
                         ":!CTYPE-X.509:+CTYPE-OPENPGP" };
846
903
  bool gnutls_initialized = false;
847
904
  bool gpgme_initialized = false;
848
905
  double delay = 2.5;
 
906
 
 
907
  struct sigaction old_sigterm_action;
 
908
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
849
909
  
850
910
  {
851
911
    struct argp_option options[] = {
857
917
        .group = 1 },
858
918
      { .name = "interface", .key = 'i',
859
919
        .arg = "NAME",
860
 
        .doc = "Interface that will be used to search for Mandos"
861
 
        " servers",
 
920
        .doc = "Network interface that will be used to search for"
 
921
        " Mandos servers",
862
922
        .group = 1 },
863
923
      { .name = "seckey", .key = 's',
864
924
        .arg = "FILE",
944
1004
  }
945
1005
  
946
1006
  /* If the interface is down, bring it up */
947
 
  {
 
1007
  if(interface[0] != '\0'){
948
1008
#ifdef __linux__
949
1009
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
950
1010
       messages to mess up the prompt */
951
1011
    ret = klogctl(8, NULL, 5);
 
1012
    bool restore_loglevel = true;
952
1013
    if(ret == -1){
 
1014
      restore_loglevel = false;
953
1015
      perror("klogctl");
954
1016
    }
955
1017
#endif
959
1021
      perror("socket");
960
1022
      exitcode = EXIT_FAILURE;
961
1023
#ifdef __linux__
962
 
      ret = klogctl(7, NULL, 0);
963
 
      if(ret == -1){
964
 
        perror("klogctl");
 
1024
      if(restore_loglevel){
 
1025
        ret = klogctl(7, NULL, 0);
 
1026
        if(ret == -1){
 
1027
          perror("klogctl");
 
1028
        }
965
1029
      }
966
1030
#endif
967
1031
      goto end;
971
1035
    if(ret == -1){
972
1036
      perror("ioctl SIOCGIFFLAGS");
973
1037
#ifdef __linux__
974
 
      ret = klogctl(7, NULL, 0);
975
 
      if(ret == -1){
976
 
        perror("klogctl");
 
1038
      if(restore_loglevel){
 
1039
        ret = klogctl(7, NULL, 0);
 
1040
        if(ret == -1){
 
1041
          perror("klogctl");
 
1042
        }
977
1043
      }
978
1044
#endif
979
1045
      exitcode = EXIT_FAILURE;
986
1052
        perror("ioctl SIOCSIFFLAGS");
987
1053
        exitcode = EXIT_FAILURE;
988
1054
#ifdef __linux__
989
 
        ret = klogctl(7, NULL, 0);
990
 
        if(ret == -1){
991
 
          perror("klogctl");
 
1055
        if(restore_loglevel){
 
1056
          ret = klogctl(7, NULL, 0);
 
1057
          if(ret == -1){
 
1058
            perror("klogctl");
 
1059
          }
992
1060
        }
993
1061
#endif
994
1062
        goto end;
1013
1081
      perror("close");
1014
1082
    }
1015
1083
#ifdef __linux__
1016
 
    /* Restores kernel loglevel to default */
1017
 
    ret = klogctl(7, NULL, 0);
1018
 
    if(ret == -1){
1019
 
      perror("klogctl");
 
1084
    if(restore_loglevel){
 
1085
      /* Restores kernel loglevel to default */
 
1086
      ret = klogctl(7, NULL, 0);
 
1087
      if(ret == -1){
 
1088
        perror("klogctl");
 
1089
      }
1020
1090
    }
1021
1091
#endif
1022
1092
  }
1024
1094
  uid = getuid();
1025
1095
  gid = getgid();
1026
1096
  
 
1097
  errno = 0;
1027
1098
  setgid(gid);
1028
1099
  if(ret == -1){
1029
1100
    perror("setgid");
1034
1105
    perror("setuid");
1035
1106
  }
1036
1107
  
1037
 
  ret = init_gnutls_global(&mc, pubkey, seckey);
 
1108
  ret = init_gnutls_global(pubkey, seckey);
1038
1109
  if(ret == -1){
1039
1110
    fprintf(stderr, "init_gnutls_global failed\n");
1040
1111
    exitcode = EXIT_FAILURE;
1049
1120
  }
1050
1121
  tempdir_created = true;
1051
1122
  
1052
 
  if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
1123
  if(not init_gpgme(pubkey, seckey, tempdir)){
1053
1124
    fprintf(stderr, "init_gpgme failed\n");
1054
1125
    exitcode = EXIT_FAILURE;
1055
1126
    goto end;
1057
1128
    gpgme_initialized = true;
1058
1129
  }
1059
1130
  
1060
 
  if_index = (AvahiIfIndex) if_nametoindex(interface);
1061
 
  if(if_index == 0){
1062
 
    fprintf(stderr, "No such interface: \"%s\"\n", interface);
1063
 
    exitcode = EXIT_FAILURE;
1064
 
    goto end;
 
1131
  if(interface[0] != '\0'){
 
1132
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1133
    if(if_index == 0){
 
1134
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1135
      exitcode = EXIT_FAILURE;
 
1136
      goto end;
 
1137
    }
1065
1138
  }
1066
1139
  
1067
1140
  if(connect_to != NULL){
1084
1157
    port = (uint16_t)tmpmax;
1085
1158
    *address = '\0';
1086
1159
    address = connect_to;
1087
 
    ret = start_mandos_communication(address, port, if_index, &mc);
 
1160
    /* Colon in address indicates IPv6 */
 
1161
    int af;
 
1162
    if(strchr(address, ':') != NULL){
 
1163
      af = AF_INET6;
 
1164
    } else {
 
1165
      af = AF_INET;
 
1166
    }
 
1167
    ret = start_mandos_communication(address, port, if_index, af);
1088
1168
    if(ret < 0){
1089
1169
      exitcode = EXIT_FAILURE;
1090
1170
    } else {
1137
1217
  /* Create the Avahi service browser */
1138
1218
  sb = avahi_s_service_browser_new(mc.server, if_index,
1139
1219
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
1140
 
                                   NULL, 0, browse_callback, &mc);
 
1220
                                   NULL, 0, browse_callback, NULL);
1141
1221
  if(sb == NULL){
1142
1222
    fprintf(stderr, "Failed to create service browser: %s\n",
1143
1223
            avahi_strerror(avahi_server_errno(mc.server)));
1145
1225
    goto end;
1146
1226
  }
1147
1227
  
 
1228
  sigemptyset(&sigterm_action.sa_mask);
 
1229
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1230
  if(ret == -1){
 
1231
    perror("sigaddset");
 
1232
    exitcode = EXIT_FAILURE;
 
1233
    goto end;
 
1234
  }
 
1235
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1236
  if(ret == -1){
 
1237
    perror("sigaction");
 
1238
    exitcode = EXIT_FAILURE;
 
1239
    goto end;
 
1240
  }  
 
1241
  
1148
1242
  /* Run the main loop */
1149
1243
  
1150
1244
  if(debug){