/mandos/trunk

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2009-02-15 09:28:06 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090215092806-l0uq42v3j1rq3gmi
* INSTALL: Changed "Python 2.4" to "Python 2.5".
* mandos.lsm: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2011 Teddy Hogeborn
13
 
 * Copyright © 2008-2011 Björn Påhlsson
 
12
 * Copyright © 2008,2009 Teddy Hogeborn
 
13
 * Copyright © 2008,2009 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
26
26
 * along with this program.  If not, see
27
27
 * <http://www.gnu.org/licenses/>.
28
28
 * 
29
 
 * Contact the authors at <mandos@recompile.se>.
 
29
 * Contact the authors at <mandos@fukt.bsnet.se>.
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
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, srand(),
47
 
                                   strtof(), abort() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
47
                                   srand(), strtof() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
64
#include <assert.h>             /* assert() */
65
 
#include <errno.h>              /* perror(), errno,
66
 
                                   program_invocation_short_name */
67
 
#include <time.h>               /* nanosleep(), time(), sleep() */
 
65
#include <errno.h>              /* perror(), errno */
 
66
#include <time.h>               /* nanosleep(), time() */
68
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
69
68
                                   SIOCSIFFLAGS, if_indextoname(),
70
69
                                   if_nametoindex(), IF_NAMESIZE */
72
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
73
72
                                */
74
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
 
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause() */
77
 
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
 
74
                                   getuid(), getgid(), setuid(),
 
75
                                   setgid() */
 
76
#include <arpa/inet.h>          /* inet_pton(), htons */
78
77
#include <iso646.h>             /* not, or, and */
79
78
#include <argp.h>               /* struct argp_option, error_t, struct
80
79
                                   argp_state, struct argp,
81
80
                                   argp_parse(), ARGP_KEY_ARG,
82
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
83
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
84
 
                                   sigaction(), SIGTERM, sig_atomic_t,
85
 
                                   raise() */
86
 
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
87
 
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
 
83
                                   sigaction(), SIGTERM, sigaction,
 
84
                                   sig_atomic_t */
88
85
 
89
86
#ifdef __linux__
90
87
#include <sys/klog.h>           /* klogctl() */
127
124
bool debug = false;
128
125
static const char mandos_protocol_version[] = "1";
129
126
const char *argp_program_version = "mandos-client " VERSION;
130
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
131
 
static const char sys_class_net[] = "/sys/class/net";
132
 
char *connect_to = NULL;
133
 
 
134
 
/* Doubly linked list that need to be circularly linked when used */
135
 
typedef struct server{
136
 
  const char *ip;
137
 
  uint16_t port;
138
 
  AvahiIfIndex if_index;
139
 
  int af;
140
 
  struct timespec last_seen;
141
 
  struct server *next;
142
 
  struct server *prev;
143
 
} server;
 
127
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
144
128
 
145
129
/* Used for passing in values through the Avahi callback functions */
146
130
typedef struct {
151
135
  gnutls_dh_params_t dh_params;
152
136
  const char *priority;
153
137
  gpgme_ctx_t ctx;
154
 
  server *current_server;
155
138
} mandos_context;
156
139
 
157
140
/* global context so signal handler can reach it*/
158
141
mandos_context mc = { .simple_poll = NULL, .server = NULL,
159
142
                      .dh_bits = 1024, .priority = "SECURE256"
160
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
161
 
                      .current_server = NULL };
162
 
 
163
 
sig_atomic_t quit_now = 0;
164
 
int signal_received = 0;
165
 
 
166
 
/* Function to use when printing errors */
167
 
void perror_plus(const char *print_text){
168
 
  fprintf(stderr, "Mandos plugin %s: ",
169
 
          program_invocation_short_name);
170
 
  perror(print_text);
171
 
}
 
143
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
172
144
 
173
145
/*
174
146
 * Make additional room in "buffer" for at least BUFFER_SIZE more
187
159
  return buffer_capacity;
188
160
}
189
161
 
190
 
/* Add server to set of servers to retry periodically */
191
 
int add_server(const char *ip, uint16_t port,
192
 
                 AvahiIfIndex if_index,
193
 
                 int af){
194
 
  int ret;
195
 
  server *new_server = malloc(sizeof(server));
196
 
  if(new_server == NULL){
197
 
    perror_plus("malloc");
198
 
    return -1;
199
 
  }
200
 
  *new_server = (server){ .ip = strdup(ip),
201
 
                         .port = port,
202
 
                         .if_index = if_index,
203
 
                         .af = af };
204
 
  if(new_server->ip == NULL){
205
 
    perror_plus("strdup");
206
 
    return -1;
207
 
  }
208
 
  /* Special case of first server */
209
 
  if (mc.current_server == NULL){
210
 
    new_server->next = new_server;
211
 
    new_server->prev = new_server;
212
 
    mc.current_server = new_server;
213
 
  /* Place the new server last in the list */
214
 
  } else {
215
 
    new_server->next = mc.current_server;
216
 
    new_server->prev = mc.current_server->prev;
217
 
    new_server->prev->next = new_server;
218
 
    mc.current_server->prev = new_server;
219
 
  }
220
 
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
221
 
  if(ret == -1){
222
 
    perror_plus("clock_gettime");
223
 
    return -1;
224
 
  }
225
 
  return 0;
226
 
}
227
 
 
228
162
/* 
229
163
 * Initialize GPGME.
230
164
 */
231
165
static bool init_gpgme(const char *seckey,
232
166
                       const char *pubkey, const char *tempdir){
 
167
  int ret;
233
168
  gpgme_error_t rc;
234
169
  gpgme_engine_info_t engine_info;
235
170
  
238
173
   * Helper function to insert pub and seckey to the engine keyring.
239
174
   */
240
175
  bool import_key(const char *filename){
241
 
    int ret;
242
176
    int fd;
243
177
    gpgme_data_t pgp_data;
244
178
    
245
179
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
246
180
    if(fd == -1){
247
 
      perror_plus("open");
 
181
      perror("open");
248
182
      return false;
249
183
    }
250
184
    
264
198
    
265
199
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
266
200
    if(ret == -1){
267
 
      perror_plus("close");
 
201
      perror("close");
268
202
    }
269
203
    gpgme_data_release(pgp_data);
270
204
    return true;
283
217
    return false;
284
218
  }
285
219
  
286
 
  /* Set GPGME home directory for the OpenPGP engine only */
 
220
    /* Set GPGME home directory for the OpenPGP engine only */
287
221
  rc = gpgme_get_engine_info(&engine_info);
288
222
  if(rc != GPG_ERR_NO_ERROR){
289
223
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
315
249
    return false;
316
250
  }
317
251
  
318
 
  return true;
 
252
  return true; 
319
253
}
320
254
 
321
255
/* 
375
309
        }
376
310
        gpgme_recipient_t recipient;
377
311
        recipient = result->recipients;
378
 
        while(recipient != NULL){
379
 
          fprintf(stderr, "Public key algorithm: %s\n",
380
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
381
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
382
 
          fprintf(stderr, "Secret key available: %s\n",
383
 
                  recipient->status == GPG_ERR_NO_SECKEY
384
 
                  ? "No" : "Yes");
385
 
          recipient = recipient->next;
 
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
          }
386
322
        }
387
323
      }
388
324
    }
395
331
  
396
332
  /* Seek back to the beginning of the GPGME plaintext data buffer */
397
333
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
398
 
    perror_plus("gpgme_data_seek");
 
334
    perror("gpgme_data_seek");
399
335
    plaintext_length = -1;
400
336
    goto decrypt_end;
401
337
  }
406
342
                                      (size_t)plaintext_length,
407
343
                                      plaintext_capacity);
408
344
    if(plaintext_capacity == 0){
409
 
        perror_plus("incbuffer");
 
345
        perror("incbuffer");
410
346
        plaintext_length = -1;
411
347
        goto decrypt_end;
412
348
    }
419
355
      break;
420
356
    }
421
357
    if(ret < 0){
422
 
      perror_plus("gpgme_data_read");
 
358
      perror("gpgme_data_read");
423
359
      plaintext_length = -1;
424
360
      goto decrypt_end;
425
361
    }
482
418
  }
483
419
  
484
420
  /* OpenPGP credentials */
485
 
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
 
421
  gnutls_certificate_allocate_credentials(&mc.cred);
486
422
  if(ret != GNUTLS_E_SUCCESS){
487
 
    fprintf(stderr, "GnuTLS memory error: %s\n",
 
423
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
424
                                                    from
 
425
                                                    -Wunreachable-code
 
426
                                                 */
488
427
            safer_gnutls_strerror(ret));
489
428
    gnutls_global_deinit();
490
429
    return -1;
537
476
static int init_gnutls_session(gnutls_session_t *session){
538
477
  int ret;
539
478
  /* GnuTLS session creation */
540
 
  do {
541
 
    ret = gnutls_init(session, GNUTLS_SERVER);
542
 
    if(quit_now){
543
 
      return -1;
544
 
    }
545
 
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
479
  ret = gnutls_init(session, GNUTLS_SERVER);
546
480
  if(ret != GNUTLS_E_SUCCESS){
547
481
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
548
482
            safer_gnutls_strerror(ret));
550
484
  
551
485
  {
552
486
    const char *err;
553
 
    do {
554
 
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
555
 
      if(quit_now){
556
 
        gnutls_deinit(*session);
557
 
        return -1;
558
 
      }
559
 
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
487
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
560
488
    if(ret != GNUTLS_E_SUCCESS){
561
489
      fprintf(stderr, "Syntax error at: %s\n", err);
562
490
      fprintf(stderr, "GnuTLS error: %s\n",
566
494
    }
567
495
  }
568
496
  
569
 
  do {
570
 
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
571
 
                                 mc.cred);
572
 
    if(quit_now){
573
 
      gnutls_deinit(*session);
574
 
      return -1;
575
 
    }
576
 
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
497
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
498
                               mc.cred);
577
499
  if(ret != GNUTLS_E_SUCCESS){
578
500
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
579
501
            safer_gnutls_strerror(ret));
582
504
  }
583
505
  
584
506
  /* ignore client certificate if any. */
585
 
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
 
507
  gnutls_certificate_server_set_request(*session,
 
508
                                        GNUTLS_CERT_IGNORE);
586
509
  
587
510
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
588
511
  
597
520
static int start_mandos_communication(const char *ip, uint16_t port,
598
521
                                      AvahiIfIndex if_index,
599
522
                                      int af){
600
 
  int ret, tcp_sd = -1;
 
523
  int ret, tcp_sd;
601
524
  ssize_t sret;
602
525
  union {
603
526
    struct sockaddr_in in;
604
527
    struct sockaddr_in6 in6;
605
528
  } to;
606
529
  char *buffer = NULL;
607
 
  char *decrypted_buffer = NULL;
 
530
  char *decrypted_buffer;
608
531
  size_t buffer_length = 0;
609
532
  size_t buffer_capacity = 0;
 
533
  ssize_t decrypted_buffer_size;
610
534
  size_t written;
611
 
  int retval = -1;
 
535
  int retval = 0;
612
536
  gnutls_session_t session;
613
537
  int pf;                       /* Protocol family */
614
538
  
615
 
  errno = 0;
616
 
  
617
 
  if(quit_now){
618
 
    errno = EINTR;
619
 
    return -1;
620
 
  }
621
 
  
622
539
  switch(af){
623
540
  case AF_INET6:
624
541
    pf = PF_INET6;
628
545
    break;
629
546
  default:
630
547
    fprintf(stderr, "Bad address family: %d\n", af);
631
 
    errno = EINVAL;
632
548
    return -1;
633
549
  }
634
550
  
644
560
  
645
561
  tcp_sd = socket(pf, SOCK_STREAM, 0);
646
562
  if(tcp_sd < 0){
647
 
    int e = errno;
648
 
    perror_plus("socket");
649
 
    errno = e;
650
 
    goto mandos_end;
651
 
  }
652
 
  
653
 
  if(quit_now){
654
 
    errno = EINTR;
655
 
    goto mandos_end;
 
563
    perror("socket");
 
564
    return -1;
656
565
  }
657
566
  
658
567
  memset(&to, 0, sizeof(to));
659
568
  if(af == AF_INET6){
660
 
    to.in6.sin6_family = (sa_family_t)af;
 
569
    to.in6.sin6_family = (uint16_t)af;
661
570
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
662
571
  } else {                      /* IPv4 */
663
572
    to.in.sin_family = (sa_family_t)af;
664
573
    ret = inet_pton(af, ip, &to.in.sin_addr);
665
574
  }
666
575
  if(ret < 0 ){
667
 
    int e = errno;
668
 
    perror_plus("inet_pton");
669
 
    errno = e;
670
 
    goto mandos_end;
 
576
    perror("inet_pton");
 
577
    return -1;
671
578
  }
672
579
  if(ret == 0){
673
 
    int e = errno;
674
580
    fprintf(stderr, "Bad address: %s\n", ip);
675
 
    errno = e;
676
 
    goto mandos_end;
 
581
    return -1;
677
582
  }
678
583
  if(af == AF_INET6){
679
584
    to.in6.sin6_port = htons(port); /* Spurious warnings from
686
591
      if(if_index == AVAHI_IF_UNSPEC){
687
592
        fprintf(stderr, "An IPv6 link-local address is incomplete"
688
593
                " without a network interface\n");
689
 
        errno = EINVAL;
690
 
        goto mandos_end;
 
594
        return -1;
691
595
      }
692
596
      /* Set the network interface number as scope */
693
597
      to.in6.sin6_scope_id = (uint32_t)if_index;
698
602
                                     -Wunreachable-code */
699
603
  }
700
604
  
701
 
  if(quit_now){
702
 
    errno = EINTR;
703
 
    goto mandos_end;
704
 
  }
705
 
  
706
605
  if(debug){
707
606
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
708
607
      char interface[IF_NAMESIZE];
709
608
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
710
 
        perror_plus("if_indextoname");
 
609
        perror("if_indextoname");
711
610
      } else {
712
611
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
713
612
                ip, interface, port);
727
626
                        sizeof(addrstr));
728
627
    }
729
628
    if(pcret == NULL){
730
 
      perror_plus("inet_ntop");
 
629
      perror("inet_ntop");
731
630
    } else {
732
631
      if(strcmp(addrstr, ip) != 0){
733
632
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
735
634
    }
736
635
  }
737
636
  
738
 
  if(quit_now){
739
 
    errno = EINTR;
740
 
    goto mandos_end;
741
 
  }
742
 
  
743
637
  if(af == AF_INET6){
744
638
    ret = connect(tcp_sd, &to.in6, sizeof(to));
745
639
  } else {
746
640
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
747
641
  }
748
642
  if(ret < 0){
749
 
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
750
 
      int e = errno;
751
 
      perror_plus("connect");
752
 
      errno = e;
753
 
    }
754
 
    goto mandos_end;
755
 
  }
756
 
  
757
 
  if(quit_now){
758
 
    errno = EINTR;
759
 
    goto mandos_end;
 
643
    perror("connect");
 
644
    return -1;
760
645
  }
761
646
  
762
647
  const char *out = mandos_protocol_version;
766
651
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
767
652
                                   out_size - written));
768
653
    if(ret == -1){
769
 
      int e = errno;
770
 
      perror_plus("write");
771
 
      errno = e;
 
654
      perror("write");
 
655
      retval = -1;
772
656
      goto mandos_end;
773
657
    }
774
658
    written += (size_t)ret;
782
666
        break;
783
667
      }
784
668
    }
785
 
  
786
 
    if(quit_now){
787
 
      errno = EINTR;
788
 
      goto mandos_end;
789
 
    }
790
669
  }
791
670
  
792
671
  if(debug){
793
672
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
794
673
  }
795
674
  
796
 
  if(quit_now){
797
 
    errno = EINTR;
798
 
    goto mandos_end;
799
 
  }
800
 
  
801
 
  /* Spurious warning from -Wint-to-pointer-cast */
802
675
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
803
676
  
804
 
  if(quit_now){
805
 
    errno = EINTR;
806
 
    goto mandos_end;
807
 
  }
808
 
  
809
 
  do {
 
677
  do{
810
678
    ret = gnutls_handshake(session);
811
 
    if(quit_now){
812
 
      errno = EINTR;
813
 
      goto mandos_end;
814
 
    }
815
679
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
816
680
  
817
681
  if(ret != GNUTLS_E_SUCCESS){
819
683
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
820
684
      gnutls_perror(ret);
821
685
    }
822
 
    errno = EPROTO;
 
686
    retval = -1;
823
687
    goto mandos_end;
824
688
  }
825
689
  
831
695
  }
832
696
  
833
697
  while(true){
834
 
    
835
 
    if(quit_now){
836
 
      errno = EINTR;
837
 
      goto mandos_end;
838
 
    }
839
 
    
840
698
    buffer_capacity = incbuffer(&buffer, buffer_length,
841
699
                                   buffer_capacity);
842
700
    if(buffer_capacity == 0){
843
 
      int e = errno;
844
 
      perror_plus("incbuffer");
845
 
      errno = e;
846
 
      goto mandos_end;
847
 
    }
848
 
    
849
 
    if(quit_now){
850
 
      errno = EINTR;
 
701
      perror("incbuffer");
 
702
      retval = -1;
851
703
      goto mandos_end;
852
704
    }
853
705
    
862
714
      case GNUTLS_E_AGAIN:
863
715
        break;
864
716
      case GNUTLS_E_REHANDSHAKE:
865
 
        do {
 
717
        do{
866
718
          ret = gnutls_handshake(session);
867
 
          
868
 
          if(quit_now){
869
 
            errno = EINTR;
870
 
            goto mandos_end;
871
 
          }
872
719
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
873
720
        if(ret < 0){
874
721
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
875
722
          gnutls_perror(ret);
876
 
          errno = EPROTO;
 
723
          retval = -1;
877
724
          goto mandos_end;
878
725
        }
879
726
        break;
880
727
      default:
881
728
        fprintf(stderr, "Unknown error while reading data from"
882
729
                " encrypted session with Mandos server\n");
 
730
        retval = -1;
883
731
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
884
 
        errno = EIO;
885
732
        goto mandos_end;
886
733
      }
887
734
    } else {
893
740
    fprintf(stderr, "Closing TLS session\n");
894
741
  }
895
742
  
896
 
  if(quit_now){
897
 
    errno = EINTR;
898
 
    goto mandos_end;
899
 
  }
900
 
  
901
 
  do {
902
 
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
903
 
    if(quit_now){
904
 
      errno = EINTR;
905
 
      goto mandos_end;
906
 
    }
907
 
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
743
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
908
744
  
909
745
  if(buffer_length > 0){
910
 
    ssize_t decrypted_buffer_size;
911
746
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
912
747
                                               buffer_length,
913
748
                                               &decrypted_buffer);
914
749
    if(decrypted_buffer_size >= 0){
915
 
      
916
750
      written = 0;
917
751
      while(written < (size_t) decrypted_buffer_size){
918
 
        if(quit_now){
919
 
          errno = EINTR;
920
 
          goto mandos_end;
921
 
        }
922
 
        
923
752
        ret = (int)fwrite(decrypted_buffer + written, 1,
924
753
                          (size_t)decrypted_buffer_size - written,
925
754
                          stdout);
926
755
        if(ret == 0 and ferror(stdout)){
927
 
          int e = errno;
928
756
          if(debug){
929
757
            fprintf(stderr, "Error writing encrypted data: %s\n",
930
758
                    strerror(errno));
931
759
          }
932
 
          errno = e;
933
 
          goto mandos_end;
 
760
          retval = -1;
 
761
          break;
934
762
        }
935
763
        written += (size_t)ret;
936
764
      }
937
 
      retval = 0;
 
765
      free(decrypted_buffer);
 
766
    } else {
 
767
      retval = -1;
938
768
    }
 
769
  } else {
 
770
    retval = -1;
939
771
  }
940
772
  
941
773
  /* Shutdown procedure */
942
774
  
943
775
 mandos_end:
944
 
  {
945
 
    int e = errno;
946
 
    free(decrypted_buffer);
947
 
    free(buffer);
948
 
    if(tcp_sd >= 0){
949
 
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
950
 
    }
951
 
    if(ret == -1){
952
 
      if(e == 0){
953
 
        e = errno;
954
 
      }
955
 
      perror_plus("close");
956
 
    }
957
 
    gnutls_deinit(session);
958
 
    errno = e;
959
 
    if(quit_now){
960
 
      errno = EINTR;
961
 
      retval = -1;
962
 
    }
 
776
  free(buffer);
 
777
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
778
  if(ret == -1){
 
779
    perror("close");
963
780
  }
 
781
  gnutls_deinit(session);
964
782
  return retval;
965
783
}
966
784
 
983
801
  /* Called whenever a service has been resolved successfully or
984
802
     timed out */
985
803
  
986
 
  if(quit_now){
987
 
    return;
988
 
  }
989
 
  
990
804
  switch(event){
991
805
  default:
992
806
  case AVAHI_RESOLVER_FAILURE:
1008
822
                                           avahi_proto_to_af(proto));
1009
823
      if(ret == 0){
1010
824
        avahi_simple_poll_quit(mc.simple_poll);
1011
 
      } else {
1012
 
        ret = add_server(ip, port, interface,
1013
 
                         avahi_proto_to_af(proto));
1014
825
      }
1015
826
    }
1016
827
  }
1032
843
  /* Called whenever a new services becomes available on the LAN or
1033
844
     is removed from the LAN */
1034
845
  
1035
 
  if(quit_now){
1036
 
    return;
1037
 
  }
1038
 
  
1039
846
  switch(event){
1040
847
  default:
1041
848
  case AVAHI_BROWSER_FAILURE:
1070
877
  }
1071
878
}
1072
879
 
1073
 
/* Signal handler that stops main loop after SIGTERM */
1074
 
static void handle_sigterm(int sig){
 
880
sig_atomic_t quit_now = 0;
 
881
 
 
882
/* stop main loop after sigterm has been called */
 
883
static void handle_sigterm(__attribute__((unused)) int sig){
1075
884
  if(quit_now){
1076
885
    return;
1077
886
  }
1078
887
  quit_now = 1;
1079
 
  signal_received = sig;
1080
888
  int old_errno = errno;
1081
 
  /* set main loop to exit */
1082
889
  if(mc.simple_poll != NULL){
1083
890
    avahi_simple_poll_quit(mc.simple_poll);
1084
891
  }
1085
892
  errno = old_errno;
1086
893
}
1087
894
 
1088
 
bool get_flags(const char *ifname, struct ifreq *ifr){
1089
 
  int ret;
1090
 
  
1091
 
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1092
 
  if(s < 0){
1093
 
    perror_plus("socket");
1094
 
    return false;
1095
 
  }
1096
 
  strcpy(ifr->ifr_name, ifname);
1097
 
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1098
 
  if(ret == -1){
1099
 
    if(debug){
1100
 
      perror_plus("ioctl SIOCGIFFLAGS");
1101
 
    }
1102
 
    return false;
1103
 
  }
1104
 
  return true;
1105
 
}
1106
 
 
1107
 
bool good_flags(const char *ifname, const struct ifreq *ifr){
1108
 
  
1109
 
  /* Reject the loopback device */
1110
 
  if(ifr->ifr_flags & IFF_LOOPBACK){
1111
 
    if(debug){
1112
 
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1113
 
              ifname);
1114
 
    }
1115
 
    return false;
1116
 
  }
1117
 
  /* Accept point-to-point devices only if connect_to is specified */
1118
 
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1119
 
    if(debug){
1120
 
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1121
 
              ifname);
1122
 
    }
1123
 
    return true;
1124
 
  }
1125
 
  /* Otherwise, reject non-broadcast-capable devices */
1126
 
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
1127
 
    if(debug){
1128
 
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1129
 
              ifname);
1130
 
    }
1131
 
    return false;
1132
 
  }
1133
 
  /* Reject non-ARP interfaces (including dummy interfaces) */
1134
 
  if(ifr->ifr_flags & IFF_NOARP){
1135
 
    if(debug){
1136
 
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n", ifname);
1137
 
    }
1138
 
    return false;
1139
 
  }
1140
 
  
1141
 
  /* Accept this device */
1142
 
  if(debug){
1143
 
    fprintf(stderr, "Interface \"%s\" is good\n", ifname);
1144
 
  }
1145
 
  return true;
1146
 
}
1147
 
 
1148
 
/* 
1149
 
 * This function determines if a directory entry in /sys/class/net
1150
 
 * corresponds to an acceptable network device.
1151
 
 * (This function is passed to scandir(3) as a filter function.)
1152
 
 */
1153
 
int good_interface(const struct dirent *if_entry){
1154
 
  int ret;
1155
 
  if(if_entry->d_name[0] == '.'){
1156
 
    return 0;
1157
 
  }
1158
 
  struct ifreq ifr;
1159
 
 
1160
 
  if(not get_flags(if_entry->d_name, &ifr)){
1161
 
    return 0;
1162
 
  }
1163
 
  
1164
 
  if(not good_flags(if_entry->d_name, &ifr)){
1165
 
    return 0;
1166
 
  }
1167
 
  return 1;
1168
 
}
1169
 
 
1170
 
int notdotentries(const struct dirent *direntry){
1171
 
  /* Skip "." and ".." */
1172
 
  if(direntry->d_name[0] == '.'
1173
 
     and (direntry->d_name[1] == '\0'
1174
 
          or (direntry->d_name[1] == '.'
1175
 
              and direntry->d_name[2] == '\0'))){
1176
 
    return 0;
1177
 
  }
1178
 
  return 1;
1179
 
}
1180
 
 
1181
 
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1182
 
  int ret;
1183
 
  struct timespec now;
1184
 
  struct timespec waited_time;
1185
 
  intmax_t block_time;
1186
 
  
1187
 
  while(true){
1188
 
    if(mc.current_server == NULL){
1189
 
      if (debug){
1190
 
        fprintf(stderr,
1191
 
                "Wait until first server is found. No timeout!\n");
1192
 
      }
1193
 
      ret = avahi_simple_poll_iterate(s, -1);
1194
 
    } else {
1195
 
      if (debug){
1196
 
        fprintf(stderr, "Check current_server if we should run it,"
1197
 
                " or wait\n");
1198
 
      }
1199
 
      /* the current time */
1200
 
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
1201
 
      if(ret == -1){
1202
 
        perror_plus("clock_gettime");
1203
 
        return -1;
1204
 
      }
1205
 
      /* Calculating in ms how long time between now and server
1206
 
         who we visted longest time ago. Now - last seen.  */
1207
 
      waited_time.tv_sec = (now.tv_sec
1208
 
                            - mc.current_server->last_seen.tv_sec);
1209
 
      waited_time.tv_nsec = (now.tv_nsec
1210
 
                             - mc.current_server->last_seen.tv_nsec);
1211
 
      /* total time is 10s/10,000ms.
1212
 
         Converting to s from ms by dividing by 1,000,
1213
 
         and ns to ms by dividing by 1,000,000. */
1214
 
      block_time = ((retry_interval
1215
 
                     - ((intmax_t)waited_time.tv_sec * 1000))
1216
 
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
1217
 
      
1218
 
      if (debug){
1219
 
        fprintf(stderr, "Blocking for %" PRIdMAX " ms\n", block_time);
1220
 
      }
1221
 
      
1222
 
      if(block_time <= 0){
1223
 
        ret = start_mandos_communication(mc.current_server->ip,
1224
 
                                         mc.current_server->port,
1225
 
                                         mc.current_server->if_index,
1226
 
                                         mc.current_server->af);
1227
 
        if(ret == 0){
1228
 
          avahi_simple_poll_quit(mc.simple_poll);
1229
 
          return 0;
1230
 
        }
1231
 
        ret = clock_gettime(CLOCK_MONOTONIC,
1232
 
                            &mc.current_server->last_seen);
1233
 
        if(ret == -1){
1234
 
          perror_plus("clock_gettime");
1235
 
          return -1;
1236
 
        }
1237
 
        mc.current_server = mc.current_server->next;
1238
 
        block_time = 0;         /* Call avahi to find new Mandos
1239
 
                                   servers, but don't block */
1240
 
      }
1241
 
      
1242
 
      ret = avahi_simple_poll_iterate(s, (int)block_time);
1243
 
    }
1244
 
    if(ret != 0){
1245
 
      if (ret > 0 or errno != EINTR) {
1246
 
        return (ret != 1) ? ret : 0;
1247
 
      }
1248
 
    }
1249
 
  }
1250
 
}
1251
 
 
1252
895
int main(int argc, char *argv[]){
1253
896
  AvahiSServiceBrowser *sb = NULL;
1254
897
  int error;
1256
899
  intmax_t tmpmax;
1257
900
  char *tmp;
1258
901
  int exitcode = EXIT_SUCCESS;
1259
 
  const char *interface = "";
 
902
  const char *interface = "eth0";
1260
903
  struct ifreq network;
1261
 
  int sd = -1;
1262
 
  bool take_down_interface = false;
 
904
  int sd;
1263
905
  uid_t uid;
1264
906
  gid_t gid;
 
907
  char *connect_to = NULL;
1265
908
  char tempdir[] = "/tmp/mandosXXXXXX";
1266
909
  bool tempdir_created = false;
1267
910
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1271
914
  bool gnutls_initialized = false;
1272
915
  bool gpgme_initialized = false;
1273
916
  float delay = 2.5f;
1274
 
  double retry_interval = 10; /* 10s between trying a server and
1275
 
                                 retrying the same server again */
1276
917
  
1277
 
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
 
918
  struct sigaction old_sigterm_action;
1278
919
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1279
920
  
1280
 
  uid = getuid();
1281
 
  gid = getgid();
1282
 
  
1283
 
  /* Lower any group privileges we might have, just to be safe */
1284
 
  errno = 0;
1285
 
  ret = setgid(gid);
1286
 
  if(ret == -1){
1287
 
    perror_plus("setgid");
1288
 
  }
1289
 
  
1290
 
  /* Lower user privileges (temporarily) */
1291
 
  errno = 0;
1292
 
  ret = seteuid(uid);
1293
 
  if(ret == -1){
1294
 
    perror_plus("seteuid");
1295
 
  }
1296
 
  
1297
 
  if(quit_now){
1298
 
    goto end;
1299
 
  }
1300
 
  
1301
921
  {
1302
922
    struct argp_option options[] = {
1303
923
      { .name = "debug", .key = 128,
1332
952
        .arg = "SECONDS",
1333
953
        .doc = "Maximum delay to wait for interface startup",
1334
954
        .group = 2 },
1335
 
      { .name = "retry", .key = 132,
1336
 
        .arg = "SECONDS",
1337
 
        .doc = "Retry interval used when denied by the mandos server",
1338
 
        .group = 2 },
1339
 
      /*
1340
 
       * These reproduce what we would get without ARGP_NO_HELP
1341
 
       */
1342
 
      { .name = "help", .key = '?',
1343
 
        .doc = "Give this help list", .group = -1 },
1344
 
      { .name = "usage", .key = -3,
1345
 
        .doc = "Give a short usage message", .group = -1 },
1346
 
      { .name = "version", .key = 'V',
1347
 
        .doc = "Print program version", .group = -1 },
1348
955
      { .name = NULL }
1349
956
    };
1350
957
    
1351
958
    error_t parse_opt(int key, char *arg,
1352
959
                      struct argp_state *state){
1353
 
      errno = 0;
1354
960
      switch(key){
1355
961
      case 128:                 /* --debug */
1356
962
        debug = true;
1372
978
        tmpmax = strtoimax(arg, &tmp, 10);
1373
979
        if(errno != 0 or tmp == arg or *tmp != '\0'
1374
980
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1375
 
          argp_error(state, "Bad number of DH bits");
 
981
          fprintf(stderr, "Bad number of DH bits\n");
 
982
          exit(EXIT_FAILURE);
1376
983
        }
1377
984
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1378
985
        break;
1383
990
        errno = 0;
1384
991
        delay = strtof(arg, &tmp);
1385
992
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1386
 
          argp_error(state, "Bad delay");
1387
 
        }
1388
 
      case 132:                 /* --retry */
1389
 
        errno = 0;
1390
 
        retry_interval = strtod(arg, &tmp);
1391
 
        if(errno != 0 or tmp == arg or *tmp != '\0'
1392
 
           or (retry_interval * 1000) > INT_MAX
1393
 
           or retry_interval < 0){
1394
 
          argp_error(state, "Bad retry interval");
 
993
          fprintf(stderr, "Bad delay\n");
 
994
          exit(EXIT_FAILURE);
1395
995
        }
1396
996
        break;
1397
 
        /*
1398
 
         * These reproduce what we would get without ARGP_NO_HELP
1399
 
         */
1400
 
      case '?':                 /* --help */
1401
 
        argp_state_help(state, state->out_stream,
1402
 
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1403
 
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
1404
 
      case -3:                  /* --usage */
1405
 
        argp_state_help(state, state->out_stream,
1406
 
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1407
 
      case 'V':                 /* --version */
1408
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
1409
 
        exit(argp_err_exit_status);
 
997
      case ARGP_KEY_ARG:
 
998
        argp_usage(state);
 
999
      case ARGP_KEY_END:
1410
1000
        break;
1411
1001
      default:
1412
1002
        return ARGP_ERR_UNKNOWN;
1413
1003
      }
1414
 
      return errno;
 
1004
      return 0;
1415
1005
    }
1416
1006
    
1417
1007
    struct argp argp = { .options = options, .parser = parse_opt,
1418
1008
                         .args_doc = "",
1419
1009
                         .doc = "Mandos client -- Get and decrypt"
1420
1010
                         " passwords from a Mandos server" };
1421
 
    ret = argp_parse(&argp, argc, argv,
1422
 
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1423
 
    switch(ret){
1424
 
    case 0:
1425
 
      break;
1426
 
    case ENOMEM:
1427
 
    default:
1428
 
      errno = ret;
1429
 
      perror_plus("argp_parse");
1430
 
      exitcode = EX_OSERR;
1431
 
      goto end;
1432
 
    case EINVAL:
1433
 
      exitcode = EX_USAGE;
1434
 
      goto end;
1435
 
    }
1436
 
  }
1437
 
    
1438
 
  {
1439
 
    /* Work around Debian bug #633582:
1440
 
       <http://bugs.debian.org/633582> */
1441
 
    struct stat st;
1442
 
    
1443
 
    /* Re-raise priviliges */
1444
 
    errno = 0;
1445
 
    ret = seteuid(0);
1446
 
    if(ret == -1){
1447
 
      perror_plus("seteuid");
1448
 
    }
1449
 
    
1450
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1451
 
      int seckey_fd = open(seckey, O_RDONLY);
1452
 
      if(seckey_fd == -1){
1453
 
        perror_plus("open");
1454
 
      } else {
1455
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1456
 
        if(ret == -1){
1457
 
          perror_plus("fstat");
1458
 
        } else {
1459
 
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1460
 
            ret = fchown(seckey_fd, uid, gid);
1461
 
            if(ret == -1){
1462
 
              perror_plus("fchown");
1463
 
            }
1464
 
          }
1465
 
        }
1466
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1467
 
      }
1468
 
    }
1469
 
    
1470
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1471
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1472
 
      if(pubkey_fd == -1){
1473
 
        perror_plus("open");
1474
 
      } else {
1475
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1476
 
        if(ret == -1){
1477
 
          perror_plus("fstat");
1478
 
        } else {
1479
 
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1480
 
            ret = fchown(pubkey_fd, uid, gid);
1481
 
            if(ret == -1){
1482
 
              perror_plus("fchown");
1483
 
            }
1484
 
          }
1485
 
        }
1486
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1487
 
      }
1488
 
    }
1489
 
    
1490
 
    /* Lower privileges */
1491
 
    errno = 0;
1492
 
    ret = seteuid(uid);
1493
 
    if(ret == -1){
1494
 
      perror_plus("seteuid");
 
1011
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
1012
    if(ret == ARGP_ERR_UNKNOWN){
 
1013
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
1014
      exitcode = EXIT_FAILURE;
 
1015
      goto end;
1495
1016
    }
1496
1017
  }
1497
1018
  
1498
1019
  if(not debug){
1499
1020
    avahi_set_log_function(empty_log);
1500
1021
  }
1501
 
 
1502
 
  if(interface[0] == '\0'){
1503
 
    struct dirent **direntries;
1504
 
    ret = scandir(sys_class_net, &direntries, good_interface,
1505
 
                  alphasort);
1506
 
    if(ret >= 1){
1507
 
      /* Pick the first good interface */
1508
 
      interface = strdup(direntries[0]->d_name);
1509
 
      if(debug){
1510
 
        fprintf(stderr, "Using interface \"%s\"\n", interface);
1511
 
      }
1512
 
      if(interface == NULL){
1513
 
        perror_plus("malloc");
1514
 
        free(direntries);
1515
 
        exitcode = EXIT_FAILURE;
1516
 
        goto end;
1517
 
      }
1518
 
      free(direntries);
1519
 
    } else {
1520
 
      free(direntries);
1521
 
      fprintf(stderr, "Could not find a network interface\n");
1522
 
      exitcode = EXIT_FAILURE;
1523
 
      goto end;
1524
 
    }
1525
 
  }
1526
1022
  
1527
1023
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1528
1024
     from the signal handler */
1531
1027
  mc.simple_poll = avahi_simple_poll_new();
1532
1028
  if(mc.simple_poll == NULL){
1533
1029
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1534
 
    exitcode = EX_UNAVAILABLE;
 
1030
    exitcode = EXIT_FAILURE;
1535
1031
    goto end;
1536
1032
  }
1537
1033
  
1538
1034
  sigemptyset(&sigterm_action.sa_mask);
1539
1035
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1540
1036
  if(ret == -1){
1541
 
    perror_plus("sigaddset");
1542
 
    exitcode = EX_OSERR;
 
1037
    perror("sigaddset");
 
1038
    exitcode = EXIT_FAILURE;
1543
1039
    goto end;
1544
1040
  }
1545
1041
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1546
1042
  if(ret == -1){
1547
 
    perror_plus("sigaddset");
1548
 
    exitcode = EX_OSERR;
 
1043
    perror("sigaddset");
 
1044
    exitcode = EXIT_FAILURE;
1549
1045
    goto end;
1550
1046
  }
1551
1047
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1552
1048
  if(ret == -1){
1553
 
    perror_plus("sigaddset");
1554
 
    exitcode = EX_OSERR;
1555
 
    goto end;
1556
 
  }
1557
 
  /* Need to check if the handler is SIG_IGN before handling:
1558
 
     | [[info:libc:Initial Signal Actions]] |
1559
 
     | [[info:libc:Basic Signal Handling]]  |
1560
 
  */
1561
 
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1562
 
  if(ret == -1){
1563
 
    perror_plus("sigaction");
1564
 
    return EX_OSERR;
1565
 
  }
1566
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1567
 
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1568
 
    if(ret == -1){
1569
 
      perror_plus("sigaction");
1570
 
      exitcode = EX_OSERR;
1571
 
      goto end;
1572
 
    }
1573
 
  }
1574
 
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1575
 
  if(ret == -1){
1576
 
    perror_plus("sigaction");
1577
 
    return EX_OSERR;
1578
 
  }
1579
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1580
 
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1581
 
    if(ret == -1){
1582
 
      perror_plus("sigaction");
1583
 
      exitcode = EX_OSERR;
1584
 
      goto end;
1585
 
    }
1586
 
  }
1587
 
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1588
 
  if(ret == -1){
1589
 
    perror_plus("sigaction");
1590
 
    return EX_OSERR;
1591
 
  }
1592
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1593
 
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1594
 
    if(ret == -1){
1595
 
      perror_plus("sigaction");
1596
 
      exitcode = EX_OSERR;
1597
 
      goto end;
1598
 
    }
1599
 
  }
 
1049
    perror("sigaddset");
 
1050
    exitcode = EXIT_FAILURE;
 
1051
    goto end;
 
1052
  }
 
1053
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1054
  if(ret == -1){
 
1055
    perror("sigaction");
 
1056
    exitcode = EXIT_FAILURE;
 
1057
    goto end;
 
1058
  }  
1600
1059
  
1601
1060
  /* If the interface is down, bring it up */
1602
 
  if(strcmp(interface, "none") != 0){
1603
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1604
 
    if(if_index == 0){
1605
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1606
 
      exitcode = EX_UNAVAILABLE;
1607
 
      goto end;
1608
 
    }
1609
 
    
1610
 
    if(quit_now){
1611
 
      goto end;
1612
 
    }
1613
 
    
1614
 
    /* Re-raise priviliges */
1615
 
    errno = 0;
1616
 
    ret = seteuid(0);
1617
 
    if(ret == -1){
1618
 
      perror_plus("seteuid");
1619
 
    }
1620
 
    
 
1061
  if(interface[0] != '\0'){
1621
1062
#ifdef __linux__
1622
1063
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1623
 
       messages about the network interface to mess up the prompt */
 
1064
       messages to mess up the prompt */
1624
1065
    ret = klogctl(8, NULL, 5);
1625
1066
    bool restore_loglevel = true;
1626
1067
    if(ret == -1){
1627
1068
      restore_loglevel = false;
1628
 
      perror_plus("klogctl");
 
1069
      perror("klogctl");
1629
1070
    }
1630
1071
#endif  /* __linux__ */
1631
1072
    
1632
1073
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1633
1074
    if(sd < 0){
1634
 
      perror_plus("socket");
1635
 
      exitcode = EX_OSERR;
 
1075
      perror("socket");
 
1076
      exitcode = EXIT_FAILURE;
1636
1077
#ifdef __linux__
1637
1078
      if(restore_loglevel){
1638
1079
        ret = klogctl(7, NULL, 0);
1639
1080
        if(ret == -1){
1640
 
          perror_plus("klogctl");
 
1081
          perror("klogctl");
1641
1082
        }
1642
1083
      }
1643
1084
#endif  /* __linux__ */
1644
 
      /* Lower privileges */
1645
 
      errno = 0;
1646
 
      ret = seteuid(uid);
1647
 
      if(ret == -1){
1648
 
        perror_plus("seteuid");
1649
 
      }
1650
1085
      goto end;
1651
1086
    }
1652
1087
    strcpy(network.ifr_name, interface);
1653
1088
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1654
1089
    if(ret == -1){
1655
 
      perror_plus("ioctl SIOCGIFFLAGS");
 
1090
      perror("ioctl SIOCGIFFLAGS");
1656
1091
#ifdef __linux__
1657
1092
      if(restore_loglevel){
1658
1093
        ret = klogctl(7, NULL, 0);
1659
1094
        if(ret == -1){
1660
 
          perror_plus("klogctl");
 
1095
          perror("klogctl");
1661
1096
        }
1662
1097
      }
1663
1098
#endif  /* __linux__ */
1664
 
      exitcode = EX_OSERR;
1665
 
      /* Lower privileges */
1666
 
      errno = 0;
1667
 
      ret = seteuid(uid);
1668
 
      if(ret == -1){
1669
 
        perror_plus("seteuid");
1670
 
      }
 
1099
      exitcode = EXIT_FAILURE;
1671
1100
      goto end;
1672
1101
    }
1673
1102
    if((network.ifr_flags & IFF_UP) == 0){
1674
1103
      network.ifr_flags |= IFF_UP;
1675
 
      take_down_interface = true;
1676
1104
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1677
1105
      if(ret == -1){
1678
 
        take_down_interface = false;
1679
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1680
 
        exitcode = EX_OSERR;
 
1106
        perror("ioctl SIOCSIFFLAGS");
 
1107
        exitcode = EXIT_FAILURE;
1681
1108
#ifdef __linux__
1682
1109
        if(restore_loglevel){
1683
1110
          ret = klogctl(7, NULL, 0);
1684
1111
          if(ret == -1){
1685
 
            perror_plus("klogctl");
 
1112
            perror("klogctl");
1686
1113
          }
1687
1114
        }
1688
1115
#endif  /* __linux__ */
1689
 
        /* Lower privileges */
1690
 
        errno = 0;
1691
 
        ret = seteuid(uid);
1692
 
        if(ret == -1){
1693
 
          perror_plus("seteuid");
1694
 
        }
1695
1116
        goto end;
1696
1117
      }
1697
1118
    }
1698
 
    /* Sleep checking until interface is running.
1699
 
       Check every 0.25s, up to total time of delay */
 
1119
    /* sleep checking until interface is running */
1700
1120
    for(int i=0; i < delay * 4; i++){
1701
1121
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1702
1122
      if(ret == -1){
1703
 
        perror_plus("ioctl SIOCGIFFLAGS");
 
1123
        perror("ioctl SIOCGIFFLAGS");
1704
1124
      } else if(network.ifr_flags & IFF_RUNNING){
1705
1125
        break;
1706
1126
      }
1707
1127
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1708
1128
      ret = nanosleep(&sleeptime, NULL);
1709
1129
      if(ret == -1 and errno != EINTR){
1710
 
        perror_plus("nanosleep");
 
1130
        perror("nanosleep");
1711
1131
      }
1712
1132
    }
1713
 
    if(not take_down_interface){
1714
 
      /* We won't need the socket anymore */
1715
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1716
 
      if(ret == -1){
1717
 
        perror_plus("close");
1718
 
      }
 
1133
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1134
    if(ret == -1){
 
1135
      perror("close");
1719
1136
    }
1720
1137
#ifdef __linux__
1721
1138
    if(restore_loglevel){
1722
1139
      /* Restores kernel loglevel to default */
1723
1140
      ret = klogctl(7, NULL, 0);
1724
1141
      if(ret == -1){
1725
 
        perror_plus("klogctl");
 
1142
        perror("klogctl");
1726
1143
      }
1727
1144
    }
1728
1145
#endif  /* __linux__ */
1729
 
    /* Lower privileges */
1730
 
    errno = 0;
1731
 
    if(take_down_interface){
1732
 
      /* Lower privileges */
1733
 
      ret = seteuid(uid);
1734
 
      if(ret == -1){
1735
 
        perror_plus("seteuid");
1736
 
      }
1737
 
    } else {
1738
 
      /* Lower privileges permanently */
1739
 
      ret = setuid(uid);
1740
 
      if(ret == -1){
1741
 
        perror_plus("setuid");
1742
 
      }
1743
 
    }
1744
 
  }
1745
 
  
1746
 
  if(quit_now){
1747
 
    goto end;
 
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");
1748
1160
  }
1749
1161
  
1750
1162
  ret = init_gnutls_global(pubkey, seckey);
1751
1163
  if(ret == -1){
1752
1164
    fprintf(stderr, "init_gnutls_global failed\n");
1753
 
    exitcode = EX_UNAVAILABLE;
 
1165
    exitcode = EXIT_FAILURE;
1754
1166
    goto end;
1755
1167
  } else {
1756
1168
    gnutls_initialized = true;
1757
1169
  }
1758
1170
  
1759
 
  if(quit_now){
1760
 
    goto end;
1761
 
  }
1762
 
  
1763
1171
  if(mkdtemp(tempdir) == NULL){
1764
 
    perror_plus("mkdtemp");
 
1172
    perror("mkdtemp");
1765
1173
    goto end;
1766
1174
  }
1767
1175
  tempdir_created = true;
1768
1176
  
1769
 
  if(quit_now){
1770
 
    goto end;
1771
 
  }
1772
 
  
1773
1177
  if(not init_gpgme(pubkey, seckey, tempdir)){
1774
1178
    fprintf(stderr, "init_gpgme failed\n");
1775
 
    exitcode = EX_UNAVAILABLE;
 
1179
    exitcode = EXIT_FAILURE;
1776
1180
    goto end;
1777
1181
  } else {
1778
1182
    gpgme_initialized = true;
1779
1183
  }
1780
1184
  
1781
 
  if(quit_now){
1782
 
    goto end;
 
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
    }
1783
1192
  }
1784
1193
  
1785
1194
  if(connect_to != NULL){
1788
1197
    char *address = strrchr(connect_to, ':');
1789
1198
    if(address == NULL){
1790
1199
      fprintf(stderr, "No colon in address\n");
1791
 
      exitcode = EX_USAGE;
1792
 
      goto end;
1793
 
    }
1794
 
    
1795
 
    if(quit_now){
1796
 
      goto end;
1797
 
    }
1798
 
    
 
1200
      exitcode = EXIT_FAILURE;
 
1201
      goto end;
 
1202
    }
1799
1203
    uint16_t port;
1800
1204
    errno = 0;
1801
1205
    tmpmax = strtoimax(address+1, &tmp, 10);
1802
1206
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1803
1207
       or tmpmax != (uint16_t)tmpmax){
1804
1208
      fprintf(stderr, "Bad port number\n");
1805
 
      exitcode = EX_USAGE;
1806
 
      goto end;
1807
 
    }
1808
 
  
1809
 
    if(quit_now){
1810
 
      goto end;
1811
 
    }
1812
 
    
 
1209
      exitcode = EXIT_FAILURE;
 
1210
      goto end;
 
1211
    }
1813
1212
    port = (uint16_t)tmpmax;
1814
1213
    *address = '\0';
 
1214
    address = connect_to;
1815
1215
    /* Colon in address indicates IPv6 */
1816
1216
    int af;
1817
 
    if(strchr(connect_to, ':') != NULL){
 
1217
    if(strchr(address, ':') != NULL){
1818
1218
      af = AF_INET6;
1819
 
      /* Accept [] around IPv6 address - see RFC 5952 */
1820
 
      if(connect_to[0] == '[' and address[-1] == ']')
1821
 
        {
1822
 
          connect_to++;
1823
 
          address[-1] = '\0';
1824
 
        }
1825
1219
    } else {
1826
1220
      af = AF_INET;
1827
1221
    }
1828
 
    address = connect_to;
1829
 
    
1830
 
    if(quit_now){
1831
 
      goto end;
1832
 
    }
1833
 
    
1834
 
    while(not quit_now){
1835
 
      ret = start_mandos_communication(address, port, if_index, af);
1836
 
      if(quit_now or ret == 0){
1837
 
        break;
1838
 
      }
1839
 
      if(debug){
1840
 
        fprintf(stderr, "Retrying in %d seconds\n",
1841
 
                (int)retry_interval);
1842
 
      }
1843
 
      sleep((int)retry_interval);
1844
 
    }
1845
 
    
1846
 
    if (not quit_now){
 
1222
    ret = start_mandos_communication(address, port, if_index, af);
 
1223
    if(ret < 0){
 
1224
      exitcode = EXIT_FAILURE;
 
1225
    } else {
1847
1226
      exitcode = EXIT_SUCCESS;
1848
1227
    }
1849
 
 
1850
 
    goto end;
1851
 
  }
1852
 
  
1853
 
  if(quit_now){
1854
 
    goto end;
1855
 
  }
1856
 
  
 
1228
    goto end;
 
1229
  }
 
1230
    
1857
1231
  {
1858
1232
    AvahiServerConfig config;
1859
1233
    /* Do not publish any local Zeroconf records */
1876
1250
  if(mc.server == NULL){
1877
1251
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1878
1252
            avahi_strerror(error));
1879
 
    exitcode = EX_UNAVAILABLE;
1880
 
    goto end;
1881
 
  }
1882
 
  
1883
 
  if(quit_now){
 
1253
    exitcode = EXIT_FAILURE;
1884
1254
    goto end;
1885
1255
  }
1886
1256
  
1891
1261
  if(sb == NULL){
1892
1262
    fprintf(stderr, "Failed to create service browser: %s\n",
1893
1263
            avahi_strerror(avahi_server_errno(mc.server)));
1894
 
    exitcode = EX_UNAVAILABLE;
1895
 
    goto end;
1896
 
  }
1897
 
  
1898
 
  if(quit_now){
 
1264
    exitcode = EXIT_FAILURE;
1899
1265
    goto end;
1900
1266
  }
1901
1267
  
1904
1270
  if(debug){
1905
1271
    fprintf(stderr, "Starting Avahi loop search\n");
1906
1272
  }
1907
 
 
1908
 
  ret = avahi_loop_with_timeout(mc.simple_poll,
1909
 
                                (int)(retry_interval * 1000));
1910
 
  if(debug){
1911
 
    fprintf(stderr, "avahi_loop_with_timeout exited %s\n",
1912
 
            (ret == 0) ? "successfully" : "with error");
1913
 
  }
 
1273
  
 
1274
  avahi_simple_poll_loop(mc.simple_poll);
1914
1275
  
1915
1276
 end:
1916
1277
  
1937
1298
  if(gpgme_initialized){
1938
1299
    gpgme_release(mc.ctx);
1939
1300
  }
1940
 
 
1941
 
  /* Cleans up the circular linked list of Mandos servers the client
1942
 
     has seen */
1943
 
  if(mc.current_server != NULL){
1944
 
    mc.current_server->prev->next = NULL;
1945
 
    while(mc.current_server != NULL){
1946
 
      server *next = mc.current_server->next;
1947
 
      free(mc.current_server);
1948
 
      mc.current_server = next;
1949
 
    }
1950
 
  }
1951
 
  
1952
 
  /* Take down the network interface */
1953
 
  if(take_down_interface){
1954
 
    /* Re-raise priviliges */
1955
 
    errno = 0;
1956
 
    ret = seteuid(0);
1957
 
    if(ret == -1){
1958
 
      perror_plus("seteuid");
1959
 
    }
1960
 
    if(geteuid() == 0){
1961
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1962
 
      if(ret == -1){
1963
 
        perror_plus("ioctl SIOCGIFFLAGS");
1964
 
      } else if(network.ifr_flags & IFF_UP) {
1965
 
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1966
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1967
 
        if(ret == -1){
1968
 
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1969
 
        }
1970
 
      }
1971
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1972
 
      if(ret == -1){
1973
 
        perror_plus("close");
1974
 
      }
1975
 
      /* Lower privileges permanently */
1976
 
      errno = 0;
1977
 
      ret = setuid(uid);
1978
 
      if(ret == -1){
1979
 
        perror_plus("setuid");
1980
 
      }
1981
 
    }
1982
 
  }
1983
 
  
1984
 
  /* Removes the GPGME temp directory and all files inside */
 
1301
  
 
1302
  /* Removes the temp directory used by GPGME */
1985
1303
  if(tempdir_created){
1986
 
    struct dirent **direntries = NULL;
1987
 
    struct dirent *direntry = NULL;
1988
 
    int numentries = scandir(tempdir, &direntries, notdotentries,
1989
 
                             alphasort);
1990
 
    if (numentries > 0){
1991
 
      for(int i = 0; i < numentries; i++){
1992
 
        direntry = direntries[i];
 
1304
    DIR *d;
 
1305
    struct dirent *direntry;
 
1306
    d = opendir(tempdir);
 
1307
    if(d == NULL){
 
1308
      if(errno != ENOENT){
 
1309
        perror("opendir");
 
1310
      }
 
1311
    } else {
 
1312
      while(true){
 
1313
        direntry = readdir(d);
 
1314
        if(direntry == NULL){
 
1315
          break;
 
1316
        }
 
1317
        /* Skip "." and ".." */
 
1318
        if(direntry->d_name[0] == '.'
 
1319
           and (direntry->d_name[1] == '\0'
 
1320
                or (direntry->d_name[1] == '.'
 
1321
                    and direntry->d_name[2] == '\0'))){
 
1322
          continue;
 
1323
        }
1993
1324
        char *fullname = NULL;
1994
1325
        ret = asprintf(&fullname, "%s/%s", tempdir,
1995
1326
                       direntry->d_name);
1996
1327
        if(ret < 0){
1997
 
          perror_plus("asprintf");
 
1328
          perror("asprintf");
1998
1329
          continue;
1999
1330
        }
2000
1331
        ret = remove(fullname);
2004
1335
        }
2005
1336
        free(fullname);
2006
1337
      }
2007
 
    }
2008
 
 
2009
 
    /* need to clean even if 0 because man page doesn't specify */
2010
 
    free(direntries);
2011
 
    if (numentries == -1){
2012
 
      perror_plus("scandir");
 
1338
      closedir(d);
2013
1339
    }
2014
1340
    ret = rmdir(tempdir);
2015
1341
    if(ret == -1 and errno != ENOENT){
2016
 
      perror_plus("rmdir");
2017
 
    }
2018
 
  }
2019
 
  
2020
 
  if(quit_now){
2021
 
    sigemptyset(&old_sigterm_action.sa_mask);
2022
 
    old_sigterm_action.sa_handler = SIG_DFL;
2023
 
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
2024
 
                                            &old_sigterm_action,
2025
 
                                            NULL));
2026
 
    if(ret == -1){
2027
 
      perror_plus("sigaction");
2028
 
    }
2029
 
    do {
2030
 
      ret = raise(signal_received);
2031
 
    } while(ret != 0 and errno == EINTR);
2032
 
    if(ret != 0){
2033
 
      perror_plus("raise");
2034
 
      abort();
2035
 
    }
2036
 
    TEMP_FAILURE_RETRY(pause());
 
1342
      perror("rmdir");
 
1343
    }
2037
1344
  }
2038
1345
  
2039
1346
  return exitcode;