/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 at bsnet
  • Date: 2010-08-10 19:08:24 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: teddy@fukt.bsnet.se-20100810190824-5yquozxy4kh6py3f
* plugins.d/mandos-client.c: An empty interface name now means to
                             autodetect an interface; to specify no
                             particular interface, use "none".
  (sys_class_net): New global variable for the "/sys/class/net" path.
  (good_interface): New function to determine the suitability of an
                    interface.  Used by a scandir() call in main().
  (main): Changed default value for "interface" to the empty string.
          Moved "connect_to" to be a global variable.  Only take down
          and up interface if its name is not "none".
* plugins.d/mandos-client.xml (OPTIONS): Update documentation for the
                                         "--interface" option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
 
33
#ifndef _LARGEFILE_SOURCE
33
34
#define _LARGEFILE_SOURCE
 
35
#endif
 
36
#ifndef _FILE_OFFSET_BITS
34
37
#define _FILE_OFFSET_BITS 64
 
38
#endif
35
39
 
36
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
37
41
 
38
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
39
 
                                   stdout, ferror(), sscanf(),
40
 
                                   remove() */
 
43
                                   stdout, ferror(), remove() */
41
44
#include <stdint.h>             /* uint16_t, uint32_t */
42
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
43
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
44
 
                                   srand() */
 
47
                                   srand(), strtof(), abort() */
45
48
#include <stdbool.h>            /* bool, false, true */
46
49
#include <string.h>             /* memset(), strcmp(), strlen(),
47
50
                                   strerror(), asprintf(), strcpy() */
56
59
#include <fcntl.h>              /* open() */
57
60
#include <dirent.h>             /* opendir(), struct dirent, readdir()
58
61
                                 */
59
 
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
 
63
                                   strtoimax() */
60
64
#include <assert.h>             /* assert() */
61
65
#include <errno.h>              /* perror(), errno */
62
66
#include <time.h>               /* nanosleep(), time() */
67
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
68
72
                                */
69
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
70
 
                                   getuid(), getgid(), setuid(),
71
 
                                   setgid() */
 
74
                                   getuid(), getgid(), seteuid(),
 
75
                                   setgid(), pause() */
72
76
#include <arpa/inet.h>          /* inet_pton(), htons */
73
77
#include <iso646.h>             /* not, or, and */
74
78
#include <argp.h>               /* struct argp_option, error_t, struct
76
80
                                   argp_parse(), ARGP_KEY_ARG,
77
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
78
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
79
 
                                   sigaction(), SIGTERM, sigaction,
80
 
                                   sig_atomic_t */
 
83
                                   sigaction(), SIGTERM, sig_atomic_t,
 
84
                                   raise() */
81
85
 
82
86
#ifdef __linux__
83
87
#include <sys/klog.h>           /* klogctl() */
121
125
static const char mandos_protocol_version[] = "1";
122
126
const char *argp_program_version = "mandos-client " VERSION;
123
127
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;
124
130
 
125
131
/* Used for passing in values through the Avahi callback functions */
126
132
typedef struct {
138
144
                      .dh_bits = 1024, .priority = "SECURE256"
139
145
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
140
146
 
 
147
sig_atomic_t quit_now = 0;
 
148
int signal_received = 0;
 
149
 
141
150
/*
142
151
 * Make additional room in "buffer" for at least BUFFER_SIZE more
143
152
 * bytes. "buffer_capacity" is how much is currently allocated,
160
169
 */
161
170
static bool init_gpgme(const char *seckey,
162
171
                       const char *pubkey, const char *tempdir){
163
 
  int ret;
164
172
  gpgme_error_t rc;
165
173
  gpgme_engine_info_t engine_info;
166
174
  
169
177
   * Helper function to insert pub and seckey to the engine keyring.
170
178
   */
171
179
  bool import_key(const char *filename){
 
180
    int ret;
172
181
    int fd;
173
182
    gpgme_data_t pgp_data;
174
183
    
245
254
    return false;
246
255
  }
247
256
  
248
 
  return true; 
 
257
  return true;
249
258
}
250
259
 
251
260
/* 
305
314
        }
306
315
        gpgme_recipient_t recipient;
307
316
        recipient = result->recipients;
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
 
          }
 
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;
318
325
        }
319
326
      }
320
327
    }
472
479
static int init_gnutls_session(gnutls_session_t *session){
473
480
  int ret;
474
481
  /* GnuTLS session creation */
475
 
  ret = gnutls_init(session, GNUTLS_SERVER);
 
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);
476
488
  if(ret != GNUTLS_E_SUCCESS){
477
489
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
478
490
            safer_gnutls_strerror(ret));
480
492
  
481
493
  {
482
494
    const char *err;
483
 
    ret = gnutls_priority_set_direct(*session, mc.priority, &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);
484
502
    if(ret != GNUTLS_E_SUCCESS){
485
503
      fprintf(stderr, "Syntax error at: %s\n", err);
486
504
      fprintf(stderr, "GnuTLS error: %s\n",
490
508
    }
491
509
  }
492
510
  
493
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
494
 
                               mc.cred);
 
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);
495
519
  if(ret != GNUTLS_E_SUCCESS){
496
520
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
497
521
            safer_gnutls_strerror(ret));
500
524
  }
501
525
  
502
526
  /* ignore client certificate if any. */
503
 
  gnutls_certificate_server_set_request(*session,
504
 
                                        GNUTLS_CERT_IGNORE);
 
527
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
505
528
  
506
529
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
507
530
  
516
539
static int start_mandos_communication(const char *ip, uint16_t port,
517
540
                                      AvahiIfIndex if_index,
518
541
                                      int af){
519
 
  int ret, tcp_sd;
 
542
  int ret, tcp_sd = -1;
520
543
  ssize_t sret;
521
544
  union {
522
545
    struct sockaddr_in in;
523
546
    struct sockaddr_in6 in6;
524
547
  } to;
525
548
  char *buffer = NULL;
526
 
  char *decrypted_buffer;
 
549
  char *decrypted_buffer = NULL;
527
550
  size_t buffer_length = 0;
528
551
  size_t buffer_capacity = 0;
529
 
  ssize_t decrypted_buffer_size;
530
552
  size_t written;
531
 
  int retval = 0;
 
553
  int retval = -1;
532
554
  gnutls_session_t session;
533
555
  int pf;                       /* Protocol family */
534
556
  
 
557
  if(quit_now){
 
558
    return -1;
 
559
  }
 
560
  
535
561
  switch(af){
536
562
  case AF_INET6:
537
563
    pf = PF_INET6;
557
583
  tcp_sd = socket(pf, SOCK_STREAM, 0);
558
584
  if(tcp_sd < 0){
559
585
    perror("socket");
560
 
    return -1;
 
586
    goto mandos_end;
 
587
  }
 
588
  
 
589
  if(quit_now){
 
590
    goto mandos_end;
561
591
  }
562
592
  
563
593
  memset(&to, 0, sizeof(to));
564
594
  if(af == AF_INET6){
565
 
    to.in6.sin6_family = (uint16_t)af;
 
595
    to.in6.sin6_family = (sa_family_t)af;
566
596
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
567
597
  } else {                      /* IPv4 */
568
598
    to.in.sin_family = (sa_family_t)af;
570
600
  }
571
601
  if(ret < 0 ){
572
602
    perror("inet_pton");
573
 
    return -1;
 
603
    goto mandos_end;
574
604
  }
575
605
  if(ret == 0){
576
606
    fprintf(stderr, "Bad address: %s\n", ip);
577
 
    return -1;
 
607
    goto mandos_end;
578
608
  }
579
609
  if(af == AF_INET6){
580
610
    to.in6.sin6_port = htons(port); /* Spurious warnings from
587
617
      if(if_index == AVAHI_IF_UNSPEC){
588
618
        fprintf(stderr, "An IPv6 link-local address is incomplete"
589
619
                " without a network interface\n");
590
 
        return -1;
 
620
        goto mandos_end;
591
621
      }
592
622
      /* Set the network interface number as scope */
593
623
      to.in6.sin6_scope_id = (uint32_t)if_index;
598
628
                                     -Wunreachable-code */
599
629
  }
600
630
  
 
631
  if(quit_now){
 
632
    goto mandos_end;
 
633
  }
 
634
  
601
635
  if(debug){
602
636
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
603
637
      char interface[IF_NAMESIZE];
630
664
    }
631
665
  }
632
666
  
 
667
  if(quit_now){
 
668
    goto mandos_end;
 
669
  }
 
670
  
633
671
  if(af == AF_INET6){
634
672
    ret = connect(tcp_sd, &to.in6, sizeof(to));
635
673
  } else {
637
675
  }
638
676
  if(ret < 0){
639
677
    perror("connect");
640
 
    return -1;
 
678
    goto mandos_end;
 
679
  }
 
680
  
 
681
  if(quit_now){
 
682
    goto mandos_end;
641
683
  }
642
684
  
643
685
  const char *out = mandos_protocol_version;
648
690
                                   out_size - written));
649
691
    if(ret == -1){
650
692
      perror("write");
651
 
      retval = -1;
652
693
      goto mandos_end;
653
694
    }
654
695
    written += (size_t)ret;
662
703
        break;
663
704
      }
664
705
    }
 
706
  
 
707
    if(quit_now){
 
708
      goto mandos_end;
 
709
    }
665
710
  }
666
711
  
667
712
  if(debug){
668
713
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
669
714
  }
670
715
  
 
716
  if(quit_now){
 
717
    goto mandos_end;
 
718
  }
 
719
  
671
720
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
672
721
  
673
 
  do{
 
722
  if(quit_now){
 
723
    goto mandos_end;
 
724
  }
 
725
  
 
726
  do {
674
727
    ret = gnutls_handshake(session);
 
728
    if(quit_now){
 
729
      goto mandos_end;
 
730
    }
675
731
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
676
732
  
677
733
  if(ret != GNUTLS_E_SUCCESS){
679
735
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
680
736
      gnutls_perror(ret);
681
737
    }
682
 
    retval = -1;
683
738
    goto mandos_end;
684
739
  }
685
740
  
691
746
  }
692
747
  
693
748
  while(true){
 
749
    
 
750
    if(quit_now){
 
751
      goto mandos_end;
 
752
    }
 
753
    
694
754
    buffer_capacity = incbuffer(&buffer, buffer_length,
695
755
                                   buffer_capacity);
696
756
    if(buffer_capacity == 0){
697
757
      perror("incbuffer");
698
 
      retval = -1;
 
758
      goto mandos_end;
 
759
    }
 
760
    
 
761
    if(quit_now){
699
762
      goto mandos_end;
700
763
    }
701
764
    
710
773
      case GNUTLS_E_AGAIN:
711
774
        break;
712
775
      case GNUTLS_E_REHANDSHAKE:
713
 
        do{
 
776
        do {
714
777
          ret = gnutls_handshake(session);
 
778
          
 
779
          if(quit_now){
 
780
            goto mandos_end;
 
781
          }
715
782
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
716
783
        if(ret < 0){
717
784
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
718
785
          gnutls_perror(ret);
719
 
          retval = -1;
720
786
          goto mandos_end;
721
787
        }
722
788
        break;
723
789
      default:
724
790
        fprintf(stderr, "Unknown error while reading data from"
725
791
                " encrypted session with Mandos server\n");
726
 
        retval = -1;
727
792
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
728
793
        goto mandos_end;
729
794
      }
736
801
    fprintf(stderr, "Closing TLS session\n");
737
802
  }
738
803
  
739
 
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
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);
740
814
  
741
815
  if(buffer_length > 0){
 
816
    ssize_t decrypted_buffer_size;
742
817
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
743
818
                                               buffer_length,
744
819
                                               &decrypted_buffer);
745
820
    if(decrypted_buffer_size >= 0){
 
821
      
746
822
      written = 0;
747
823
      while(written < (size_t) decrypted_buffer_size){
 
824
        if(quit_now){
 
825
          goto mandos_end;
 
826
        }
 
827
        
748
828
        ret = (int)fwrite(decrypted_buffer + written, 1,
749
829
                          (size_t)decrypted_buffer_size - written,
750
830
                          stdout);
753
833
            fprintf(stderr, "Error writing encrypted data: %s\n",
754
834
                    strerror(errno));
755
835
          }
756
 
          retval = -1;
757
 
          break;
 
836
          goto mandos_end;
758
837
        }
759
838
        written += (size_t)ret;
760
839
      }
761
 
      free(decrypted_buffer);
762
 
    } else {
763
 
      retval = -1;
 
840
      retval = 0;
764
841
    }
765
 
  } else {
766
 
    retval = -1;
767
842
  }
768
843
  
769
844
  /* Shutdown procedure */
770
845
  
771
846
 mandos_end:
 
847
  free(decrypted_buffer);
772
848
  free(buffer);
773
 
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
849
  if(tcp_sd >= 0){
 
850
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
851
  }
774
852
  if(ret == -1){
775
853
    perror("close");
776
854
  }
777
855
  gnutls_deinit(session);
 
856
  if(quit_now){
 
857
    retval = -1;
 
858
  }
778
859
  return retval;
779
860
}
780
861
 
797
878
  /* Called whenever a service has been resolved successfully or
798
879
     timed out */
799
880
  
 
881
  if(quit_now){
 
882
    return;
 
883
  }
 
884
  
800
885
  switch(event){
801
886
  default:
802
887
  case AVAHI_RESOLVER_FAILURE:
839
924
  /* Called whenever a new services becomes available on the LAN or
840
925
     is removed from the LAN */
841
926
  
 
927
  if(quit_now){
 
928
    return;
 
929
  }
 
930
  
842
931
  switch(event){
843
932
  default:
844
933
  case AVAHI_BROWSER_FAILURE:
854
943
       the callback function is called the Avahi server will free the
855
944
       resolver for us. */
856
945
    
857
 
    if(!(avahi_s_service_resolver_new(mc.server, interface,
858
 
                                       protocol, name, type, domain,
859
 
                                       AVAHI_PROTO_INET6, 0,
860
 
                                       resolve_callback, NULL)))
 
946
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
 
947
                                    name, type, domain, protocol, 0,
 
948
                                    resolve_callback, NULL) == NULL)
861
949
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
862
950
              name, avahi_strerror(avahi_server_errno(mc.server)));
863
951
    break;
874
962
  }
875
963
}
876
964
 
877
 
sig_atomic_t quit_now = 0;
878
 
 
879
965
/* stop main loop after sigterm has been called */
880
 
static void handle_sigterm(__attribute__((unused)) int sig){
 
966
static void handle_sigterm(int sig){
881
967
  if(quit_now){
882
968
    return;
883
969
  }
884
970
  quit_now = 1;
 
971
  signal_received = sig;
885
972
  int old_errno = errno;
886
973
  if(mc.simple_poll != NULL){
887
974
    avahi_simple_poll_quit(mc.simple_poll);
889
976
  errno = old_errno;
890
977
}
891
978
 
 
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);
 
1005
  if(flagstring == NULL){
 
1006
    perror("malloc");
 
1007
    close(flags_fd);
 
1008
    return 0;
 
1009
  }
 
1010
  while(to_read > 0){
 
1011
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
 
1012
                                             (size_t)to_read));
 
1013
    if(ssret == -1){
 
1014
      perror("read");
 
1015
      free(flagstring);
 
1016
      close(flags_fd);
 
1017
      return 0;
 
1018
    }
 
1019
    to_read -= ssret;
 
1020
    if(ssret == 0){
 
1021
      break;
 
1022
    }
 
1023
  }
 
1024
  close(flags_fd);
 
1025
  intmax_t tmpmax;
 
1026
  char *tmp;
 
1027
  errno = 0;
 
1028
  tmpmax = strtoimax(flagstring, &tmp, 0);
 
1029
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
 
1030
                                         and not (isspace(*tmp)))
 
1031
     or tmpmax != (ifreq_flags)tmpmax){
 
1032
    free(flagstring);
 
1033
    return 0;
 
1034
  }
 
1035
  free(flagstring);
 
1036
  ifreq_flags flags = (ifreq_flags)tmpmax;
 
1037
  /* Reject the loopback device */
 
1038
  if(flags & IFF_LOOPBACK){
 
1039
    return 0;
 
1040
  }
 
1041
  /* Accept point-to-point devices only if connect_to is specified */
 
1042
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
 
1043
    return 1;
 
1044
  }
 
1045
  /* Otherwise, reject non-broadcast-capable devices */
 
1046
  if(not (flags & IFF_BROADCAST)){
 
1047
    return 0;
 
1048
  }
 
1049
  /* Accept this device */
 
1050
  return 1;
 
1051
}
 
1052
 
892
1053
int main(int argc, char *argv[]){
893
1054
  AvahiSServiceBrowser *sb = NULL;
894
1055
  int error;
895
1056
  int ret;
896
1057
  intmax_t tmpmax;
897
 
  int numchars;
 
1058
  char *tmp;
898
1059
  int exitcode = EXIT_SUCCESS;
899
 
  const char *interface = "eth0";
 
1060
  const char *interface = "";
900
1061
  struct ifreq network;
901
 
  int sd;
 
1062
  int sd = -1;
 
1063
  bool take_down_interface = false;
902
1064
  uid_t uid;
903
1065
  gid_t gid;
904
 
  char *connect_to = NULL;
905
1066
  char tempdir[] = "/tmp/mandosXXXXXX";
906
1067
  bool tempdir_created = false;
907
1068
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
908
1069
  const char *seckey = PATHDIR "/" SECKEY;
909
1070
  const char *pubkey = PATHDIR "/" PUBKEY;
910
1071
  
911
 
  /* Initialize Mandos context */
912
 
  mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
913
 
                         .dh_bits = 1024, .priority = "SECURE256"
914
 
                         ":!CTYPE-X.509:+CTYPE-OPENPGP" };
915
1072
  bool gnutls_initialized = false;
916
1073
  bool gpgme_initialized = false;
917
 
  double delay = 2.5;
918
 
 
919
 
  struct sigaction old_sigterm_action;
 
1074
  float delay = 2.5f;
 
1075
  
 
1076
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
920
1077
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
921
1078
  
 
1079
  uid = getuid();
 
1080
  gid = getgid();
 
1081
  
 
1082
  /* Lower any group privileges we might have, just to be safe */
 
1083
  errno = 0;
 
1084
  ret = setgid(gid);
 
1085
  if(ret == -1){
 
1086
    perror("setgid");
 
1087
  }
 
1088
  
 
1089
  /* Lower user privileges (temporarily) */
 
1090
  errno = 0;
 
1091
  ret = seteuid(uid);
 
1092
  if(ret == -1){
 
1093
    perror("seteuid");
 
1094
  }
 
1095
  
 
1096
  if(quit_now){
 
1097
    goto end;
 
1098
  }
 
1099
  
922
1100
  {
923
1101
    struct argp_option options[] = {
924
1102
      { .name = "debug", .key = 128,
975
1153
        pubkey = arg;
976
1154
        break;
977
1155
      case 129:                 /* --dh-bits */
978
 
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
979
 
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
980
 
           or arg[numchars] != '\0'){
 
1156
        errno = 0;
 
1157
        tmpmax = strtoimax(arg, &tmp, 10);
 
1158
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1159
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
981
1160
          fprintf(stderr, "Bad number of DH bits\n");
982
1161
          exit(EXIT_FAILURE);
983
1162
        }
987
1166
        mc.priority = arg;
988
1167
        break;
989
1168
      case 131:                 /* --delay */
990
 
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
991
 
        if(ret < 1 or arg[numchars] != '\0'){
 
1169
        errno = 0;
 
1170
        delay = strtof(arg, &tmp);
 
1171
        if(errno != 0 or tmp == arg or *tmp != '\0'){
992
1172
          fprintf(stderr, "Bad delay\n");
993
1173
          exit(EXIT_FAILURE);
994
1174
        }
1018
1198
  if(not debug){
1019
1199
    avahi_set_log_function(empty_log);
1020
1200
  }
 
1201
 
 
1202
  if(interface[0] == '\0'){
 
1203
    struct dirent **direntries;
 
1204
    ret = scandir(sys_class_net, &direntries, good_interface,
 
1205
                  alphasort);
 
1206
    if(ret >= 1){
 
1207
      /* Pick the first good interface */
 
1208
      interface = strdup(direntries[0]->d_name);
 
1209
      if(interface == NULL){
 
1210
        perror("malloc");
 
1211
        free(direntries);
 
1212
        exitcode = EXIT_FAILURE;
 
1213
        goto end;
 
1214
      }
 
1215
      free(direntries);
 
1216
    } else {
 
1217
      free(direntries);
 
1218
      fprintf(stderr, "Could not find a network interface\n");
 
1219
      exitcode = EXIT_FAILURE;
 
1220
      goto end;
 
1221
    }
 
1222
  }
1021
1223
  
1022
1224
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1023
1225
     from the signal handler */
1049
1251
    exitcode = EXIT_FAILURE;
1050
1252
    goto end;
1051
1253
  }
1052
 
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1053
 
  if(ret == -1){
1054
 
    perror("sigaction");
1055
 
    exitcode = EXIT_FAILURE;
1056
 
    goto end;
1057
 
  }  
 
1254
  /* Need to check if the handler is SIG_IGN before handling:
 
1255
     | [[info:libc:Initial Signal Actions]] |
 
1256
     | [[info:libc:Basic Signal Handling]]  |
 
1257
  */
 
1258
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1259
  if(ret == -1){
 
1260
    perror("sigaction");
 
1261
    return EXIT_FAILURE;
 
1262
  }
 
1263
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1264
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1265
    if(ret == -1){
 
1266
      perror("sigaction");
 
1267
      exitcode = EXIT_FAILURE;
 
1268
      goto end;
 
1269
    }
 
1270
  }
 
1271
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1272
  if(ret == -1){
 
1273
    perror("sigaction");
 
1274
    return EXIT_FAILURE;
 
1275
  }
 
1276
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1277
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1278
    if(ret == -1){
 
1279
      perror("sigaction");
 
1280
      exitcode = EXIT_FAILURE;
 
1281
      goto end;
 
1282
    }
 
1283
  }
 
1284
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1285
  if(ret == -1){
 
1286
    perror("sigaction");
 
1287
    return EXIT_FAILURE;
 
1288
  }
 
1289
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1290
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1291
    if(ret == -1){
 
1292
      perror("sigaction");
 
1293
      exitcode = EXIT_FAILURE;
 
1294
      goto end;
 
1295
    }
 
1296
  }
1058
1297
  
1059
1298
  /* If the interface is down, bring it up */
1060
 
  if(interface[0] != '\0'){
 
1299
  if(strcmp(interface, "none") != 0){
 
1300
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1301
    if(if_index == 0){
 
1302
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1303
      exitcode = EXIT_FAILURE;
 
1304
      goto end;
 
1305
    }
 
1306
    
 
1307
    if(quit_now){
 
1308
      goto end;
 
1309
    }
 
1310
    
 
1311
    /* Re-raise priviliges */
 
1312
    errno = 0;
 
1313
    ret = seteuid(0);
 
1314
    if(ret == -1){
 
1315
      perror("seteuid");
 
1316
    }
 
1317
    
1061
1318
#ifdef __linux__
1062
1319
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1063
1320
       messages to mess up the prompt */
1081
1338
        }
1082
1339
      }
1083
1340
#endif  /* __linux__ */
 
1341
      /* Lower privileges */
 
1342
      errno = 0;
 
1343
      ret = seteuid(uid);
 
1344
      if(ret == -1){
 
1345
        perror("seteuid");
 
1346
      }
1084
1347
      goto end;
1085
1348
    }
1086
1349
    strcpy(network.ifr_name, interface);
1096
1359
      }
1097
1360
#endif  /* __linux__ */
1098
1361
      exitcode = EXIT_FAILURE;
 
1362
      /* Lower privileges */
 
1363
      errno = 0;
 
1364
      ret = seteuid(uid);
 
1365
      if(ret == -1){
 
1366
        perror("seteuid");
 
1367
      }
1099
1368
      goto end;
1100
1369
    }
1101
1370
    if((network.ifr_flags & IFF_UP) == 0){
1102
1371
      network.ifr_flags |= IFF_UP;
 
1372
      take_down_interface = true;
1103
1373
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1104
1374
      if(ret == -1){
 
1375
        take_down_interface = false;
1105
1376
        perror("ioctl SIOCSIFFLAGS");
1106
1377
        exitcode = EXIT_FAILURE;
1107
1378
#ifdef __linux__
1112
1383
          }
1113
1384
        }
1114
1385
#endif  /* __linux__ */
 
1386
        /* Lower privileges */
 
1387
        errno = 0;
 
1388
        ret = seteuid(uid);
 
1389
        if(ret == -1){
 
1390
          perror("seteuid");
 
1391
        }
1115
1392
        goto end;
1116
1393
      }
1117
1394
    }
1129
1406
        perror("nanosleep");
1130
1407
      }
1131
1408
    }
1132
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1133
 
    if(ret == -1){
1134
 
      perror("close");
 
1409
    if(not take_down_interface){
 
1410
      /* We won't need the socket anymore */
 
1411
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1412
      if(ret == -1){
 
1413
        perror("close");
 
1414
      }
1135
1415
    }
1136
1416
#ifdef __linux__
1137
1417
    if(restore_loglevel){
1142
1422
      }
1143
1423
    }
1144
1424
#endif  /* __linux__ */
1145
 
  }
1146
 
  
1147
 
  uid = getuid();
1148
 
  gid = getgid();
1149
 
  
1150
 
  errno = 0;
1151
 
  setgid(gid);
1152
 
  if(ret == -1){
1153
 
    perror("setgid");
1154
 
  }
1155
 
  
1156
 
  ret = setuid(uid);
1157
 
  if(ret == -1){
1158
 
    perror("setuid");
 
1425
    /* Lower privileges */
 
1426
    errno = 0;
 
1427
    if(take_down_interface){
 
1428
      /* Lower privileges */
 
1429
      ret = seteuid(uid);
 
1430
      if(ret == -1){
 
1431
        perror("seteuid");
 
1432
      }
 
1433
    } else {
 
1434
      /* Lower privileges permanently */
 
1435
      ret = setuid(uid);
 
1436
      if(ret == -1){
 
1437
        perror("setuid");
 
1438
      }
 
1439
    }
 
1440
  }
 
1441
  
 
1442
  if(quit_now){
 
1443
    goto end;
1159
1444
  }
1160
1445
  
1161
1446
  ret = init_gnutls_global(pubkey, seckey);
1167
1452
    gnutls_initialized = true;
1168
1453
  }
1169
1454
  
 
1455
  if(quit_now){
 
1456
    goto end;
 
1457
  }
 
1458
  
 
1459
  tempdir_created = true;
1170
1460
  if(mkdtemp(tempdir) == NULL){
 
1461
    tempdir_created = false;
1171
1462
    perror("mkdtemp");
1172
1463
    goto end;
1173
1464
  }
1174
 
  tempdir_created = true;
 
1465
  
 
1466
  if(quit_now){
 
1467
    goto end;
 
1468
  }
1175
1469
  
1176
1470
  if(not init_gpgme(pubkey, seckey, tempdir)){
1177
1471
    fprintf(stderr, "init_gpgme failed\n");
1181
1475
    gpgme_initialized = true;
1182
1476
  }
1183
1477
  
1184
 
  if(interface[0] != '\0'){
1185
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1186
 
    if(if_index == 0){
1187
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1188
 
      exitcode = EXIT_FAILURE;
1189
 
      goto end;
1190
 
    }
 
1478
  if(quit_now){
 
1479
    goto end;
1191
1480
  }
1192
1481
  
1193
1482
  if(connect_to != NULL){
1199
1488
      exitcode = EXIT_FAILURE;
1200
1489
      goto end;
1201
1490
    }
 
1491
    
 
1492
    if(quit_now){
 
1493
      goto end;
 
1494
    }
 
1495
    
1202
1496
    uint16_t port;
1203
 
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1204
 
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
1205
 
       or address[numchars+1] != '\0'){
 
1497
    errno = 0;
 
1498
    tmpmax = strtoimax(address+1, &tmp, 10);
 
1499
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
 
1500
       or tmpmax != (uint16_t)tmpmax){
1206
1501
      fprintf(stderr, "Bad port number\n");
1207
1502
      exitcode = EXIT_FAILURE;
1208
1503
      goto end;
1209
1504
    }
 
1505
  
 
1506
    if(quit_now){
 
1507
      goto end;
 
1508
    }
 
1509
    
1210
1510
    port = (uint16_t)tmpmax;
1211
1511
    *address = '\0';
1212
1512
    address = connect_to;
1217
1517
    } else {
1218
1518
      af = AF_INET;
1219
1519
    }
 
1520
    
 
1521
    if(quit_now){
 
1522
      goto end;
 
1523
    }
 
1524
    
1220
1525
    ret = start_mandos_communication(address, port, if_index, af);
1221
1526
    if(ret < 0){
1222
1527
      exitcode = EXIT_FAILURE;
1225
1530
    }
1226
1531
    goto end;
1227
1532
  }
1228
 
    
 
1533
  
 
1534
  if(quit_now){
 
1535
    goto end;
 
1536
  }
 
1537
  
1229
1538
  {
1230
1539
    AvahiServerConfig config;
1231
1540
    /* Do not publish any local Zeroconf records */
1252
1561
    goto end;
1253
1562
  }
1254
1563
  
 
1564
  if(quit_now){
 
1565
    goto end;
 
1566
  }
 
1567
  
1255
1568
  /* Create the Avahi service browser */
1256
1569
  sb = avahi_s_service_browser_new(mc.server, if_index,
1257
 
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
 
1570
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1258
1571
                                   NULL, 0, browse_callback, NULL);
1259
1572
  if(sb == NULL){
1260
1573
    fprintf(stderr, "Failed to create service browser: %s\n",
1263
1576
    goto end;
1264
1577
  }
1265
1578
  
 
1579
  if(quit_now){
 
1580
    goto end;
 
1581
  }
 
1582
  
1266
1583
  /* Run the main loop */
1267
1584
  
1268
1585
  if(debug){
1297
1614
    gpgme_release(mc.ctx);
1298
1615
  }
1299
1616
  
 
1617
  /* Take down the network interface */
 
1618
  if(take_down_interface){
 
1619
    /* Re-raise priviliges */
 
1620
    errno = 0;
 
1621
    ret = seteuid(0);
 
1622
    if(ret == -1){
 
1623
      perror("seteuid");
 
1624
    }
 
1625
    if(geteuid() == 0){
 
1626
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1627
      if(ret == -1){
 
1628
        perror("ioctl SIOCGIFFLAGS");
 
1629
      } else if(network.ifr_flags & IFF_UP) {
 
1630
        network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1631
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1632
        if(ret == -1){
 
1633
          perror("ioctl SIOCSIFFLAGS");
 
1634
        }
 
1635
      }
 
1636
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1637
      if(ret == -1){
 
1638
        perror("close");
 
1639
      }
 
1640
      /* Lower privileges permanently */
 
1641
      errno = 0;
 
1642
      ret = setuid(uid);
 
1643
      if(ret == -1){
 
1644
        perror("setuid");
 
1645
      }
 
1646
    }
 
1647
  }
 
1648
  
1300
1649
  /* Removes the temp directory used by GPGME */
1301
1650
  if(tempdir_created){
1302
1651
    DIR *d;
1341
1690
    }
1342
1691
  }
1343
1692
  
 
1693
  if(quit_now){
 
1694
    sigemptyset(&old_sigterm_action.sa_mask);
 
1695
    old_sigterm_action.sa_handler = SIG_DFL;
 
1696
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
1697
                                            &old_sigterm_action,
 
1698
                                            NULL));
 
1699
    if(ret == -1){
 
1700
      perror("sigaction");
 
1701
    }
 
1702
    do {
 
1703
      ret = raise(signal_received);
 
1704
    } while(ret != 0 and errno == EINTR);
 
1705
    if(ret != 0){
 
1706
      perror("raise");
 
1707
      abort();
 
1708
    }
 
1709
    TEMP_FAILURE_RETRY(pause());
 
1710
  }
 
1711
  
1344
1712
  return exitcode;
1345
1713
}