/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-09-02 18:36:36 UTC
  • mto: (24.1.154 mandos)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: teddy@fukt.bsnet.se-20100902183636-h0vb4iw3ut2g3mta
* mandos (ClientDBus.approvals_pending): Changed to be a property
                                         which emits D-Bus signals.
  (ClientDBus.approved_pending): Removed - all callers changed.
  (ClientDBus.GotSecret, ClientDBus.Rejected,
  ClientDBus.NeedApproval): Do not emit D-Bus signal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
71
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
72
72
                                */
73
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
 
                                   getuid(), getgid(), setuid(),
75
 
                                   setgid() */
 
74
                                   getuid(), getgid(), seteuid(),
 
75
                                   setgid(), pause() */
76
76
#include <arpa/inet.h>          /* inet_pton(), htons */
77
77
#include <iso646.h>             /* not, or, and */
78
78
#include <argp.h>               /* struct argp_option, error_t, struct
80
80
                                   argp_parse(), ARGP_KEY_ARG,
81
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
 
                                   sigaction(), SIGTERM, sigaction,
84
 
                                   sig_atomic_t */
 
83
                                   sigaction(), SIGTERM, sig_atomic_t,
 
84
                                   raise() */
 
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
85
87
 
86
88
#ifdef __linux__
87
89
#include <sys/klog.h>           /* klogctl() */
142
144
                      .dh_bits = 1024, .priority = "SECURE256"
143
145
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
144
146
 
 
147
sig_atomic_t quit_now = 0;
 
148
int signal_received = 0;
 
149
 
145
150
/*
146
151
 * Make additional room in "buffer" for at least BUFFER_SIZE more
147
152
 * bytes. "buffer_capacity" is how much is currently allocated,
164
169
 */
165
170
static bool init_gpgme(const char *seckey,
166
171
                       const char *pubkey, const char *tempdir){
167
 
  int ret;
168
172
  gpgme_error_t rc;
169
173
  gpgme_engine_info_t engine_info;
170
174
  
173
177
   * Helper function to insert pub and seckey to the engine keyring.
174
178
   */
175
179
  bool import_key(const char *filename){
 
180
    int ret;
176
181
    int fd;
177
182
    gpgme_data_t pgp_data;
178
183
    
249
254
    return false;
250
255
  }
251
256
  
252
 
  return true; 
 
257
  return true;
253
258
}
254
259
 
255
260
/* 
309
314
        }
310
315
        gpgme_recipient_t recipient;
311
316
        recipient = result->recipients;
312
 
        if(recipient){
313
 
          while(recipient != NULL){
314
 
            fprintf(stderr, "Public key algorithm: %s\n",
315
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
316
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
317
 
            fprintf(stderr, "Secret key available: %s\n",
318
 
                    recipient->status == GPG_ERR_NO_SECKEY
319
 
                    ? "No" : "Yes");
320
 
            recipient = recipient->next;
321
 
          }
 
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;
322
325
        }
323
326
      }
324
327
    }
476
479
static int init_gnutls_session(gnutls_session_t *session){
477
480
  int ret;
478
481
  /* GnuTLS session creation */
479
 
  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);
480
488
  if(ret != GNUTLS_E_SUCCESS){
481
489
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
482
490
            safer_gnutls_strerror(ret));
484
492
  
485
493
  {
486
494
    const char *err;
487
 
    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);
488
502
    if(ret != GNUTLS_E_SUCCESS){
489
503
      fprintf(stderr, "Syntax error at: %s\n", err);
490
504
      fprintf(stderr, "GnuTLS error: %s\n",
494
508
    }
495
509
  }
496
510
  
497
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
498
 
                               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);
499
519
  if(ret != GNUTLS_E_SUCCESS){
500
520
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
501
521
            safer_gnutls_strerror(ret));
504
524
  }
505
525
  
506
526
  /* ignore client certificate if any. */
507
 
  gnutls_certificate_server_set_request(*session,
508
 
                                        GNUTLS_CERT_IGNORE);
 
527
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
509
528
  
510
529
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
511
530
  
520
539
static int start_mandos_communication(const char *ip, uint16_t port,
521
540
                                      AvahiIfIndex if_index,
522
541
                                      int af){
523
 
  int ret, tcp_sd;
 
542
  int ret, tcp_sd = -1;
524
543
  ssize_t sret;
525
544
  union {
526
545
    struct sockaddr_in in;
527
546
    struct sockaddr_in6 in6;
528
547
  } to;
529
548
  char *buffer = NULL;
530
 
  char *decrypted_buffer;
 
549
  char *decrypted_buffer = NULL;
531
550
  size_t buffer_length = 0;
532
551
  size_t buffer_capacity = 0;
533
 
  ssize_t decrypted_buffer_size;
534
552
  size_t written;
535
 
  int retval = 0;
 
553
  int retval = -1;
536
554
  gnutls_session_t session;
537
555
  int pf;                       /* Protocol family */
538
556
  
 
557
  errno = 0;
 
558
  
 
559
  if(quit_now){
 
560
    errno = EINTR;
 
561
    return -1;
 
562
  }
 
563
  
539
564
  switch(af){
540
565
  case AF_INET6:
541
566
    pf = PF_INET6;
545
570
    break;
546
571
  default:
547
572
    fprintf(stderr, "Bad address family: %d\n", af);
 
573
    errno = EINVAL;
548
574
    return -1;
549
575
  }
550
576
  
560
586
  
561
587
  tcp_sd = socket(pf, SOCK_STREAM, 0);
562
588
  if(tcp_sd < 0){
 
589
    int e = errno;
563
590
    perror("socket");
564
 
    return -1;
 
591
    errno = e;
 
592
    goto mandos_end;
 
593
  }
 
594
  
 
595
  if(quit_now){
 
596
    errno = EINTR;
 
597
    goto mandos_end;
565
598
  }
566
599
  
567
600
  memset(&to, 0, sizeof(to));
573
606
    ret = inet_pton(af, ip, &to.in.sin_addr);
574
607
  }
575
608
  if(ret < 0 ){
 
609
    int e = errno;
576
610
    perror("inet_pton");
577
 
    return -1;
 
611
    errno = e;
 
612
    goto mandos_end;
578
613
  }
579
614
  if(ret == 0){
 
615
    int e = errno;
580
616
    fprintf(stderr, "Bad address: %s\n", ip);
581
 
    return -1;
 
617
    errno = e;
 
618
    goto mandos_end;
582
619
  }
583
620
  if(af == AF_INET6){
584
621
    to.in6.sin6_port = htons(port); /* Spurious warnings from
591
628
      if(if_index == AVAHI_IF_UNSPEC){
592
629
        fprintf(stderr, "An IPv6 link-local address is incomplete"
593
630
                " without a network interface\n");
594
 
        return -1;
 
631
        errno = EINVAL;
 
632
        goto mandos_end;
595
633
      }
596
634
      /* Set the network interface number as scope */
597
635
      to.in6.sin6_scope_id = (uint32_t)if_index;
602
640
                                     -Wunreachable-code */
603
641
  }
604
642
  
 
643
  if(quit_now){
 
644
    errno = EINTR;
 
645
    goto mandos_end;
 
646
  }
 
647
  
605
648
  if(debug){
606
649
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
607
650
      char interface[IF_NAMESIZE];
634
677
    }
635
678
  }
636
679
  
 
680
  if(quit_now){
 
681
    errno = EINTR;
 
682
    goto mandos_end;
 
683
  }
 
684
  
637
685
  if(af == AF_INET6){
638
686
    ret = connect(tcp_sd, &to.in6, sizeof(to));
639
687
  } else {
640
688
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
641
689
  }
642
690
  if(ret < 0){
 
691
    int e = errno;
643
692
    perror("connect");
644
 
    return -1;
 
693
    errno = e;
 
694
    goto mandos_end;
 
695
  }
 
696
  
 
697
  if(quit_now){
 
698
    errno = EINTR;
 
699
    goto mandos_end;
645
700
  }
646
701
  
647
702
  const char *out = mandos_protocol_version;
651
706
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
652
707
                                   out_size - written));
653
708
    if(ret == -1){
 
709
      int e = errno;
654
710
      perror("write");
655
 
      retval = -1;
 
711
      errno = e;
656
712
      goto mandos_end;
657
713
    }
658
714
    written += (size_t)ret;
666
722
        break;
667
723
      }
668
724
    }
 
725
  
 
726
    if(quit_now){
 
727
      errno = EINTR;
 
728
      goto mandos_end;
 
729
    }
669
730
  }
670
731
  
671
732
  if(debug){
672
733
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
673
734
  }
674
735
  
 
736
  if(quit_now){
 
737
    errno = EINTR;
 
738
    goto mandos_end;
 
739
  }
 
740
  
675
741
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
676
742
  
677
 
  do{
 
743
  if(quit_now){
 
744
    errno = EINTR;
 
745
    goto mandos_end;
 
746
  }
 
747
  
 
748
  do {
678
749
    ret = gnutls_handshake(session);
 
750
    if(quit_now){
 
751
      errno = EINTR;
 
752
      goto mandos_end;
 
753
    }
679
754
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
680
755
  
681
756
  if(ret != GNUTLS_E_SUCCESS){
683
758
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
684
759
      gnutls_perror(ret);
685
760
    }
686
 
    retval = -1;
 
761
    errno = EPROTO;
687
762
    goto mandos_end;
688
763
  }
689
764
  
695
770
  }
696
771
  
697
772
  while(true){
 
773
    
 
774
    if(quit_now){
 
775
      errno = EINTR;
 
776
      goto mandos_end;
 
777
    }
 
778
    
698
779
    buffer_capacity = incbuffer(&buffer, buffer_length,
699
780
                                   buffer_capacity);
700
781
    if(buffer_capacity == 0){
 
782
      int e = errno;
701
783
      perror("incbuffer");
702
 
      retval = -1;
 
784
      errno = e;
 
785
      goto mandos_end;
 
786
    }
 
787
    
 
788
    if(quit_now){
 
789
      errno = EINTR;
703
790
      goto mandos_end;
704
791
    }
705
792
    
714
801
      case GNUTLS_E_AGAIN:
715
802
        break;
716
803
      case GNUTLS_E_REHANDSHAKE:
717
 
        do{
 
804
        do {
718
805
          ret = gnutls_handshake(session);
 
806
          
 
807
          if(quit_now){
 
808
            errno = EINTR;
 
809
            goto mandos_end;
 
810
          }
719
811
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
720
812
        if(ret < 0){
721
813
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
722
814
          gnutls_perror(ret);
723
 
          retval = -1;
 
815
          errno = EPROTO;
724
816
          goto mandos_end;
725
817
        }
726
818
        break;
727
819
      default:
728
820
        fprintf(stderr, "Unknown error while reading data from"
729
821
                " encrypted session with Mandos server\n");
730
 
        retval = -1;
731
822
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
823
        errno = EIO;
732
824
        goto mandos_end;
733
825
      }
734
826
    } else {
740
832
    fprintf(stderr, "Closing TLS session\n");
741
833
  }
742
834
  
743
 
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
835
  if(quit_now){
 
836
    errno = EINTR;
 
837
    goto mandos_end;
 
838
  }
 
839
  
 
840
  do {
 
841
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
842
    if(quit_now){
 
843
      errno = EINTR;
 
844
      goto mandos_end;
 
845
    }
 
846
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
744
847
  
745
848
  if(buffer_length > 0){
 
849
    ssize_t decrypted_buffer_size;
746
850
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
747
851
                                               buffer_length,
748
852
                                               &decrypted_buffer);
749
853
    if(decrypted_buffer_size >= 0){
 
854
      
750
855
      written = 0;
751
856
      while(written < (size_t) decrypted_buffer_size){
 
857
        if(quit_now){
 
858
          errno = EINTR;
 
859
          goto mandos_end;
 
860
        }
 
861
        
752
862
        ret = (int)fwrite(decrypted_buffer + written, 1,
753
863
                          (size_t)decrypted_buffer_size - written,
754
864
                          stdout);
755
865
        if(ret == 0 and ferror(stdout)){
 
866
          int e = errno;
756
867
          if(debug){
757
868
            fprintf(stderr, "Error writing encrypted data: %s\n",
758
869
                    strerror(errno));
759
870
          }
760
 
          retval = -1;
761
 
          break;
 
871
          errno = e;
 
872
          goto mandos_end;
762
873
        }
763
874
        written += (size_t)ret;
764
875
      }
765
 
      free(decrypted_buffer);
766
 
    } else {
767
 
      retval = -1;
 
876
      retval = 0;
768
877
    }
769
 
  } else {
770
 
    retval = -1;
771
878
  }
772
879
  
773
880
  /* Shutdown procedure */
774
881
  
775
882
 mandos_end:
776
 
  free(buffer);
777
 
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
778
 
  if(ret == -1){
779
 
    perror("close");
 
883
  {
 
884
    int e = errno;
 
885
    free(decrypted_buffer);
 
886
    free(buffer);
 
887
    if(tcp_sd >= 0){
 
888
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
889
    }
 
890
    if(ret == -1){
 
891
      if(e == 0){
 
892
        e = errno;
 
893
      }
 
894
      perror("close");
 
895
    }
 
896
    gnutls_deinit(session);
 
897
    if(quit_now){
 
898
      e = EINTR;
 
899
      retval = -1;
 
900
    }
 
901
    errno = e;
780
902
  }
781
 
  gnutls_deinit(session);
782
903
  return retval;
783
904
}
784
905
 
801
922
  /* Called whenever a service has been resolved successfully or
802
923
     timed out */
803
924
  
 
925
  if(quit_now){
 
926
    return;
 
927
  }
 
928
  
804
929
  switch(event){
805
930
  default:
806
931
  case AVAHI_RESOLVER_FAILURE:
843
968
  /* Called whenever a new services becomes available on the LAN or
844
969
     is removed from the LAN */
845
970
  
 
971
  if(quit_now){
 
972
    return;
 
973
  }
 
974
  
846
975
  switch(event){
847
976
  default:
848
977
  case AVAHI_BROWSER_FAILURE:
877
1006
  }
878
1007
}
879
1008
 
880
 
sig_atomic_t quit_now = 0;
881
 
 
882
1009
/* stop main loop after sigterm has been called */
883
 
static void handle_sigterm(__attribute__((unused)) int sig){
 
1010
static void handle_sigterm(int sig){
884
1011
  if(quit_now){
885
1012
    return;
886
1013
  }
887
1014
  quit_now = 1;
 
1015
  signal_received = sig;
888
1016
  int old_errno = errno;
889
1017
  if(mc.simple_poll != NULL){
890
1018
    avahi_simple_poll_quit(mc.simple_poll);
901
1029
  int exitcode = EXIT_SUCCESS;
902
1030
  const char *interface = "eth0";
903
1031
  struct ifreq network;
904
 
  int sd;
 
1032
  int sd = -1;
 
1033
  bool take_down_interface = false;
905
1034
  uid_t uid;
906
1035
  gid_t gid;
907
1036
  char *connect_to = NULL;
915
1044
  bool gpgme_initialized = false;
916
1045
  float delay = 2.5f;
917
1046
  
918
 
  struct sigaction old_sigterm_action;
 
1047
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
919
1048
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
920
1049
  
 
1050
  uid = getuid();
 
1051
  gid = getgid();
 
1052
  
 
1053
  /* Lower any group privileges we might have, just to be safe */
 
1054
  errno = 0;
 
1055
  ret = setgid(gid);
 
1056
  if(ret == -1){
 
1057
    perror("setgid");
 
1058
  }
 
1059
  
 
1060
  /* Lower user privileges (temporarily) */
 
1061
  errno = 0;
 
1062
  ret = seteuid(uid);
 
1063
  if(ret == -1){
 
1064
    perror("seteuid");
 
1065
  }
 
1066
  
 
1067
  if(quit_now){
 
1068
    goto end;
 
1069
  }
 
1070
  
921
1071
  {
922
1072
    struct argp_option options[] = {
923
1073
      { .name = "debug", .key = 128,
952
1102
        .arg = "SECONDS",
953
1103
        .doc = "Maximum delay to wait for interface startup",
954
1104
        .group = 2 },
 
1105
      /*
 
1106
       * These reproduce what we would get without ARGP_NO_HELP
 
1107
       */
 
1108
      { .name = "help", .key = '?',
 
1109
        .doc = "Give this help list", .group = -1 },
 
1110
      { .name = "usage", .key = -3,
 
1111
        .doc = "Give a short usage message", .group = -1 },
 
1112
      { .name = "version", .key = 'V',
 
1113
        .doc = "Print program version", .group = -1 },
955
1114
      { .name = NULL }
956
1115
    };
957
1116
    
958
1117
    error_t parse_opt(int key, char *arg,
959
1118
                      struct argp_state *state){
 
1119
      errno = 0;
960
1120
      switch(key){
961
1121
      case 128:                 /* --debug */
962
1122
        debug = true;
978
1138
        tmpmax = strtoimax(arg, &tmp, 10);
979
1139
        if(errno != 0 or tmp == arg or *tmp != '\0'
980
1140
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
981
 
          fprintf(stderr, "Bad number of DH bits\n");
982
 
          exit(EXIT_FAILURE);
 
1141
          argp_error(state, "Bad number of DH bits");
983
1142
        }
984
1143
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
985
1144
        break;
990
1149
        errno = 0;
991
1150
        delay = strtof(arg, &tmp);
992
1151
        if(errno != 0 or tmp == arg or *tmp != '\0'){
993
 
          fprintf(stderr, "Bad delay\n");
994
 
          exit(EXIT_FAILURE);
 
1152
          argp_error(state, "Bad delay");
995
1153
        }
996
1154
        break;
997
 
      case ARGP_KEY_ARG:
998
 
        argp_usage(state);
999
 
      case ARGP_KEY_END:
 
1155
        /*
 
1156
         * These reproduce what we would get without ARGP_NO_HELP
 
1157
         */
 
1158
      case '?':                 /* --help */
 
1159
        argp_state_help(state, state->out_stream,
 
1160
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1161
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1162
      case -3:                  /* --usage */
 
1163
        argp_state_help(state, state->out_stream,
 
1164
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1165
      case 'V':                 /* --version */
 
1166
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1167
        exit(argp_err_exit_status);
1000
1168
        break;
1001
1169
      default:
1002
1170
        return ARGP_ERR_UNKNOWN;
1003
1171
      }
1004
 
      return 0;
 
1172
      return errno;
1005
1173
    }
1006
1174
    
1007
1175
    struct argp argp = { .options = options, .parser = parse_opt,
1008
1176
                         .args_doc = "",
1009
1177
                         .doc = "Mandos client -- Get and decrypt"
1010
1178
                         " passwords from a Mandos server" };
1011
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1012
 
    if(ret == ARGP_ERR_UNKNOWN){
1013
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1014
 
      exitcode = EXIT_FAILURE;
 
1179
    ret = argp_parse(&argp, argc, argv,
 
1180
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1181
    switch(ret){
 
1182
    case 0:
 
1183
      break;
 
1184
    case ENOMEM:
 
1185
    default:
 
1186
      errno = ret;
 
1187
      perror("argp_parse");
 
1188
      exitcode = EX_OSERR;
 
1189
      goto end;
 
1190
    case EINVAL:
 
1191
      exitcode = EX_USAGE;
1015
1192
      goto end;
1016
1193
    }
1017
1194
  }
1027
1204
  mc.simple_poll = avahi_simple_poll_new();
1028
1205
  if(mc.simple_poll == NULL){
1029
1206
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1030
 
    exitcode = EXIT_FAILURE;
 
1207
    exitcode = EX_UNAVAILABLE;
1031
1208
    goto end;
1032
1209
  }
1033
1210
  
1035
1212
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1036
1213
  if(ret == -1){
1037
1214
    perror("sigaddset");
1038
 
    exitcode = EXIT_FAILURE;
 
1215
    exitcode = EX_OSERR;
1039
1216
    goto end;
1040
1217
  }
1041
1218
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1042
1219
  if(ret == -1){
1043
1220
    perror("sigaddset");
1044
 
    exitcode = EXIT_FAILURE;
 
1221
    exitcode = EX_OSERR;
1045
1222
    goto end;
1046
1223
  }
1047
1224
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1048
1225
  if(ret == -1){
1049
1226
    perror("sigaddset");
1050
 
    exitcode = EXIT_FAILURE;
1051
 
    goto end;
1052
 
  }
1053
 
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1054
 
  if(ret == -1){
1055
 
    perror("sigaction");
1056
 
    exitcode = EXIT_FAILURE;
1057
 
    goto end;
1058
 
  }  
 
1227
    exitcode = EX_OSERR;
 
1228
    goto end;
 
1229
  }
 
1230
  /* Need to check if the handler is SIG_IGN before handling:
 
1231
     | [[info:libc:Initial Signal Actions]] |
 
1232
     | [[info:libc:Basic Signal Handling]]  |
 
1233
  */
 
1234
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1235
  if(ret == -1){
 
1236
    perror("sigaction");
 
1237
    return EX_OSERR;
 
1238
  }
 
1239
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1240
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1241
    if(ret == -1){
 
1242
      perror("sigaction");
 
1243
      exitcode = EX_OSERR;
 
1244
      goto end;
 
1245
    }
 
1246
  }
 
1247
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1248
  if(ret == -1){
 
1249
    perror("sigaction");
 
1250
    return EX_OSERR;
 
1251
  }
 
1252
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1253
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1254
    if(ret == -1){
 
1255
      perror("sigaction");
 
1256
      exitcode = EX_OSERR;
 
1257
      goto end;
 
1258
    }
 
1259
  }
 
1260
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1261
  if(ret == -1){
 
1262
    perror("sigaction");
 
1263
    return EX_OSERR;
 
1264
  }
 
1265
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1266
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1267
    if(ret == -1){
 
1268
      perror("sigaction");
 
1269
      exitcode = EX_OSERR;
 
1270
      goto end;
 
1271
    }
 
1272
  }
1059
1273
  
1060
1274
  /* If the interface is down, bring it up */
1061
1275
  if(interface[0] != '\0'){
 
1276
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1277
    if(if_index == 0){
 
1278
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1279
      exitcode = EX_UNAVAILABLE;
 
1280
      goto end;
 
1281
    }
 
1282
    
 
1283
    if(quit_now){
 
1284
      goto end;
 
1285
    }
 
1286
    
 
1287
    /* Re-raise priviliges */
 
1288
    errno = 0;
 
1289
    ret = seteuid(0);
 
1290
    if(ret == -1){
 
1291
      perror("seteuid");
 
1292
    }
 
1293
    
1062
1294
#ifdef __linux__
1063
1295
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1064
 
       messages to mess up the prompt */
 
1296
       messages about the network interface to mess up the prompt */
1065
1297
    ret = klogctl(8, NULL, 5);
1066
1298
    bool restore_loglevel = true;
1067
1299
    if(ret == -1){
1073
1305
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1074
1306
    if(sd < 0){
1075
1307
      perror("socket");
1076
 
      exitcode = EXIT_FAILURE;
 
1308
      exitcode = EX_OSERR;
1077
1309
#ifdef __linux__
1078
1310
      if(restore_loglevel){
1079
1311
        ret = klogctl(7, NULL, 0);
1082
1314
        }
1083
1315
      }
1084
1316
#endif  /* __linux__ */
 
1317
      /* Lower privileges */
 
1318
      errno = 0;
 
1319
      ret = seteuid(uid);
 
1320
      if(ret == -1){
 
1321
        perror("seteuid");
 
1322
      }
1085
1323
      goto end;
1086
1324
    }
1087
1325
    strcpy(network.ifr_name, interface);
1096
1334
        }
1097
1335
      }
1098
1336
#endif  /* __linux__ */
1099
 
      exitcode = EXIT_FAILURE;
 
1337
      exitcode = EX_OSERR;
 
1338
      /* Lower privileges */
 
1339
      errno = 0;
 
1340
      ret = seteuid(uid);
 
1341
      if(ret == -1){
 
1342
        perror("seteuid");
 
1343
      }
1100
1344
      goto end;
1101
1345
    }
1102
1346
    if((network.ifr_flags & IFF_UP) == 0){
1103
1347
      network.ifr_flags |= IFF_UP;
 
1348
      take_down_interface = true;
1104
1349
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1105
1350
      if(ret == -1){
 
1351
        take_down_interface = false;
1106
1352
        perror("ioctl SIOCSIFFLAGS");
1107
 
        exitcode = EXIT_FAILURE;
 
1353
        exitcode = EX_OSERR;
1108
1354
#ifdef __linux__
1109
1355
        if(restore_loglevel){
1110
1356
          ret = klogctl(7, NULL, 0);
1113
1359
          }
1114
1360
        }
1115
1361
#endif  /* __linux__ */
 
1362
        /* Lower privileges */
 
1363
        errno = 0;
 
1364
        ret = seteuid(uid);
 
1365
        if(ret == -1){
 
1366
          perror("seteuid");
 
1367
        }
1116
1368
        goto end;
1117
1369
      }
1118
1370
    }
1130
1382
        perror("nanosleep");
1131
1383
      }
1132
1384
    }
1133
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1134
 
    if(ret == -1){
1135
 
      perror("close");
 
1385
    if(not take_down_interface){
 
1386
      /* We won't need the socket anymore */
 
1387
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1388
      if(ret == -1){
 
1389
        perror("close");
 
1390
      }
1136
1391
    }
1137
1392
#ifdef __linux__
1138
1393
    if(restore_loglevel){
1143
1398
      }
1144
1399
    }
1145
1400
#endif  /* __linux__ */
1146
 
  }
1147
 
  
1148
 
  uid = getuid();
1149
 
  gid = getgid();
1150
 
  
1151
 
  errno = 0;
1152
 
  setgid(gid);
1153
 
  if(ret == -1){
1154
 
    perror("setgid");
1155
 
  }
1156
 
  
1157
 
  ret = setuid(uid);
1158
 
  if(ret == -1){
1159
 
    perror("setuid");
 
1401
    /* Lower privileges */
 
1402
    errno = 0;
 
1403
    if(take_down_interface){
 
1404
      /* Lower privileges */
 
1405
      ret = seteuid(uid);
 
1406
      if(ret == -1){
 
1407
        perror("seteuid");
 
1408
      }
 
1409
    } else {
 
1410
      /* Lower privileges permanently */
 
1411
      ret = setuid(uid);
 
1412
      if(ret == -1){
 
1413
        perror("setuid");
 
1414
      }
 
1415
    }
 
1416
  }
 
1417
  
 
1418
  if(quit_now){
 
1419
    goto end;
1160
1420
  }
1161
1421
  
1162
1422
  ret = init_gnutls_global(pubkey, seckey);
1163
1423
  if(ret == -1){
1164
1424
    fprintf(stderr, "init_gnutls_global failed\n");
1165
 
    exitcode = EXIT_FAILURE;
 
1425
    exitcode = EX_UNAVAILABLE;
1166
1426
    goto end;
1167
1427
  } else {
1168
1428
    gnutls_initialized = true;
1169
1429
  }
1170
1430
  
 
1431
  if(quit_now){
 
1432
    goto end;
 
1433
  }
 
1434
  
 
1435
  tempdir_created = true;
1171
1436
  if(mkdtemp(tempdir) == NULL){
 
1437
    tempdir_created = false;
1172
1438
    perror("mkdtemp");
1173
1439
    goto end;
1174
1440
  }
1175
 
  tempdir_created = true;
 
1441
  
 
1442
  if(quit_now){
 
1443
    goto end;
 
1444
  }
1176
1445
  
1177
1446
  if(not init_gpgme(pubkey, seckey, tempdir)){
1178
1447
    fprintf(stderr, "init_gpgme failed\n");
1179
 
    exitcode = EXIT_FAILURE;
 
1448
    exitcode = EX_UNAVAILABLE;
1180
1449
    goto end;
1181
1450
  } else {
1182
1451
    gpgme_initialized = true;
1183
1452
  }
1184
1453
  
1185
 
  if(interface[0] != '\0'){
1186
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1187
 
    if(if_index == 0){
1188
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1189
 
      exitcode = EXIT_FAILURE;
1190
 
      goto end;
1191
 
    }
 
1454
  if(quit_now){
 
1455
    goto end;
1192
1456
  }
1193
1457
  
1194
1458
  if(connect_to != NULL){
1197
1461
    char *address = strrchr(connect_to, ':');
1198
1462
    if(address == NULL){
1199
1463
      fprintf(stderr, "No colon in address\n");
1200
 
      exitcode = EXIT_FAILURE;
1201
 
      goto end;
1202
 
    }
 
1464
      exitcode = EX_USAGE;
 
1465
      goto end;
 
1466
    }
 
1467
    
 
1468
    if(quit_now){
 
1469
      goto end;
 
1470
    }
 
1471
    
1203
1472
    uint16_t port;
1204
1473
    errno = 0;
1205
1474
    tmpmax = strtoimax(address+1, &tmp, 10);
1206
1475
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1207
1476
       or tmpmax != (uint16_t)tmpmax){
1208
1477
      fprintf(stderr, "Bad port number\n");
1209
 
      exitcode = EXIT_FAILURE;
1210
 
      goto end;
1211
 
    }
 
1478
      exitcode = EX_USAGE;
 
1479
      goto end;
 
1480
    }
 
1481
  
 
1482
    if(quit_now){
 
1483
      goto end;
 
1484
    }
 
1485
    
1212
1486
    port = (uint16_t)tmpmax;
1213
1487
    *address = '\0';
1214
1488
    address = connect_to;
1219
1493
    } else {
1220
1494
      af = AF_INET;
1221
1495
    }
 
1496
    
 
1497
    if(quit_now){
 
1498
      goto end;
 
1499
    }
 
1500
    
1222
1501
    ret = start_mandos_communication(address, port, if_index, af);
1223
1502
    if(ret < 0){
1224
 
      exitcode = EXIT_FAILURE;
 
1503
      switch(errno){
 
1504
      case ENETUNREACH:
 
1505
      case EHOSTDOWN:
 
1506
      case EHOSTUNREACH:
 
1507
        exitcode = EX_NOHOST;
 
1508
        break;
 
1509
      case EINVAL:
 
1510
        exitcode = EX_USAGE;
 
1511
        break;
 
1512
      case EIO:
 
1513
        exitcode = EX_IOERR;
 
1514
        break;
 
1515
      case EPROTO:
 
1516
        exitcode = EX_PROTOCOL;
 
1517
        break;
 
1518
      default:
 
1519
        exitcode = EX_OSERR;
 
1520
        break;
 
1521
      }
1225
1522
    } else {
1226
1523
      exitcode = EXIT_SUCCESS;
1227
1524
    }
1228
1525
    goto end;
1229
1526
  }
1230
 
    
 
1527
  
 
1528
  if(quit_now){
 
1529
    goto end;
 
1530
  }
 
1531
  
1231
1532
  {
1232
1533
    AvahiServerConfig config;
1233
1534
    /* Do not publish any local Zeroconf records */
1250
1551
  if(mc.server == NULL){
1251
1552
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1252
1553
            avahi_strerror(error));
1253
 
    exitcode = EXIT_FAILURE;
 
1554
    exitcode = EX_UNAVAILABLE;
 
1555
    goto end;
 
1556
  }
 
1557
  
 
1558
  if(quit_now){
1254
1559
    goto end;
1255
1560
  }
1256
1561
  
1261
1566
  if(sb == NULL){
1262
1567
    fprintf(stderr, "Failed to create service browser: %s\n",
1263
1568
            avahi_strerror(avahi_server_errno(mc.server)));
1264
 
    exitcode = EXIT_FAILURE;
 
1569
    exitcode = EX_UNAVAILABLE;
 
1570
    goto end;
 
1571
  }
 
1572
  
 
1573
  if(quit_now){
1265
1574
    goto end;
1266
1575
  }
1267
1576
  
1299
1608
    gpgme_release(mc.ctx);
1300
1609
  }
1301
1610
  
 
1611
  /* Take down the network interface */
 
1612
  if(take_down_interface){
 
1613
    /* Re-raise priviliges */
 
1614
    errno = 0;
 
1615
    ret = seteuid(0);
 
1616
    if(ret == -1){
 
1617
      perror("seteuid");
 
1618
    }
 
1619
    if(geteuid() == 0){
 
1620
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1621
      if(ret == -1){
 
1622
        perror("ioctl SIOCGIFFLAGS");
 
1623
      } else if(network.ifr_flags & IFF_UP) {
 
1624
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1625
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1626
        if(ret == -1){
 
1627
          perror("ioctl SIOCSIFFLAGS");
 
1628
        }
 
1629
      }
 
1630
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1631
      if(ret == -1){
 
1632
        perror("close");
 
1633
      }
 
1634
      /* Lower privileges permanently */
 
1635
      errno = 0;
 
1636
      ret = setuid(uid);
 
1637
      if(ret == -1){
 
1638
        perror("setuid");
 
1639
      }
 
1640
    }
 
1641
  }
 
1642
  
1302
1643
  /* Removes the temp directory used by GPGME */
1303
1644
  if(tempdir_created){
1304
1645
    DIR *d;
1343
1684
    }
1344
1685
  }
1345
1686
  
 
1687
  if(quit_now){
 
1688
    sigemptyset(&old_sigterm_action.sa_mask);
 
1689
    old_sigterm_action.sa_handler = SIG_DFL;
 
1690
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
1691
                                            &old_sigterm_action,
 
1692
                                            NULL));
 
1693
    if(ret == -1){
 
1694
      perror("sigaction");
 
1695
    }
 
1696
    do {
 
1697
      ret = raise(signal_received);
 
1698
    } while(ret != 0 and errno == EINTR);
 
1699
    if(ret != 0){
 
1700
      perror("raise");
 
1701
      abort();
 
1702
    }
 
1703
    TEMP_FAILURE_RETRY(pause());
 
1704
  }
 
1705
  
1346
1706
  return exitcode;
1347
1707
}