/mandos/release

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

« back to all changes in this revision

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

* plugins.d/mandos-client.c (browse_callback, main): Do not require
                                                     IPv6.
  (main): Removed redundant initialization of "mc".

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
 
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(), abort() */
 
43
                                   srand(), strtof() */
48
44
#include <stdbool.h>            /* bool, false, true */
49
45
#include <string.h>             /* memset(), strcmp(), strlen(),
50
46
                                   strerror(), asprintf(), strcpy() */
71
67
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
72
68
                                */
73
69
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
 
                                   getuid(), getgid(), seteuid(),
75
 
                                   setgid(), pause() */
 
70
                                   getuid(), getgid(), setuid(),
 
71
                                   setgid() */
76
72
#include <arpa/inet.h>          /* inet_pton(), htons */
77
73
#include <iso646.h>             /* not, or, and */
78
74
#include <argp.h>               /* struct argp_option, error_t, struct
80
76
                                   argp_parse(), ARGP_KEY_ARG,
81
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
78
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
 
                                   sigaction(), SIGTERM, sig_atomic_t,
84
 
                                   raise() */
 
79
                                   sigaction(), SIGTERM, sigaction,
 
80
                                   sig_atomic_t */
85
81
 
86
82
#ifdef __linux__
87
83
#include <sys/klog.h>           /* klogctl() */
125
121
static const char mandos_protocol_version[] = "1";
126
122
const char *argp_program_version = "mandos-client " VERSION;
127
123
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
128
 
static const char sys_class_net[] = "/sys/class/net";
129
 
char *connect_to = NULL;
130
124
 
131
125
/* Used for passing in values through the Avahi callback functions */
132
126
typedef struct {
144
138
                      .dh_bits = 1024, .priority = "SECURE256"
145
139
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
146
140
 
147
 
sig_atomic_t quit_now = 0;
148
 
int signal_received = 0;
149
 
 
150
141
/*
151
142
 * Make additional room in "buffer" for at least BUFFER_SIZE more
152
143
 * bytes. "buffer_capacity" is how much is currently allocated,
169
160
 */
170
161
static bool init_gpgme(const char *seckey,
171
162
                       const char *pubkey, const char *tempdir){
 
163
  int ret;
172
164
  gpgme_error_t rc;
173
165
  gpgme_engine_info_t engine_info;
174
166
  
177
169
   * Helper function to insert pub and seckey to the engine keyring.
178
170
   */
179
171
  bool import_key(const char *filename){
180
 
    int ret;
181
172
    int fd;
182
173
    gpgme_data_t pgp_data;
183
174
    
254
245
    return false;
255
246
  }
256
247
  
257
 
  return true;
 
248
  return true; 
258
249
}
259
250
 
260
251
/* 
314
305
        }
315
306
        gpgme_recipient_t recipient;
316
307
        recipient = result->recipients;
317
 
        while(recipient != NULL){
318
 
          fprintf(stderr, "Public key algorithm: %s\n",
319
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
320
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
321
 
          fprintf(stderr, "Secret key available: %s\n",
322
 
                  recipient->status == GPG_ERR_NO_SECKEY
323
 
                  ? "No" : "Yes");
324
 
          recipient = recipient->next;
 
308
        if(recipient){
 
309
          while(recipient != NULL){
 
310
            fprintf(stderr, "Public key algorithm: %s\n",
 
311
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
312
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
313
            fprintf(stderr, "Secret key available: %s\n",
 
314
                    recipient->status == GPG_ERR_NO_SECKEY
 
315
                    ? "No" : "Yes");
 
316
            recipient = recipient->next;
 
317
          }
325
318
        }
326
319
      }
327
320
    }
479
472
static int init_gnutls_session(gnutls_session_t *session){
480
473
  int ret;
481
474
  /* GnuTLS session creation */
482
 
  do {
483
 
    ret = gnutls_init(session, GNUTLS_SERVER);
484
 
    if(quit_now){
485
 
      return -1;
486
 
    }
487
 
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
475
  ret = gnutls_init(session, GNUTLS_SERVER);
488
476
  if(ret != GNUTLS_E_SUCCESS){
489
477
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
490
478
            safer_gnutls_strerror(ret));
492
480
  
493
481
  {
494
482
    const char *err;
495
 
    do {
496
 
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
497
 
      if(quit_now){
498
 
        gnutls_deinit(*session);
499
 
        return -1;
500
 
      }
501
 
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
483
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
502
484
    if(ret != GNUTLS_E_SUCCESS){
503
485
      fprintf(stderr, "Syntax error at: %s\n", err);
504
486
      fprintf(stderr, "GnuTLS error: %s\n",
508
490
    }
509
491
  }
510
492
  
511
 
  do {
512
 
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
513
 
                                 mc.cred);
514
 
    if(quit_now){
515
 
      gnutls_deinit(*session);
516
 
      return -1;
517
 
    }
518
 
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
493
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
494
                               mc.cred);
519
495
  if(ret != GNUTLS_E_SUCCESS){
520
496
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
521
497
            safer_gnutls_strerror(ret));
524
500
  }
525
501
  
526
502
  /* ignore client certificate if any. */
527
 
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
 
503
  gnutls_certificate_server_set_request(*session,
 
504
                                        GNUTLS_CERT_IGNORE);
528
505
  
529
506
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
530
507
  
539
516
static int start_mandos_communication(const char *ip, uint16_t port,
540
517
                                      AvahiIfIndex if_index,
541
518
                                      int af){
542
 
  int ret, tcp_sd = -1;
 
519
  int ret, tcp_sd;
543
520
  ssize_t sret;
544
521
  union {
545
522
    struct sockaddr_in in;
546
523
    struct sockaddr_in6 in6;
547
524
  } to;
548
525
  char *buffer = NULL;
549
 
  char *decrypted_buffer = NULL;
 
526
  char *decrypted_buffer;
550
527
  size_t buffer_length = 0;
551
528
  size_t buffer_capacity = 0;
 
529
  ssize_t decrypted_buffer_size;
552
530
  size_t written;
553
 
  int retval = -1;
 
531
  int retval = 0;
554
532
  gnutls_session_t session;
555
533
  int pf;                       /* Protocol family */
556
534
  
557
 
  if(quit_now){
558
 
    return -1;
559
 
  }
560
 
  
561
535
  switch(af){
562
536
  case AF_INET6:
563
537
    pf = PF_INET6;
583
557
  tcp_sd = socket(pf, SOCK_STREAM, 0);
584
558
  if(tcp_sd < 0){
585
559
    perror("socket");
586
 
    goto mandos_end;
587
 
  }
588
 
  
589
 
  if(quit_now){
590
 
    goto mandos_end;
 
560
    return -1;
591
561
  }
592
562
  
593
563
  memset(&to, 0, sizeof(to));
594
564
  if(af == AF_INET6){
595
 
    to.in6.sin6_family = (sa_family_t)af;
 
565
    to.in6.sin6_family = (uint16_t)af;
596
566
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
597
567
  } else {                      /* IPv4 */
598
568
    to.in.sin_family = (sa_family_t)af;
600
570
  }
601
571
  if(ret < 0 ){
602
572
    perror("inet_pton");
603
 
    goto mandos_end;
 
573
    return -1;
604
574
  }
605
575
  if(ret == 0){
606
576
    fprintf(stderr, "Bad address: %s\n", ip);
607
 
    goto mandos_end;
 
577
    return -1;
608
578
  }
609
579
  if(af == AF_INET6){
610
580
    to.in6.sin6_port = htons(port); /* Spurious warnings from
617
587
      if(if_index == AVAHI_IF_UNSPEC){
618
588
        fprintf(stderr, "An IPv6 link-local address is incomplete"
619
589
                " without a network interface\n");
620
 
        goto mandos_end;
 
590
        return -1;
621
591
      }
622
592
      /* Set the network interface number as scope */
623
593
      to.in6.sin6_scope_id = (uint32_t)if_index;
628
598
                                     -Wunreachable-code */
629
599
  }
630
600
  
631
 
  if(quit_now){
632
 
    goto mandos_end;
633
 
  }
634
 
  
635
601
  if(debug){
636
602
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
637
603
      char interface[IF_NAMESIZE];
664
630
    }
665
631
  }
666
632
  
667
 
  if(quit_now){
668
 
    goto mandos_end;
669
 
  }
670
 
  
671
633
  if(af == AF_INET6){
672
634
    ret = connect(tcp_sd, &to.in6, sizeof(to));
673
635
  } else {
675
637
  }
676
638
  if(ret < 0){
677
639
    perror("connect");
678
 
    goto mandos_end;
679
 
  }
680
 
  
681
 
  if(quit_now){
682
 
    goto mandos_end;
 
640
    return -1;
683
641
  }
684
642
  
685
643
  const char *out = mandos_protocol_version;
690
648
                                   out_size - written));
691
649
    if(ret == -1){
692
650
      perror("write");
 
651
      retval = -1;
693
652
      goto mandos_end;
694
653
    }
695
654
    written += (size_t)ret;
703
662
        break;
704
663
      }
705
664
    }
706
 
  
707
 
    if(quit_now){
708
 
      goto mandos_end;
709
 
    }
710
665
  }
711
666
  
712
667
  if(debug){
713
668
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
714
669
  }
715
670
  
716
 
  if(quit_now){
717
 
    goto mandos_end;
718
 
  }
719
 
  
720
671
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
721
672
  
722
 
  if(quit_now){
723
 
    goto mandos_end;
724
 
  }
725
 
  
726
 
  do {
 
673
  do{
727
674
    ret = gnutls_handshake(session);
728
 
    if(quit_now){
729
 
      goto mandos_end;
730
 
    }
731
675
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
732
676
  
733
677
  if(ret != GNUTLS_E_SUCCESS){
735
679
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
736
680
      gnutls_perror(ret);
737
681
    }
 
682
    retval = -1;
738
683
    goto mandos_end;
739
684
  }
740
685
  
746
691
  }
747
692
  
748
693
  while(true){
749
 
    
750
 
    if(quit_now){
751
 
      goto mandos_end;
752
 
    }
753
 
    
754
694
    buffer_capacity = incbuffer(&buffer, buffer_length,
755
695
                                   buffer_capacity);
756
696
    if(buffer_capacity == 0){
757
697
      perror("incbuffer");
758
 
      goto mandos_end;
759
 
    }
760
 
    
761
 
    if(quit_now){
 
698
      retval = -1;
762
699
      goto mandos_end;
763
700
    }
764
701
    
773
710
      case GNUTLS_E_AGAIN:
774
711
        break;
775
712
      case GNUTLS_E_REHANDSHAKE:
776
 
        do {
 
713
        do{
777
714
          ret = gnutls_handshake(session);
778
 
          
779
 
          if(quit_now){
780
 
            goto mandos_end;
781
 
          }
782
715
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
783
716
        if(ret < 0){
784
717
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
785
718
          gnutls_perror(ret);
 
719
          retval = -1;
786
720
          goto mandos_end;
787
721
        }
788
722
        break;
789
723
      default:
790
724
        fprintf(stderr, "Unknown error while reading data from"
791
725
                " encrypted session with Mandos server\n");
 
726
        retval = -1;
792
727
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
793
728
        goto mandos_end;
794
729
      }
801
736
    fprintf(stderr, "Closing TLS session\n");
802
737
  }
803
738
  
804
 
  if(quit_now){
805
 
    goto mandos_end;
806
 
  }
807
 
  
808
 
  do {
809
 
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
810
 
    if(quit_now){
811
 
      goto mandos_end;
812
 
    }
813
 
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
739
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
814
740
  
815
741
  if(buffer_length > 0){
816
 
    ssize_t decrypted_buffer_size;
817
742
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
818
743
                                               buffer_length,
819
744
                                               &decrypted_buffer);
820
745
    if(decrypted_buffer_size >= 0){
821
 
      
822
746
      written = 0;
823
747
      while(written < (size_t) decrypted_buffer_size){
824
 
        if(quit_now){
825
 
          goto mandos_end;
826
 
        }
827
 
        
828
748
        ret = (int)fwrite(decrypted_buffer + written, 1,
829
749
                          (size_t)decrypted_buffer_size - written,
830
750
                          stdout);
833
753
            fprintf(stderr, "Error writing encrypted data: %s\n",
834
754
                    strerror(errno));
835
755
          }
836
 
          goto mandos_end;
 
756
          retval = -1;
 
757
          break;
837
758
        }
838
759
        written += (size_t)ret;
839
760
      }
840
 
      retval = 0;
 
761
      free(decrypted_buffer);
 
762
    } else {
 
763
      retval = -1;
841
764
    }
 
765
  } else {
 
766
    retval = -1;
842
767
  }
843
768
  
844
769
  /* Shutdown procedure */
845
770
  
846
771
 mandos_end:
847
 
  free(decrypted_buffer);
848
772
  free(buffer);
849
 
  if(tcp_sd >= 0){
850
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
851
 
  }
 
773
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
852
774
  if(ret == -1){
853
775
    perror("close");
854
776
  }
855
777
  gnutls_deinit(session);
856
 
  if(quit_now){
857
 
    retval = -1;
858
 
  }
859
778
  return retval;
860
779
}
861
780
 
878
797
  /* Called whenever a service has been resolved successfully or
879
798
     timed out */
880
799
  
881
 
  if(quit_now){
882
 
    return;
883
 
  }
884
 
  
885
800
  switch(event){
886
801
  default:
887
802
  case AVAHI_RESOLVER_FAILURE:
924
839
  /* Called whenever a new services becomes available on the LAN or
925
840
     is removed from the LAN */
926
841
  
927
 
  if(quit_now){
928
 
    return;
929
 
  }
930
 
  
931
842
  switch(event){
932
843
  default:
933
844
  case AVAHI_BROWSER_FAILURE:
962
873
  }
963
874
}
964
875
 
 
876
sig_atomic_t quit_now = 0;
 
877
 
965
878
/* stop main loop after sigterm has been called */
966
 
static void handle_sigterm(int sig){
 
879
static void handle_sigterm(__attribute__((unused)) int sig){
967
880
  if(quit_now){
968
881
    return;
969
882
  }
970
883
  quit_now = 1;
971
 
  signal_received = sig;
972
884
  int old_errno = errno;
973
885
  if(mc.simple_poll != NULL){
974
886
    avahi_simple_poll_quit(mc.simple_poll);
976
888
  errno = old_errno;
977
889
}
978
890
 
979
 
/* 
980
 
 * This function determines if a directory entry in /sys/class/net
981
 
 * corresponds to an acceptable network device.
982
 
 * (This function is passed to scandir(3) as a filter function.)
983
 
 */
984
 
int good_interface(const struct dirent *if_entry){
985
 
  ssize_t ssret;
986
 
  char *flagname = NULL;
987
 
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
988
 
                     if_entry->d_name);
989
 
  if(ret < 0){
990
 
    perror("asprintf");
991
 
    return 0;
992
 
  }
993
 
  if(if_entry->d_name[0] == '.'){
994
 
    return 0;
995
 
  }
996
 
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
997
 
  if(flags_fd == -1){
998
 
    perror("open");
999
 
    return 0;
1000
 
  }
1001
 
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
1002
 
  /* read line from flags_fd */
1003
 
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1004
 
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1005
 
  flagstring[(size_t)to_read] = '\0';
1006
 
  if(flagstring == NULL){
1007
 
    perror("malloc");
1008
 
    close(flags_fd);
1009
 
    return 0;
1010
 
  }
1011
 
  while(to_read > 0){
1012
 
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1013
 
                                             (size_t)to_read));
1014
 
    if(ssret == -1){
1015
 
      perror("read");
1016
 
      free(flagstring);
1017
 
      close(flags_fd);
1018
 
      return 0;
1019
 
    }
1020
 
    to_read -= ssret;
1021
 
    if(ssret == 0){
1022
 
      break;
1023
 
    }
1024
 
  }
1025
 
  close(flags_fd);
1026
 
  intmax_t tmpmax;
1027
 
  char *tmp;
1028
 
  errno = 0;
1029
 
  tmpmax = strtoimax(flagstring, &tmp, 0);
1030
 
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1031
 
                                         and not (isspace(*tmp)))
1032
 
     or tmpmax != (ifreq_flags)tmpmax){
1033
 
    if(debug){
1034
 
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1035
 
              flagstring, if_entry->d_name);
1036
 
    }
1037
 
    free(flagstring);
1038
 
    return 0;
1039
 
  }
1040
 
  free(flagstring);
1041
 
  ifreq_flags flags = (ifreq_flags)tmpmax;
1042
 
  /* Reject the loopback device */
1043
 
  if(flags & IFF_LOOPBACK){
1044
 
    if(debug){
1045
 
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1046
 
              if_entry->d_name);
1047
 
    }
1048
 
    return 0;
1049
 
  }
1050
 
  /* Accept point-to-point devices only if connect_to is specified */
1051
 
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1052
 
    if(debug){
1053
 
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1054
 
              if_entry->d_name);
1055
 
    }
1056
 
    return 1;
1057
 
  }
1058
 
  /* Otherwise, reject non-broadcast-capable devices */
1059
 
  if(not (flags & IFF_BROADCAST)){
1060
 
    if(debug){
1061
 
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1062
 
              if_entry->d_name);
1063
 
    }
1064
 
    return 0;
1065
 
  }
1066
 
  /* Accept this device */
1067
 
  if(debug){
1068
 
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
1069
 
            if_entry->d_name);
1070
 
  }
1071
 
  return 1;
1072
 
}
1073
 
 
1074
891
int main(int argc, char *argv[]){
1075
892
  AvahiSServiceBrowser *sb = NULL;
1076
893
  int error;
1078
895
  intmax_t tmpmax;
1079
896
  char *tmp;
1080
897
  int exitcode = EXIT_SUCCESS;
1081
 
  const char *interface = "";
 
898
  const char *interface = "eth0";
1082
899
  struct ifreq network;
1083
 
  int sd = -1;
1084
 
  bool take_down_interface = false;
 
900
  int sd;
1085
901
  uid_t uid;
1086
902
  gid_t gid;
 
903
  char *connect_to = NULL;
1087
904
  char tempdir[] = "/tmp/mandosXXXXXX";
1088
905
  bool tempdir_created = false;
1089
906
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1094
911
  bool gpgme_initialized = false;
1095
912
  float delay = 2.5f;
1096
913
  
1097
 
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
 
914
  struct sigaction old_sigterm_action;
1098
915
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1099
916
  
1100
 
  uid = getuid();
1101
 
  gid = getgid();
1102
 
  
1103
 
  /* Lower any group privileges we might have, just to be safe */
1104
 
  errno = 0;
1105
 
  ret = setgid(gid);
1106
 
  if(ret == -1){
1107
 
    perror("setgid");
1108
 
  }
1109
 
  
1110
 
  /* Lower user privileges (temporarily) */
1111
 
  errno = 0;
1112
 
  ret = seteuid(uid);
1113
 
  if(ret == -1){
1114
 
    perror("seteuid");
1115
 
  }
1116
 
  
1117
 
  if(quit_now){
1118
 
    goto end;
1119
 
  }
1120
 
  
1121
917
  {
1122
918
    struct argp_option options[] = {
1123
919
      { .name = "debug", .key = 128,
1219
1015
  if(not debug){
1220
1016
    avahi_set_log_function(empty_log);
1221
1017
  }
1222
 
 
1223
 
  if(interface[0] == '\0'){
1224
 
    struct dirent **direntries;
1225
 
    ret = scandir(sys_class_net, &direntries, good_interface,
1226
 
                  alphasort);
1227
 
    if(ret >= 1){
1228
 
      /* Pick the first good interface */
1229
 
      interface = strdup(direntries[0]->d_name);
1230
 
      if(debug){
1231
 
        fprintf(stderr, "Using interface \"%s\"\n", interface);
1232
 
      }
1233
 
      if(interface == NULL){
1234
 
        perror("malloc");
1235
 
        free(direntries);
1236
 
        exitcode = EXIT_FAILURE;
1237
 
        goto end;
1238
 
      }
1239
 
      free(direntries);
1240
 
    } else {
1241
 
      free(direntries);
1242
 
      fprintf(stderr, "Could not find a network interface\n");
1243
 
      exitcode = EXIT_FAILURE;
1244
 
      goto end;
1245
 
    }
1246
 
  }
1247
1018
  
1248
1019
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1249
1020
     from the signal handler */
1275
1046
    exitcode = EXIT_FAILURE;
1276
1047
    goto end;
1277
1048
  }
1278
 
  /* Need to check if the handler is SIG_IGN before handling:
1279
 
     | [[info:libc:Initial Signal Actions]] |
1280
 
     | [[info:libc:Basic Signal Handling]]  |
1281
 
  */
1282
 
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1283
 
  if(ret == -1){
1284
 
    perror("sigaction");
1285
 
    return EXIT_FAILURE;
1286
 
  }
1287
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1288
 
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1289
 
    if(ret == -1){
1290
 
      perror("sigaction");
1291
 
      exitcode = EXIT_FAILURE;
1292
 
      goto end;
1293
 
    }
1294
 
  }
1295
 
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1296
 
  if(ret == -1){
1297
 
    perror("sigaction");
1298
 
    return EXIT_FAILURE;
1299
 
  }
1300
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1301
 
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1302
 
    if(ret == -1){
1303
 
      perror("sigaction");
1304
 
      exitcode = EXIT_FAILURE;
1305
 
      goto end;
1306
 
    }
1307
 
  }
1308
 
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1309
 
  if(ret == -1){
1310
 
    perror("sigaction");
1311
 
    return EXIT_FAILURE;
1312
 
  }
1313
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1314
 
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1315
 
    if(ret == -1){
1316
 
      perror("sigaction");
1317
 
      exitcode = EXIT_FAILURE;
1318
 
      goto end;
1319
 
    }
1320
 
  }
 
1049
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1050
  if(ret == -1){
 
1051
    perror("sigaction");
 
1052
    exitcode = EXIT_FAILURE;
 
1053
    goto end;
 
1054
  }  
1321
1055
  
1322
1056
  /* If the interface is down, bring it up */
1323
 
  if(strcmp(interface, "none") != 0){
1324
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1325
 
    if(if_index == 0){
1326
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1327
 
      exitcode = EXIT_FAILURE;
1328
 
      goto end;
1329
 
    }
1330
 
    
1331
 
    if(quit_now){
1332
 
      goto end;
1333
 
    }
1334
 
    
1335
 
    /* Re-raise priviliges */
1336
 
    errno = 0;
1337
 
    ret = seteuid(0);
1338
 
    if(ret == -1){
1339
 
      perror("seteuid");
1340
 
    }
1341
 
    
 
1057
  if(interface[0] != '\0'){
1342
1058
#ifdef __linux__
1343
1059
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1344
1060
       messages to mess up the prompt */
1362
1078
        }
1363
1079
      }
1364
1080
#endif  /* __linux__ */
1365
 
      /* Lower privileges */
1366
 
      errno = 0;
1367
 
      ret = seteuid(uid);
1368
 
      if(ret == -1){
1369
 
        perror("seteuid");
1370
 
      }
1371
1081
      goto end;
1372
1082
    }
1373
1083
    strcpy(network.ifr_name, interface);
1383
1093
      }
1384
1094
#endif  /* __linux__ */
1385
1095
      exitcode = EXIT_FAILURE;
1386
 
      /* Lower privileges */
1387
 
      errno = 0;
1388
 
      ret = seteuid(uid);
1389
 
      if(ret == -1){
1390
 
        perror("seteuid");
1391
 
      }
1392
1096
      goto end;
1393
1097
    }
1394
1098
    if((network.ifr_flags & IFF_UP) == 0){
1395
1099
      network.ifr_flags |= IFF_UP;
1396
 
      take_down_interface = true;
1397
1100
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1398
1101
      if(ret == -1){
1399
 
        take_down_interface = false;
1400
 
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1102
        perror("ioctl SIOCSIFFLAGS");
1401
1103
        exitcode = EXIT_FAILURE;
1402
1104
#ifdef __linux__
1403
1105
        if(restore_loglevel){
1407
1109
          }
1408
1110
        }
1409
1111
#endif  /* __linux__ */
1410
 
        /* Lower privileges */
1411
 
        errno = 0;
1412
 
        ret = seteuid(uid);
1413
 
        if(ret == -1){
1414
 
          perror("seteuid");
1415
 
        }
1416
1112
        goto end;
1417
1113
      }
1418
1114
    }
1430
1126
        perror("nanosleep");
1431
1127
      }
1432
1128
    }
1433
 
    if(not take_down_interface){
1434
 
      /* We won't need the socket anymore */
1435
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1436
 
      if(ret == -1){
1437
 
        perror("close");
1438
 
      }
 
1129
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1130
    if(ret == -1){
 
1131
      perror("close");
1439
1132
    }
1440
1133
#ifdef __linux__
1441
1134
    if(restore_loglevel){
1446
1139
      }
1447
1140
    }
1448
1141
#endif  /* __linux__ */
1449
 
    /* Lower privileges */
1450
 
    errno = 0;
1451
 
    if(take_down_interface){
1452
 
      /* Lower privileges */
1453
 
      ret = seteuid(uid);
1454
 
      if(ret == -1){
1455
 
        perror("seteuid");
1456
 
      }
1457
 
    } else {
1458
 
      /* Lower privileges permanently */
1459
 
      ret = setuid(uid);
1460
 
      if(ret == -1){
1461
 
        perror("setuid");
1462
 
      }
1463
 
    }
1464
 
  }
1465
 
  
1466
 
  if(quit_now){
1467
 
    goto end;
 
1142
  }
 
1143
  
 
1144
  uid = getuid();
 
1145
  gid = getgid();
 
1146
  
 
1147
  errno = 0;
 
1148
  setgid(gid);
 
1149
  if(ret == -1){
 
1150
    perror("setgid");
 
1151
  }
 
1152
  
 
1153
  ret = setuid(uid);
 
1154
  if(ret == -1){
 
1155
    perror("setuid");
1468
1156
  }
1469
1157
  
1470
1158
  ret = init_gnutls_global(pubkey, seckey);
1476
1164
    gnutls_initialized = true;
1477
1165
  }
1478
1166
  
1479
 
  if(quit_now){
1480
 
    goto end;
1481
 
  }
1482
 
  
1483
 
  tempdir_created = true;
1484
1167
  if(mkdtemp(tempdir) == NULL){
1485
 
    tempdir_created = false;
1486
1168
    perror("mkdtemp");
1487
1169
    goto end;
1488
1170
  }
1489
 
  
1490
 
  if(quit_now){
1491
 
    goto end;
1492
 
  }
 
1171
  tempdir_created = true;
1493
1172
  
1494
1173
  if(not init_gpgme(pubkey, seckey, tempdir)){
1495
1174
    fprintf(stderr, "init_gpgme failed\n");
1499
1178
    gpgme_initialized = true;
1500
1179
  }
1501
1180
  
1502
 
  if(quit_now){
1503
 
    goto end;
 
1181
  if(interface[0] != '\0'){
 
1182
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1183
    if(if_index == 0){
 
1184
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1185
      exitcode = EXIT_FAILURE;
 
1186
      goto end;
 
1187
    }
1504
1188
  }
1505
1189
  
1506
1190
  if(connect_to != NULL){
1512
1196
      exitcode = EXIT_FAILURE;
1513
1197
      goto end;
1514
1198
    }
1515
 
    
1516
 
    if(quit_now){
1517
 
      goto end;
1518
 
    }
1519
 
    
1520
1199
    uint16_t port;
1521
1200
    errno = 0;
1522
1201
    tmpmax = strtoimax(address+1, &tmp, 10);
1526
1205
      exitcode = EXIT_FAILURE;
1527
1206
      goto end;
1528
1207
    }
1529
 
  
1530
 
    if(quit_now){
1531
 
      goto end;
1532
 
    }
1533
 
    
1534
1208
    port = (uint16_t)tmpmax;
1535
1209
    *address = '\0';
1536
1210
    address = connect_to;
1541
1215
    } else {
1542
1216
      af = AF_INET;
1543
1217
    }
1544
 
    
1545
 
    if(quit_now){
1546
 
      goto end;
1547
 
    }
1548
 
    
1549
1218
    ret = start_mandos_communication(address, port, if_index, af);
1550
1219
    if(ret < 0){
1551
1220
      exitcode = EXIT_FAILURE;
1554
1223
    }
1555
1224
    goto end;
1556
1225
  }
1557
 
  
1558
 
  if(quit_now){
1559
 
    goto end;
1560
 
  }
1561
 
  
 
1226
    
1562
1227
  {
1563
1228
    AvahiServerConfig config;
1564
1229
    /* Do not publish any local Zeroconf records */
1585
1250
    goto end;
1586
1251
  }
1587
1252
  
1588
 
  if(quit_now){
1589
 
    goto end;
1590
 
  }
1591
 
  
1592
1253
  /* Create the Avahi service browser */
1593
1254
  sb = avahi_s_service_browser_new(mc.server, if_index,
1594
1255
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1600
1261
    goto end;
1601
1262
  }
1602
1263
  
1603
 
  if(quit_now){
1604
 
    goto end;
1605
 
  }
1606
 
  
1607
1264
  /* Run the main loop */
1608
1265
  
1609
1266
  if(debug){
1638
1295
    gpgme_release(mc.ctx);
1639
1296
  }
1640
1297
  
1641
 
  /* Take down the network interface */
1642
 
  if(take_down_interface){
1643
 
    /* Re-raise priviliges */
1644
 
    errno = 0;
1645
 
    ret = seteuid(0);
1646
 
    if(ret == -1){
1647
 
      perror("seteuid");
1648
 
    }
1649
 
    if(geteuid() == 0){
1650
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1651
 
      if(ret == -1){
1652
 
        perror("ioctl SIOCGIFFLAGS");
1653
 
      } else if(network.ifr_flags & IFF_UP) {
1654
 
        network.ifr_flags &= ~IFF_UP; /* clear flag */
1655
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1656
 
        if(ret == -1){
1657
 
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
1658
 
        }
1659
 
      }
1660
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1661
 
      if(ret == -1){
1662
 
        perror("close");
1663
 
      }
1664
 
      /* Lower privileges permanently */
1665
 
      errno = 0;
1666
 
      ret = setuid(uid);
1667
 
      if(ret == -1){
1668
 
        perror("setuid");
1669
 
      }
1670
 
    }
1671
 
  }
1672
 
  
1673
1298
  /* Removes the temp directory used by GPGME */
1674
1299
  if(tempdir_created){
1675
1300
    DIR *d;
1714
1339
    }
1715
1340
  }
1716
1341
  
1717
 
  if(quit_now){
1718
 
    sigemptyset(&old_sigterm_action.sa_mask);
1719
 
    old_sigterm_action.sa_handler = SIG_DFL;
1720
 
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
1721
 
                                            &old_sigterm_action,
1722
 
                                            NULL));
1723
 
    if(ret == -1){
1724
 
      perror("sigaction");
1725
 
    }
1726
 
    do {
1727
 
      ret = raise(signal_received);
1728
 
    } while(ret != 0 and errno == EINTR);
1729
 
    if(ret != 0){
1730
 
      perror("raise");
1731
 
      abort();
1732
 
    }
1733
 
    TEMP_FAILURE_RETRY(pause());
1734
 
  }
1735
 
  
1736
1342
  return exitcode;
1737
1343
}