/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: 2011-03-21 19:34:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110321193439-lkj3kwvhmujd8lwv
* plugins.d/mandos-client.c (good_interface): Reject non-ARP
                                              interfaces.

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,2009 Teddy Hogeborn
13
 
 * Copyright © 2008,2009 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 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
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
 
33
#ifndef _LARGEFILE_SOURCE
33
34
#define _LARGEFILE_SOURCE
 
35
#endif
 
36
#ifndef _FILE_OFFSET_BITS
34
37
#define _FILE_OFFSET_BITS 64
 
38
#endif
35
39
 
36
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
37
41
 
38
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
39
 
                                   stdout, ferror(), sscanf(),
40
 
                                   remove() */
 
43
                                   stdout, ferror(), remove() */
41
44
#include <stdint.h>             /* uint16_t, uint32_t */
42
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
43
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
44
 
                                   srand() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
45
48
#include <stdbool.h>            /* bool, false, true */
46
49
#include <string.h>             /* memset(), strcmp(), strlen(),
47
50
                                   strerror(), asprintf(), strcpy() */
56
59
#include <fcntl.h>              /* open() */
57
60
#include <dirent.h>             /* opendir(), struct dirent, readdir()
58
61
                                 */
59
 
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
 
63
                                   strtoimax() */
60
64
#include <assert.h>             /* assert() */
61
65
#include <errno.h>              /* perror(), errno */
62
 
#include <time.h>               /* nanosleep(), time() */
 
66
#include <time.h>               /* nanosleep(), time(), sleep() */
63
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
64
68
                                   SIOCSIFFLAGS, if_indextoname(),
65
69
                                   if_nametoindex(), IF_NAMESIZE */
67
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
68
72
                                */
69
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
70
 
                                   getuid(), getgid(), setuid(),
71
 
                                   setgid() */
 
74
                                   getuid(), getgid(), seteuid(),
 
75
                                   setgid(), pause() */
72
76
#include <arpa/inet.h>          /* inet_pton(), htons */
73
77
#include <iso646.h>             /* not, or, and */
74
78
#include <argp.h>               /* struct argp_option, error_t, struct
75
79
                                   argp_state, struct argp,
76
80
                                   argp_parse(), ARGP_KEY_ARG,
77
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
 
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 */
 
87
 
78
88
#ifdef __linux__
79
89
#include <sys/klog.h>           /* klogctl() */
80
 
#endif
 
90
#endif  /* __linux__ */
81
91
 
82
92
/* Avahi */
83
93
/* All Avahi types, constants and functions
117
127
static const char mandos_protocol_version[] = "1";
118
128
const char *argp_program_version = "mandos-client " VERSION;
119
129
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
130
static const char sys_class_net[] = "/sys/class/net";
 
131
char *connect_to = NULL;
120
132
 
121
133
/* Used for passing in values through the Avahi callback functions */
122
134
typedef struct {
129
141
  gpgme_ctx_t ctx;
130
142
} mandos_context;
131
143
 
 
144
/* global context so signal handler can reach it*/
 
145
mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
146
                      .dh_bits = 1024, .priority = "SECURE256"
 
147
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
148
 
 
149
sig_atomic_t quit_now = 0;
 
150
int signal_received = 0;
 
151
 
132
152
/*
133
 
 * Make additional room in "buffer" for at least BUFFER_SIZE
134
 
 * additional bytes. "buffer_capacity" is how much is currently
135
 
 * allocated, "buffer_length" is how much is already used.
 
153
 * Make additional room in "buffer" for at least BUFFER_SIZE more
 
154
 * bytes. "buffer_capacity" is how much is currently allocated,
 
155
 * "buffer_length" is how much is already used.
136
156
 */
137
157
size_t incbuffer(char **buffer, size_t buffer_length,
138
158
                  size_t buffer_capacity){
149
169
/* 
150
170
 * Initialize GPGME.
151
171
 */
152
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
172
static bool init_gpgme(const char *seckey,
153
173
                       const char *pubkey, const char *tempdir){
154
 
  int ret;
155
174
  gpgme_error_t rc;
156
175
  gpgme_engine_info_t engine_info;
157
176
  
160
179
   * Helper function to insert pub and seckey to the engine keyring.
161
180
   */
162
181
  bool import_key(const char *filename){
 
182
    int ret;
163
183
    int fd;
164
184
    gpgme_data_t pgp_data;
165
185
    
176
196
      return false;
177
197
    }
178
198
    
179
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
199
    rc = gpgme_op_import(mc.ctx, pgp_data);
180
200
    if(rc != GPG_ERR_NO_ERROR){
181
201
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
182
202
              gpgme_strsource(rc), gpgme_strerror(rc));
192
212
  }
193
213
  
194
214
  if(debug){
195
 
    fprintf(stderr, "Initialize gpgme\n");
 
215
    fprintf(stderr, "Initializing GPGME\n");
196
216
  }
197
217
  
198
218
  /* Init GPGME */
225
245
  }
226
246
  
227
247
  /* Create new GPGME "context" */
228
 
  rc = gpgme_new(&(mc->ctx));
 
248
  rc = gpgme_new(&(mc.ctx));
229
249
  if(rc != GPG_ERR_NO_ERROR){
230
250
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
231
251
            gpgme_strsource(rc), gpgme_strerror(rc));
236
256
    return false;
237
257
  }
238
258
  
239
 
  return true; 
 
259
  return true;
240
260
}
241
261
 
242
262
/* 
243
263
 * Decrypt OpenPGP data.
244
264
 * Returns -1 on error
245
265
 */
246
 
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
247
 
                                  const char *cryptotext,
 
266
static ssize_t pgp_packet_decrypt(const char *cryptotext,
248
267
                                  size_t crypto_size,
249
268
                                  char **plaintext){
250
269
  gpgme_data_t dh_crypto, dh_plain;
277
296
  
278
297
  /* Decrypt data from the cryptotext data buffer to the plaintext
279
298
     data buffer */
280
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
299
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
281
300
  if(rc != GPG_ERR_NO_ERROR){
282
301
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
283
302
            gpgme_strsource(rc), gpgme_strerror(rc));
284
303
    plaintext_length = -1;
285
304
    if(debug){
286
305
      gpgme_decrypt_result_t result;
287
 
      result = gpgme_op_decrypt_result(mc->ctx);
 
306
      result = gpgme_op_decrypt_result(mc.ctx);
288
307
      if(result == NULL){
289
308
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
290
309
      } else {
297
316
        }
298
317
        gpgme_recipient_t recipient;
299
318
        recipient = result->recipients;
300
 
        if(recipient){
301
 
          while(recipient != NULL){
302
 
            fprintf(stderr, "Public key algorithm: %s\n",
303
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
304
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
305
 
            fprintf(stderr, "Secret key available: %s\n",
306
 
                    recipient->status == GPG_ERR_NO_SECKEY
307
 
                    ? "No" : "Yes");
308
 
            recipient = recipient->next;
309
 
          }
 
319
        while(recipient != NULL){
 
320
          fprintf(stderr, "Public key algorithm: %s\n",
 
321
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
322
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
323
          fprintf(stderr, "Secret key available: %s\n",
 
324
                  recipient->status == GPG_ERR_NO_SECKEY
 
325
                  ? "No" : "Yes");
 
326
          recipient = recipient->next;
310
327
        }
311
328
      }
312
329
    }
382
399
  fprintf(stderr, "GnuTLS: %s", string);
383
400
}
384
401
 
385
 
static int init_gnutls_global(mandos_context *mc,
386
 
                              const char *pubkeyfilename,
 
402
static int init_gnutls_global(const char *pubkeyfilename,
387
403
                              const char *seckeyfilename){
388
404
  int ret;
389
405
  
407
423
  }
408
424
  
409
425
  /* OpenPGP credentials */
410
 
  gnutls_certificate_allocate_credentials(&mc->cred);
 
426
  gnutls_certificate_allocate_credentials(&mc.cred);
411
427
  if(ret != GNUTLS_E_SUCCESS){
412
428
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
413
429
                                                    from
425
441
  }
426
442
  
427
443
  ret = gnutls_certificate_set_openpgp_key_file
428
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
444
    (mc.cred, pubkeyfilename, seckeyfilename,
429
445
     GNUTLS_OPENPGP_FMT_BASE64);
430
446
  if(ret != GNUTLS_E_SUCCESS){
431
447
    fprintf(stderr,
437
453
  }
438
454
  
439
455
  /* GnuTLS server initialization */
440
 
  ret = gnutls_dh_params_init(&mc->dh_params);
 
456
  ret = gnutls_dh_params_init(&mc.dh_params);
441
457
  if(ret != GNUTLS_E_SUCCESS){
442
458
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
443
459
            " %s\n", safer_gnutls_strerror(ret));
444
460
    goto globalfail;
445
461
  }
446
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
462
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
447
463
  if(ret != GNUTLS_E_SUCCESS){
448
464
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
449
465
            safer_gnutls_strerror(ret));
450
466
    goto globalfail;
451
467
  }
452
468
  
453
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
469
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
454
470
  
455
471
  return 0;
456
472
  
457
473
 globalfail:
458
474
  
459
 
  gnutls_certificate_free_credentials(mc->cred);
 
475
  gnutls_certificate_free_credentials(mc.cred);
460
476
  gnutls_global_deinit();
461
 
  gnutls_dh_params_deinit(mc->dh_params);
 
477
  gnutls_dh_params_deinit(mc.dh_params);
462
478
  return -1;
463
479
}
464
480
 
465
 
static int init_gnutls_session(mandos_context *mc,
466
 
                               gnutls_session_t *session){
 
481
static int init_gnutls_session(gnutls_session_t *session){
467
482
  int ret;
468
483
  /* GnuTLS session creation */
469
 
  ret = gnutls_init(session, GNUTLS_SERVER);
 
484
  do {
 
485
    ret = gnutls_init(session, GNUTLS_SERVER);
 
486
    if(quit_now){
 
487
      return -1;
 
488
    }
 
489
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
470
490
  if(ret != GNUTLS_E_SUCCESS){
471
491
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
472
492
            safer_gnutls_strerror(ret));
474
494
  
475
495
  {
476
496
    const char *err;
477
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
497
    do {
 
498
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
499
      if(quit_now){
 
500
        gnutls_deinit(*session);
 
501
        return -1;
 
502
      }
 
503
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
478
504
    if(ret != GNUTLS_E_SUCCESS){
479
505
      fprintf(stderr, "Syntax error at: %s\n", err);
480
506
      fprintf(stderr, "GnuTLS error: %s\n",
484
510
    }
485
511
  }
486
512
  
487
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
488
 
                               mc->cred);
 
513
  do {
 
514
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
515
                                 mc.cred);
 
516
    if(quit_now){
 
517
      gnutls_deinit(*session);
 
518
      return -1;
 
519
    }
 
520
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
489
521
  if(ret != GNUTLS_E_SUCCESS){
490
522
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
491
523
            safer_gnutls_strerror(ret));
494
526
  }
495
527
  
496
528
  /* ignore client certificate if any. */
497
 
  gnutls_certificate_server_set_request(*session,
498
 
                                        GNUTLS_CERT_IGNORE);
 
529
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
499
530
  
500
 
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
531
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
501
532
  
502
533
  return 0;
503
534
}
509
540
/* Called when a Mandos server is found */
510
541
static int start_mandos_communication(const char *ip, uint16_t port,
511
542
                                      AvahiIfIndex if_index,
512
 
                                      mandos_context *mc, int af){
513
 
  int ret, tcp_sd;
 
543
                                      int af){
 
544
  int ret, tcp_sd = -1;
514
545
  ssize_t sret;
515
546
  union {
516
547
    struct sockaddr_in in;
517
548
    struct sockaddr_in6 in6;
518
549
  } to;
519
550
  char *buffer = NULL;
520
 
  char *decrypted_buffer;
 
551
  char *decrypted_buffer = NULL;
521
552
  size_t buffer_length = 0;
522
553
  size_t buffer_capacity = 0;
523
 
  ssize_t decrypted_buffer_size;
524
554
  size_t written;
525
 
  int retval = 0;
 
555
  int retval = -1;
526
556
  gnutls_session_t session;
527
557
  int pf;                       /* Protocol family */
528
558
  
 
559
  errno = 0;
 
560
  
 
561
  if(quit_now){
 
562
    errno = EINTR;
 
563
    return -1;
 
564
  }
 
565
  
529
566
  switch(af){
530
567
  case AF_INET6:
531
568
    pf = PF_INET6;
535
572
    break;
536
573
  default:
537
574
    fprintf(stderr, "Bad address family: %d\n", af);
 
575
    errno = EINVAL;
538
576
    return -1;
539
577
  }
540
578
  
541
 
  ret = init_gnutls_session(mc, &session);
 
579
  ret = init_gnutls_session(&session);
542
580
  if(ret != 0){
543
581
    return -1;
544
582
  }
550
588
  
551
589
  tcp_sd = socket(pf, SOCK_STREAM, 0);
552
590
  if(tcp_sd < 0){
 
591
    int e = errno;
553
592
    perror("socket");
554
 
    return -1;
 
593
    errno = e;
 
594
    goto mandos_end;
 
595
  }
 
596
  
 
597
  if(quit_now){
 
598
    errno = EINTR;
 
599
    goto mandos_end;
555
600
  }
556
601
  
557
602
  memset(&to, 0, sizeof(to));
558
603
  if(af == AF_INET6){
559
 
    to.in6.sin6_family = (uint16_t)af;
 
604
    to.in6.sin6_family = (sa_family_t)af;
560
605
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
561
606
  } else {                      /* IPv4 */
562
607
    to.in.sin_family = (sa_family_t)af;
563
608
    ret = inet_pton(af, ip, &to.in.sin_addr);
564
609
  }
565
610
  if(ret < 0 ){
 
611
    int e = errno;
566
612
    perror("inet_pton");
567
 
    return -1;
 
613
    errno = e;
 
614
    goto mandos_end;
568
615
  }
569
616
  if(ret == 0){
 
617
    int e = errno;
570
618
    fprintf(stderr, "Bad address: %s\n", ip);
571
 
    return -1;
 
619
    errno = e;
 
620
    goto mandos_end;
572
621
  }
573
622
  if(af == AF_INET6){
574
623
    to.in6.sin6_port = htons(port); /* Spurious warnings from
581
630
      if(if_index == AVAHI_IF_UNSPEC){
582
631
        fprintf(stderr, "An IPv6 link-local address is incomplete"
583
632
                " without a network interface\n");
584
 
        return -1;
 
633
        errno = EINVAL;
 
634
        goto mandos_end;
585
635
      }
586
636
      /* Set the network interface number as scope */
587
637
      to.in6.sin6_scope_id = (uint32_t)if_index;
592
642
                                     -Wunreachable-code */
593
643
  }
594
644
  
 
645
  if(quit_now){
 
646
    errno = EINTR;
 
647
    goto mandos_end;
 
648
  }
 
649
  
595
650
  if(debug){
596
651
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
597
652
      char interface[IF_NAMESIZE];
624
679
    }
625
680
  }
626
681
  
 
682
  if(quit_now){
 
683
    errno = EINTR;
 
684
    goto mandos_end;
 
685
  }
 
686
  
627
687
  if(af == AF_INET6){
628
688
    ret = connect(tcp_sd, &to.in6, sizeof(to));
629
689
  } else {
630
690
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
631
691
  }
632
692
  if(ret < 0){
633
 
    perror("connect");
634
 
    return -1;
 
693
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
694
      int e = errno;
 
695
      perror("connect");
 
696
      errno = e;
 
697
    }
 
698
    goto mandos_end;
 
699
  }
 
700
  
 
701
  if(quit_now){
 
702
    errno = EINTR;
 
703
    goto mandos_end;
635
704
  }
636
705
  
637
706
  const char *out = mandos_protocol_version;
641
710
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
642
711
                                   out_size - written));
643
712
    if(ret == -1){
 
713
      int e = errno;
644
714
      perror("write");
645
 
      retval = -1;
 
715
      errno = e;
646
716
      goto mandos_end;
647
717
    }
648
718
    written += (size_t)ret;
656
726
        break;
657
727
      }
658
728
    }
 
729
  
 
730
    if(quit_now){
 
731
      errno = EINTR;
 
732
      goto mandos_end;
 
733
    }
659
734
  }
660
735
  
661
736
  if(debug){
662
737
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
663
738
  }
664
739
  
 
740
  if(quit_now){
 
741
    errno = EINTR;
 
742
    goto mandos_end;
 
743
  }
 
744
  
665
745
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
666
746
  
667
 
  do{
 
747
  if(quit_now){
 
748
    errno = EINTR;
 
749
    goto mandos_end;
 
750
  }
 
751
  
 
752
  do {
668
753
    ret = gnutls_handshake(session);
 
754
    if(quit_now){
 
755
      errno = EINTR;
 
756
      goto mandos_end;
 
757
    }
669
758
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
670
759
  
671
760
  if(ret != GNUTLS_E_SUCCESS){
673
762
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
674
763
      gnutls_perror(ret);
675
764
    }
676
 
    retval = -1;
 
765
    errno = EPROTO;
677
766
    goto mandos_end;
678
767
  }
679
768
  
685
774
  }
686
775
  
687
776
  while(true){
 
777
    
 
778
    if(quit_now){
 
779
      errno = EINTR;
 
780
      goto mandos_end;
 
781
    }
 
782
    
688
783
    buffer_capacity = incbuffer(&buffer, buffer_length,
689
784
                                   buffer_capacity);
690
785
    if(buffer_capacity == 0){
 
786
      int e = errno;
691
787
      perror("incbuffer");
692
 
      retval = -1;
 
788
      errno = e;
 
789
      goto mandos_end;
 
790
    }
 
791
    
 
792
    if(quit_now){
 
793
      errno = EINTR;
693
794
      goto mandos_end;
694
795
    }
695
796
    
704
805
      case GNUTLS_E_AGAIN:
705
806
        break;
706
807
      case GNUTLS_E_REHANDSHAKE:
707
 
        do{
 
808
        do {
708
809
          ret = gnutls_handshake(session);
 
810
          
 
811
          if(quit_now){
 
812
            errno = EINTR;
 
813
            goto mandos_end;
 
814
          }
709
815
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
710
816
        if(ret < 0){
711
817
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
712
818
          gnutls_perror(ret);
713
 
          retval = -1;
 
819
          errno = EPROTO;
714
820
          goto mandos_end;
715
821
        }
716
822
        break;
717
823
      default:
718
824
        fprintf(stderr, "Unknown error while reading data from"
719
825
                " encrypted session with Mandos server\n");
720
 
        retval = -1;
721
826
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
827
        errno = EIO;
722
828
        goto mandos_end;
723
829
      }
724
830
    } else {
730
836
    fprintf(stderr, "Closing TLS session\n");
731
837
  }
732
838
  
733
 
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
839
  if(quit_now){
 
840
    errno = EINTR;
 
841
    goto mandos_end;
 
842
  }
 
843
  
 
844
  do {
 
845
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
846
    if(quit_now){
 
847
      errno = EINTR;
 
848
      goto mandos_end;
 
849
    }
 
850
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
734
851
  
735
852
  if(buffer_length > 0){
736
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
853
    ssize_t decrypted_buffer_size;
 
854
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
737
855
                                               buffer_length,
738
856
                                               &decrypted_buffer);
739
857
    if(decrypted_buffer_size >= 0){
 
858
      
740
859
      written = 0;
741
860
      while(written < (size_t) decrypted_buffer_size){
 
861
        if(quit_now){
 
862
          errno = EINTR;
 
863
          goto mandos_end;
 
864
        }
 
865
        
742
866
        ret = (int)fwrite(decrypted_buffer + written, 1,
743
867
                          (size_t)decrypted_buffer_size - written,
744
868
                          stdout);
745
869
        if(ret == 0 and ferror(stdout)){
 
870
          int e = errno;
746
871
          if(debug){
747
872
            fprintf(stderr, "Error writing encrypted data: %s\n",
748
873
                    strerror(errno));
749
874
          }
750
 
          retval = -1;
751
 
          break;
 
875
          errno = e;
 
876
          goto mandos_end;
752
877
        }
753
878
        written += (size_t)ret;
754
879
      }
755
 
      free(decrypted_buffer);
756
 
    } else {
757
 
      retval = -1;
 
880
      retval = 0;
758
881
    }
759
 
  } else {
760
 
    retval = -1;
761
882
  }
762
883
  
763
884
  /* Shutdown procedure */
764
885
  
765
886
 mandos_end:
766
 
  free(buffer);
767
 
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
768
 
  if(ret == -1){
769
 
    perror("close");
 
887
  {
 
888
    int e = errno;
 
889
    free(decrypted_buffer);
 
890
    free(buffer);
 
891
    if(tcp_sd >= 0){
 
892
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
893
    }
 
894
    if(ret == -1){
 
895
      if(e == 0){
 
896
        e = errno;
 
897
      }
 
898
      perror("close");
 
899
    }
 
900
    gnutls_deinit(session);
 
901
    if(quit_now){
 
902
      e = EINTR;
 
903
      retval = -1;
 
904
    }
 
905
    errno = e;
770
906
  }
771
 
  gnutls_deinit(session);
772
907
  return retval;
773
908
}
774
909
 
785
920
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
786
921
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
787
922
                             flags,
788
 
                             void* userdata){
789
 
  mandos_context *mc = userdata;
 
923
                             AVAHI_GCC_UNUSED void* userdata){
790
924
  assert(r);
791
925
  
792
926
  /* Called whenever a service has been resolved successfully or
793
927
     timed out */
794
928
  
 
929
  if(quit_now){
 
930
    return;
 
931
  }
 
932
  
795
933
  switch(event){
796
934
  default:
797
935
  case AVAHI_RESOLVER_FAILURE:
798
936
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
799
937
            " of type '%s' in domain '%s': %s\n", name, type, domain,
800
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
938
            avahi_strerror(avahi_server_errno(mc.server)));
801
939
    break;
802
940
    
803
941
  case AVAHI_RESOLVER_FOUND:
809
947
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
810
948
                ip, (intmax_t)interface, port);
811
949
      }
812
 
      int ret = start_mandos_communication(ip, port, interface, mc,
 
950
      int ret = start_mandos_communication(ip, port, interface,
813
951
                                           avahi_proto_to_af(proto));
814
952
      if(ret == 0){
815
 
        avahi_simple_poll_quit(mc->simple_poll);
 
953
        avahi_simple_poll_quit(mc.simple_poll);
816
954
      }
817
955
    }
818
956
  }
828
966
                            const char *domain,
829
967
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
830
968
                            flags,
831
 
                            void* userdata){
832
 
  mandos_context *mc = userdata;
 
969
                            AVAHI_GCC_UNUSED void* userdata){
833
970
  assert(b);
834
971
  
835
972
  /* Called whenever a new services becomes available on the LAN or
836
973
     is removed from the LAN */
837
974
  
 
975
  if(quit_now){
 
976
    return;
 
977
  }
 
978
  
838
979
  switch(event){
839
980
  default:
840
981
  case AVAHI_BROWSER_FAILURE:
841
982
    
842
983
    fprintf(stderr, "(Avahi browser) %s\n",
843
 
            avahi_strerror(avahi_server_errno(mc->server)));
844
 
    avahi_simple_poll_quit(mc->simple_poll);
 
984
            avahi_strerror(avahi_server_errno(mc.server)));
 
985
    avahi_simple_poll_quit(mc.simple_poll);
845
986
    return;
846
987
    
847
988
  case AVAHI_BROWSER_NEW:
850
991
       the callback function is called the Avahi server will free the
851
992
       resolver for us. */
852
993
    
853
 
    if(!(avahi_s_service_resolver_new(mc->server, interface,
854
 
                                       protocol, name, type, domain,
855
 
                                       AVAHI_PROTO_INET6, 0,
856
 
                                       resolve_callback, mc)))
 
994
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
 
995
                                    name, type, domain, protocol, 0,
 
996
                                    resolve_callback, NULL) == NULL)
857
997
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
858
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
998
              name, avahi_strerror(avahi_server_errno(mc.server)));
859
999
    break;
860
1000
    
861
1001
  case AVAHI_BROWSER_REMOVE:
870
1010
  }
871
1011
}
872
1012
 
 
1013
/* stop main loop after sigterm has been called */
 
1014
static void handle_sigterm(int sig){
 
1015
  if(quit_now){
 
1016
    return;
 
1017
  }
 
1018
  quit_now = 1;
 
1019
  signal_received = sig;
 
1020
  int old_errno = errno;
 
1021
  if(mc.simple_poll != NULL){
 
1022
    avahi_simple_poll_quit(mc.simple_poll);
 
1023
  }
 
1024
  errno = old_errno;
 
1025
}
 
1026
 
 
1027
/* 
 
1028
 * This function determines if a directory entry in /sys/class/net
 
1029
 * corresponds to an acceptable network device.
 
1030
 * (This function is passed to scandir(3) as a filter function.)
 
1031
 */
 
1032
int good_interface(const struct dirent *if_entry){
 
1033
  ssize_t ssret;
 
1034
  char *flagname = NULL;
 
1035
  if(if_entry->d_name[0] == '.'){
 
1036
    return 0;
 
1037
  }
 
1038
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
 
1039
                     if_entry->d_name);
 
1040
  if(ret < 0){
 
1041
    perror("asprintf");
 
1042
    return 0;
 
1043
  }
 
1044
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
 
1045
  if(flags_fd == -1){
 
1046
    perror("open");
 
1047
    free(flagname);
 
1048
    return 0;
 
1049
  }
 
1050
  free(flagname);
 
1051
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
 
1052
  /* read line from flags_fd */
 
1053
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
 
1054
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
 
1055
  flagstring[(size_t)to_read] = '\0';
 
1056
  if(flagstring == NULL){
 
1057
    perror("malloc");
 
1058
    close(flags_fd);
 
1059
    return 0;
 
1060
  }
 
1061
  while(to_read > 0){
 
1062
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
 
1063
                                             (size_t)to_read));
 
1064
    if(ssret == -1){
 
1065
      perror("read");
 
1066
      free(flagstring);
 
1067
      close(flags_fd);
 
1068
      return 0;
 
1069
    }
 
1070
    to_read -= ssret;
 
1071
    if(ssret == 0){
 
1072
      break;
 
1073
    }
 
1074
  }
 
1075
  close(flags_fd);
 
1076
  intmax_t tmpmax;
 
1077
  char *tmp;
 
1078
  errno = 0;
 
1079
  tmpmax = strtoimax(flagstring, &tmp, 0);
 
1080
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
 
1081
                                         and not (isspace(*tmp)))
 
1082
     or tmpmax != (ifreq_flags)tmpmax){
 
1083
    if(debug){
 
1084
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
 
1085
              flagstring, if_entry->d_name);
 
1086
    }
 
1087
    free(flagstring);
 
1088
    return 0;
 
1089
  }
 
1090
  free(flagstring);
 
1091
  ifreq_flags flags = (ifreq_flags)tmpmax;
 
1092
  /* Reject the loopback device */
 
1093
  if(flags & IFF_LOOPBACK){
 
1094
    if(debug){
 
1095
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
 
1096
              if_entry->d_name);
 
1097
    }
 
1098
    return 0;
 
1099
  }
 
1100
  /* Accept point-to-point devices only if connect_to is specified */
 
1101
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
 
1102
    if(debug){
 
1103
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
 
1104
              if_entry->d_name);
 
1105
    }
 
1106
    return 1;
 
1107
  }
 
1108
  /* Otherwise, reject non-broadcast-capable devices */
 
1109
  if(not (flags & IFF_BROADCAST)){
 
1110
    if(debug){
 
1111
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
 
1112
              if_entry->d_name);
 
1113
    }
 
1114
    return 0;
 
1115
  }
 
1116
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1117
  if(flags & IFF_NOARP){
 
1118
    if(debug){
 
1119
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1120
              if_entry->d_name);
 
1121
    }
 
1122
    return 0;
 
1123
  }
 
1124
  /* Accept this device */
 
1125
  if(debug){
 
1126
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
 
1127
            if_entry->d_name);
 
1128
  }
 
1129
  return 1;
 
1130
}
 
1131
 
873
1132
int main(int argc, char *argv[]){
874
1133
  AvahiSServiceBrowser *sb = NULL;
875
1134
  int error;
876
1135
  int ret;
877
1136
  intmax_t tmpmax;
878
 
  int numchars;
 
1137
  char *tmp;
879
1138
  int exitcode = EXIT_SUCCESS;
880
 
  const char *interface = "eth0";
 
1139
  const char *interface = "";
881
1140
  struct ifreq network;
882
 
  int sd;
 
1141
  int sd = -1;
 
1142
  bool take_down_interface = false;
883
1143
  uid_t uid;
884
1144
  gid_t gid;
885
 
  char *connect_to = NULL;
886
1145
  char tempdir[] = "/tmp/mandosXXXXXX";
887
1146
  bool tempdir_created = false;
888
1147
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
889
1148
  const char *seckey = PATHDIR "/" SECKEY;
890
1149
  const char *pubkey = PATHDIR "/" PUBKEY;
891
1150
  
892
 
  mandos_context mc = { .simple_poll = NULL, .server = NULL,
893
 
                        .dh_bits = 1024, .priority = "SECURE256"
894
 
                        ":!CTYPE-X.509:+CTYPE-OPENPGP" };
895
1151
  bool gnutls_initialized = false;
896
1152
  bool gpgme_initialized = false;
897
 
  double delay = 2.5;
 
1153
  float delay = 2.5f;
 
1154
  
 
1155
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
 
1156
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
 
1157
  
 
1158
  uid = getuid();
 
1159
  gid = getgid();
 
1160
  
 
1161
  /* Lower any group privileges we might have, just to be safe */
 
1162
  errno = 0;
 
1163
  ret = setgid(gid);
 
1164
  if(ret == -1){
 
1165
    perror("setgid");
 
1166
  }
 
1167
  
 
1168
  /* Lower user privileges (temporarily) */
 
1169
  errno = 0;
 
1170
  ret = seteuid(uid);
 
1171
  if(ret == -1){
 
1172
    perror("seteuid");
 
1173
  }
 
1174
  
 
1175
  if(quit_now){
 
1176
    goto end;
 
1177
  }
898
1178
  
899
1179
  {
900
1180
    struct argp_option options[] = {
930
1210
        .arg = "SECONDS",
931
1211
        .doc = "Maximum delay to wait for interface startup",
932
1212
        .group = 2 },
 
1213
      /*
 
1214
       * These reproduce what we would get without ARGP_NO_HELP
 
1215
       */
 
1216
      { .name = "help", .key = '?',
 
1217
        .doc = "Give this help list", .group = -1 },
 
1218
      { .name = "usage", .key = -3,
 
1219
        .doc = "Give a short usage message", .group = -1 },
 
1220
      { .name = "version", .key = 'V',
 
1221
        .doc = "Print program version", .group = -1 },
933
1222
      { .name = NULL }
934
1223
    };
935
1224
    
936
1225
    error_t parse_opt(int key, char *arg,
937
1226
                      struct argp_state *state){
 
1227
      errno = 0;
938
1228
      switch(key){
939
1229
      case 128:                 /* --debug */
940
1230
        debug = true;
952
1242
        pubkey = arg;
953
1243
        break;
954
1244
      case 129:                 /* --dh-bits */
955
 
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
956
 
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
957
 
           or arg[numchars] != '\0'){
958
 
          fprintf(stderr, "Bad number of DH bits\n");
959
 
          exit(EXIT_FAILURE);
 
1245
        errno = 0;
 
1246
        tmpmax = strtoimax(arg, &tmp, 10);
 
1247
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1248
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
 
1249
          argp_error(state, "Bad number of DH bits");
960
1250
        }
961
1251
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
962
1252
        break;
964
1254
        mc.priority = arg;
965
1255
        break;
966
1256
      case 131:                 /* --delay */
967
 
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
968
 
        if(ret < 1 or arg[numchars] != '\0'){
969
 
          fprintf(stderr, "Bad delay\n");
970
 
          exit(EXIT_FAILURE);
 
1257
        errno = 0;
 
1258
        delay = strtof(arg, &tmp);
 
1259
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
1260
          argp_error(state, "Bad delay");
971
1261
        }
972
1262
        break;
973
 
      case ARGP_KEY_ARG:
974
 
        argp_usage(state);
975
 
      case ARGP_KEY_END:
 
1263
        /*
 
1264
         * These reproduce what we would get without ARGP_NO_HELP
 
1265
         */
 
1266
      case '?':                 /* --help */
 
1267
        argp_state_help(state, state->out_stream,
 
1268
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1269
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1270
      case -3:                  /* --usage */
 
1271
        argp_state_help(state, state->out_stream,
 
1272
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1273
      case 'V':                 /* --version */
 
1274
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1275
        exit(argp_err_exit_status);
976
1276
        break;
977
1277
      default:
978
1278
        return ARGP_ERR_UNKNOWN;
979
1279
      }
980
 
      return 0;
 
1280
      return errno;
981
1281
    }
982
1282
    
983
1283
    struct argp argp = { .options = options, .parser = parse_opt,
984
1284
                         .args_doc = "",
985
1285
                         .doc = "Mandos client -- Get and decrypt"
986
1286
                         " passwords from a Mandos server" };
987
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
988
 
    if(ret == ARGP_ERR_UNKNOWN){
989
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
1287
    ret = argp_parse(&argp, argc, argv,
 
1288
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1289
    switch(ret){
 
1290
    case 0:
 
1291
      break;
 
1292
    case ENOMEM:
 
1293
    default:
 
1294
      errno = ret;
 
1295
      perror("argp_parse");
 
1296
      exitcode = EX_OSERR;
 
1297
      goto end;
 
1298
    case EINVAL:
 
1299
      exitcode = EX_USAGE;
 
1300
      goto end;
 
1301
    }
 
1302
  }
 
1303
  
 
1304
  if(not debug){
 
1305
    avahi_set_log_function(empty_log);
 
1306
  }
 
1307
 
 
1308
  if(interface[0] == '\0'){
 
1309
    struct dirent **direntries;
 
1310
    ret = scandir(sys_class_net, &direntries, good_interface,
 
1311
                  alphasort);
 
1312
    if(ret >= 1){
 
1313
      /* Pick the first good interface */
 
1314
      interface = strdup(direntries[0]->d_name);
 
1315
      if(debug){
 
1316
        fprintf(stderr, "Using interface \"%s\"\n", interface);
 
1317
      }
 
1318
      if(interface == NULL){
 
1319
        perror("malloc");
 
1320
        free(direntries);
 
1321
        exitcode = EXIT_FAILURE;
 
1322
        goto end;
 
1323
      }
 
1324
      free(direntries);
 
1325
    } else {
 
1326
      free(direntries);
 
1327
      fprintf(stderr, "Could not find a network interface\n");
990
1328
      exitcode = EXIT_FAILURE;
991
1329
      goto end;
992
1330
    }
993
1331
  }
994
1332
  
 
1333
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
 
1334
     from the signal handler */
 
1335
  /* Initialize the pseudo-RNG for Avahi */
 
1336
  srand((unsigned int) time(NULL));
 
1337
  mc.simple_poll = avahi_simple_poll_new();
 
1338
  if(mc.simple_poll == NULL){
 
1339
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1340
    exitcode = EX_UNAVAILABLE;
 
1341
    goto end;
 
1342
  }
 
1343
  
 
1344
  sigemptyset(&sigterm_action.sa_mask);
 
1345
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
 
1346
  if(ret == -1){
 
1347
    perror("sigaddset");
 
1348
    exitcode = EX_OSERR;
 
1349
    goto end;
 
1350
  }
 
1351
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
 
1352
  if(ret == -1){
 
1353
    perror("sigaddset");
 
1354
    exitcode = EX_OSERR;
 
1355
    goto end;
 
1356
  }
 
1357
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1358
  if(ret == -1){
 
1359
    perror("sigaddset");
 
1360
    exitcode = EX_OSERR;
 
1361
    goto end;
 
1362
  }
 
1363
  /* Need to check if the handler is SIG_IGN before handling:
 
1364
     | [[info:libc:Initial Signal Actions]] |
 
1365
     | [[info:libc:Basic Signal Handling]]  |
 
1366
  */
 
1367
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1368
  if(ret == -1){
 
1369
    perror("sigaction");
 
1370
    return EX_OSERR;
 
1371
  }
 
1372
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1373
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1374
    if(ret == -1){
 
1375
      perror("sigaction");
 
1376
      exitcode = EX_OSERR;
 
1377
      goto end;
 
1378
    }
 
1379
  }
 
1380
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1381
  if(ret == -1){
 
1382
    perror("sigaction");
 
1383
    return EX_OSERR;
 
1384
  }
 
1385
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1386
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1387
    if(ret == -1){
 
1388
      perror("sigaction");
 
1389
      exitcode = EX_OSERR;
 
1390
      goto end;
 
1391
    }
 
1392
  }
 
1393
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1394
  if(ret == -1){
 
1395
    perror("sigaction");
 
1396
    return EX_OSERR;
 
1397
  }
 
1398
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1399
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1400
    if(ret == -1){
 
1401
      perror("sigaction");
 
1402
      exitcode = EX_OSERR;
 
1403
      goto end;
 
1404
    }
 
1405
  }
 
1406
  
995
1407
  /* If the interface is down, bring it up */
996
 
  if(interface[0] != '\0'){
 
1408
  if(strcmp(interface, "none") != 0){
 
1409
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1410
    if(if_index == 0){
 
1411
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1412
      exitcode = EX_UNAVAILABLE;
 
1413
      goto end;
 
1414
    }
 
1415
    
 
1416
    if(quit_now){
 
1417
      goto end;
 
1418
    }
 
1419
    
 
1420
    /* Re-raise priviliges */
 
1421
    errno = 0;
 
1422
    ret = seteuid(0);
 
1423
    if(ret == -1){
 
1424
      perror("seteuid");
 
1425
    }
 
1426
    
997
1427
#ifdef __linux__
998
1428
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
999
 
       messages to mess up the prompt */
 
1429
       messages about the network interface to mess up the prompt */
1000
1430
    ret = klogctl(8, NULL, 5);
1001
1431
    bool restore_loglevel = true;
1002
1432
    if(ret == -1){
1003
1433
      restore_loglevel = false;
1004
1434
      perror("klogctl");
1005
1435
    }
1006
 
#endif
 
1436
#endif  /* __linux__ */
1007
1437
    
1008
1438
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1009
1439
    if(sd < 0){
1010
1440
      perror("socket");
1011
 
      exitcode = EXIT_FAILURE;
 
1441
      exitcode = EX_OSERR;
1012
1442
#ifdef __linux__
1013
1443
      if(restore_loglevel){
1014
1444
        ret = klogctl(7, NULL, 0);
1016
1446
          perror("klogctl");
1017
1447
        }
1018
1448
      }
1019
 
#endif
 
1449
#endif  /* __linux__ */
 
1450
      /* Lower privileges */
 
1451
      errno = 0;
 
1452
      ret = seteuid(uid);
 
1453
      if(ret == -1){
 
1454
        perror("seteuid");
 
1455
      }
1020
1456
      goto end;
1021
1457
    }
1022
1458
    strcpy(network.ifr_name, interface);
1030
1466
          perror("klogctl");
1031
1467
        }
1032
1468
      }
1033
 
#endif
1034
 
      exitcode = EXIT_FAILURE;
 
1469
#endif  /* __linux__ */
 
1470
      exitcode = EX_OSERR;
 
1471
      /* Lower privileges */
 
1472
      errno = 0;
 
1473
      ret = seteuid(uid);
 
1474
      if(ret == -1){
 
1475
        perror("seteuid");
 
1476
      }
1035
1477
      goto end;
1036
1478
    }
1037
1479
    if((network.ifr_flags & IFF_UP) == 0){
1038
1480
      network.ifr_flags |= IFF_UP;
 
1481
      take_down_interface = true;
1039
1482
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1040
1483
      if(ret == -1){
1041
 
        perror("ioctl SIOCSIFFLAGS");
1042
 
        exitcode = EXIT_FAILURE;
 
1484
        take_down_interface = false;
 
1485
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1486
        exitcode = EX_OSERR;
1043
1487
#ifdef __linux__
1044
1488
        if(restore_loglevel){
1045
1489
          ret = klogctl(7, NULL, 0);
1047
1491
            perror("klogctl");
1048
1492
          }
1049
1493
        }
1050
 
#endif
 
1494
#endif  /* __linux__ */
 
1495
        /* Lower privileges */
 
1496
        errno = 0;
 
1497
        ret = seteuid(uid);
 
1498
        if(ret == -1){
 
1499
          perror("seteuid");
 
1500
        }
1051
1501
        goto end;
1052
1502
      }
1053
1503
    }
1065
1515
        perror("nanosleep");
1066
1516
      }
1067
1517
    }
1068
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1069
 
    if(ret == -1){
1070
 
      perror("close");
 
1518
    if(not take_down_interface){
 
1519
      /* We won't need the socket anymore */
 
1520
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1521
      if(ret == -1){
 
1522
        perror("close");
 
1523
      }
1071
1524
    }
1072
1525
#ifdef __linux__
1073
1526
    if(restore_loglevel){
1077
1530
        perror("klogctl");
1078
1531
      }
1079
1532
    }
1080
 
#endif
1081
 
  }
1082
 
  
1083
 
  uid = getuid();
1084
 
  gid = getgid();
1085
 
  
1086
 
  errno = 0;
1087
 
  setgid(gid);
1088
 
  if(ret == -1){
1089
 
    perror("setgid");
1090
 
  }
1091
 
  
1092
 
  ret = setuid(uid);
1093
 
  if(ret == -1){
1094
 
    perror("setuid");
1095
 
  }
1096
 
  
1097
 
  ret = init_gnutls_global(&mc, pubkey, seckey);
 
1533
#endif  /* __linux__ */
 
1534
    /* Lower privileges */
 
1535
    errno = 0;
 
1536
    if(take_down_interface){
 
1537
      /* Lower privileges */
 
1538
      ret = seteuid(uid);
 
1539
      if(ret == -1){
 
1540
        perror("seteuid");
 
1541
      }
 
1542
    } else {
 
1543
      /* Lower privileges permanently */
 
1544
      ret = setuid(uid);
 
1545
      if(ret == -1){
 
1546
        perror("setuid");
 
1547
      }
 
1548
    }
 
1549
  }
 
1550
  
 
1551
  if(quit_now){
 
1552
    goto end;
 
1553
  }
 
1554
  
 
1555
  ret = init_gnutls_global(pubkey, seckey);
1098
1556
  if(ret == -1){
1099
1557
    fprintf(stderr, "init_gnutls_global failed\n");
1100
 
    exitcode = EXIT_FAILURE;
 
1558
    exitcode = EX_UNAVAILABLE;
1101
1559
    goto end;
1102
1560
  } else {
1103
1561
    gnutls_initialized = true;
1104
1562
  }
1105
1563
  
 
1564
  if(quit_now){
 
1565
    goto end;
 
1566
  }
 
1567
  
 
1568
  tempdir_created = true;
1106
1569
  if(mkdtemp(tempdir) == NULL){
 
1570
    tempdir_created = false;
1107
1571
    perror("mkdtemp");
1108
1572
    goto end;
1109
1573
  }
1110
 
  tempdir_created = true;
1111
 
  
1112
 
  if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
1574
  
 
1575
  if(quit_now){
 
1576
    goto end;
 
1577
  }
 
1578
  
 
1579
  if(not init_gpgme(pubkey, seckey, tempdir)){
1113
1580
    fprintf(stderr, "init_gpgme failed\n");
1114
 
    exitcode = EXIT_FAILURE;
 
1581
    exitcode = EX_UNAVAILABLE;
1115
1582
    goto end;
1116
1583
  } else {
1117
1584
    gpgme_initialized = true;
1118
1585
  }
1119
1586
  
1120
 
  if(interface[0] != '\0'){
1121
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1122
 
    if(if_index == 0){
1123
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1124
 
      exitcode = EXIT_FAILURE;
1125
 
      goto end;
1126
 
    }
 
1587
  if(quit_now){
 
1588
    goto end;
1127
1589
  }
1128
1590
  
1129
1591
  if(connect_to != NULL){
1132
1594
    char *address = strrchr(connect_to, ':');
1133
1595
    if(address == NULL){
1134
1596
      fprintf(stderr, "No colon in address\n");
1135
 
      exitcode = EXIT_FAILURE;
1136
 
      goto end;
1137
 
    }
 
1597
      exitcode = EX_USAGE;
 
1598
      goto end;
 
1599
    }
 
1600
    
 
1601
    if(quit_now){
 
1602
      goto end;
 
1603
    }
 
1604
    
1138
1605
    uint16_t port;
1139
 
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1140
 
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
1141
 
       or address[numchars+1] != '\0'){
 
1606
    errno = 0;
 
1607
    tmpmax = strtoimax(address+1, &tmp, 10);
 
1608
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
 
1609
       or tmpmax != (uint16_t)tmpmax){
1142
1610
      fprintf(stderr, "Bad port number\n");
1143
 
      exitcode = EXIT_FAILURE;
1144
 
      goto end;
1145
 
    }
 
1611
      exitcode = EX_USAGE;
 
1612
      goto end;
 
1613
    }
 
1614
  
 
1615
    if(quit_now){
 
1616
      goto end;
 
1617
    }
 
1618
    
1146
1619
    port = (uint16_t)tmpmax;
1147
1620
    *address = '\0';
1148
1621
    address = connect_to;
1153
1626
    } else {
1154
1627
      af = AF_INET;
1155
1628
    }
1156
 
    ret = start_mandos_communication(address, port, if_index, &mc,
1157
 
                                     af);
1158
 
    if(ret < 0){
1159
 
      exitcode = EXIT_FAILURE;
1160
 
    } else {
 
1629
    
 
1630
    if(quit_now){
 
1631
      goto end;
 
1632
    }
 
1633
 
 
1634
    while(not quit_now){
 
1635
      ret = start_mandos_communication(address, port, if_index, af);
 
1636
      if(quit_now or ret == 0){
 
1637
        break;
 
1638
      }
 
1639
      sleep(15);
 
1640
    };
 
1641
 
 
1642
    if (not quit_now){
1161
1643
      exitcode = EXIT_SUCCESS;
1162
1644
    }
 
1645
 
1163
1646
    goto end;
1164
1647
  }
1165
1648
  
1166
 
  if(not debug){
1167
 
    avahi_set_log_function(empty_log);
1168
 
  }
1169
 
  
1170
 
  /* Initialize the pseudo-RNG for Avahi */
1171
 
  srand((unsigned int) time(NULL));
1172
 
  
1173
 
  /* Allocate main Avahi loop object */
1174
 
  mc.simple_poll = avahi_simple_poll_new();
1175
 
  if(mc.simple_poll == NULL){
1176
 
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1177
 
    exitcode = EXIT_FAILURE;
 
1649
  if(quit_now){
1178
1650
    goto end;
1179
1651
  }
1180
1652
  
1200
1672
  if(mc.server == NULL){
1201
1673
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1202
1674
            avahi_strerror(error));
1203
 
    exitcode = EXIT_FAILURE;
 
1675
    exitcode = EX_UNAVAILABLE;
 
1676
    goto end;
 
1677
  }
 
1678
  
 
1679
  if(quit_now){
1204
1680
    goto end;
1205
1681
  }
1206
1682
  
1207
1683
  /* Create the Avahi service browser */
1208
1684
  sb = avahi_s_service_browser_new(mc.server, if_index,
1209
 
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
1210
 
                                   NULL, 0, browse_callback, &mc);
 
1685
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1686
                                   NULL, 0, browse_callback, NULL);
1211
1687
  if(sb == NULL){
1212
1688
    fprintf(stderr, "Failed to create service browser: %s\n",
1213
1689
            avahi_strerror(avahi_server_errno(mc.server)));
1214
 
    exitcode = EXIT_FAILURE;
 
1690
    exitcode = EX_UNAVAILABLE;
 
1691
    goto end;
 
1692
  }
 
1693
  
 
1694
  if(quit_now){
1215
1695
    goto end;
1216
1696
  }
1217
1697
  
1249
1729
    gpgme_release(mc.ctx);
1250
1730
  }
1251
1731
  
 
1732
  /* Take down the network interface */
 
1733
  if(take_down_interface){
 
1734
    /* Re-raise priviliges */
 
1735
    errno = 0;
 
1736
    ret = seteuid(0);
 
1737
    if(ret == -1){
 
1738
      perror("seteuid");
 
1739
    }
 
1740
    if(geteuid() == 0){
 
1741
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1742
      if(ret == -1){
 
1743
        perror("ioctl SIOCGIFFLAGS");
 
1744
      } else if(network.ifr_flags & IFF_UP) {
 
1745
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1746
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1747
        if(ret == -1){
 
1748
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
 
1749
        }
 
1750
      }
 
1751
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1752
      if(ret == -1){
 
1753
        perror("close");
 
1754
      }
 
1755
      /* Lower privileges permanently */
 
1756
      errno = 0;
 
1757
      ret = setuid(uid);
 
1758
      if(ret == -1){
 
1759
        perror("setuid");
 
1760
      }
 
1761
    }
 
1762
  }
 
1763
  
1252
1764
  /* Removes the temp directory used by GPGME */
1253
1765
  if(tempdir_created){
1254
1766
    DIR *d;
1293
1805
    }
1294
1806
  }
1295
1807
  
 
1808
  if(quit_now){
 
1809
    sigemptyset(&old_sigterm_action.sa_mask);
 
1810
    old_sigterm_action.sa_handler = SIG_DFL;
 
1811
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
1812
                                            &old_sigterm_action,
 
1813
                                            NULL));
 
1814
    if(ret == -1){
 
1815
      perror("sigaction");
 
1816
    }
 
1817
    do {
 
1818
      ret = raise(signal_received);
 
1819
    } while(ret != 0 and errno == EINTR);
 
1820
    if(ret != 0){
 
1821
      perror("raise");
 
1822
      abort();
 
1823
    }
 
1824
    TEMP_FAILURE_RETRY(pause());
 
1825
  }
 
1826
  
1296
1827
  return exitcode;
1297
1828
}