/mandos/release

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2014-03-06 02:26:04 UTC
  • mto: (237.7.272 trunk)
  • mto: This revision was merged to the branch mainline in revision 311.
  • Revision ID: teddy@recompile.se-20140306022604-4uc43taz25cflgi3
Bug fix: Free all memory and give better messages when memory is full.

* plugin-runner.c (add_to_char_array): Bug fix: If realloc fails, do
                                       not change old array pointer.
  (add_environment): Bug fix: If realloc fails, do not change old
                     environment pointer.  Also rename "e" to "envdef"
                     for clarity.
  (main): Bug fix: If realloc fails, do not change old pointers.  Also
          wrap "#pragma GCC" with "#ifdef ___GNUC___".
* plugins.d/mandos-client.c (incbuffer): Bug fix: if realloc fails,
                                         free old buffer.
  (run_network_hooks): Moved variables "directory" and "ret" to their
                       innermost possible scope.
  (take_down_interface): Moved variables "sd", "ret_errno", and
                         "ret_setflags" to their innermost possible
                         scope.
  (main): Removed variable "interfaces_hooks_size".  Also, if argz_add
          fails when adding all found interfaces, the error message
          will now be correct.  Also print error message if, after
          having taken up an interface, argz_add fails to add
          interface to list of interfaces to be taken down.
* plugins.d/mandos-client.xml (OPTIONS): Explain better what "none"
                                         means as argument to
                                         "--interface" by negating
                                         sense.
* plugins.d/password-prompt.c (fprintf_plus): Removed (unused).

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-2013 Teddy Hogeborn
 
13
 * Copyright © 2008-2013 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
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
47
47
                                   strtof(), abort() */
61
61
                                 */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
 
#include <assert.h>             /* assert() */
65
64
#include <errno.h>              /* perror(), errno,
66
65
                                   program_invocation_short_name */
67
66
#include <time.h>               /* nanosleep(), time(), sleep() */
88
87
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
89
88
                                   WEXITSTATUS(), WTERMSIG() */
90
89
#include <grp.h>                /* setgroups() */
 
90
#include <argz.h>               /* argz_add_sep(), argz_next(),
 
91
                                   argz_delete(), argz_append(),
 
92
                                   argz_stringify(), argz_add(),
 
93
                                   argz_count() */
91
94
 
92
95
#ifdef __linux__
93
96
#include <sys/klog.h>           /* klogctl() */
135
138
static const char sys_class_net[] = "/sys/class/net";
136
139
char *connect_to = NULL;
137
140
const char *hookdir = HOOKDIR;
 
141
uid_t uid = 65534;
 
142
gid_t gid = 65534;
138
143
 
139
144
/* Doubly linked list that need to be circularly linked when used */
140
145
typedef struct server{
141
146
  const char *ip;
142
 
  uint16_t port;
 
147
  in_port_t port;
143
148
  AvahiIfIndex if_index;
144
149
  int af;
145
150
  struct timespec last_seen;
149
154
 
150
155
/* Used for passing in values through the Avahi callback functions */
151
156
typedef struct {
152
 
  AvahiSimplePoll *simple_poll;
153
157
  AvahiServer *server;
154
158
  gnutls_certificate_credentials_t cred;
155
159
  unsigned int dh_bits;
157
161
  const char *priority;
158
162
  gpgme_ctx_t ctx;
159
163
  server *current_server;
 
164
  char *interfaces;
 
165
  size_t interfaces_size;
160
166
} mandos_context;
161
167
 
162
 
/* global context so signal handler can reach it*/
163
 
mandos_context mc = { .simple_poll = NULL, .server = NULL,
164
 
                      .dh_bits = 1024, .priority = "SECURE256"
165
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
166
 
                      .current_server = NULL };
 
168
/* global so signal handler can reach it*/
 
169
AvahiSimplePoll *simple_poll;
167
170
 
168
171
sig_atomic_t quit_now = 0;
169
172
int signal_received = 0;
170
173
 
171
174
/* Function to use when printing errors */
172
175
void perror_plus(const char *print_text){
 
176
  int e = errno;
173
177
  fprintf(stderr, "Mandos plugin %s: ",
174
178
          program_invocation_short_name);
 
179
  errno = e;
175
180
  perror(print_text);
176
181
}
177
182
 
 
183
__attribute__((format (gnu_printf, 2, 3)))
178
184
int fprintf_plus(FILE *stream, const char *format, ...){
179
185
  va_list ap;
180
186
  va_start (ap, format);
181
187
  
182
188
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
183
189
                             program_invocation_short_name));
184
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
190
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
185
191
}
186
192
 
187
193
/*
192
198
size_t incbuffer(char **buffer, size_t buffer_length,
193
199
                 size_t buffer_capacity){
194
200
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
195
 
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
196
 
    if(buffer == NULL){
 
201
    char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
202
    if(new_buf == NULL){
 
203
      int old_errno = errno;
 
204
      free(*buffer);
 
205
      errno = old_errno;
 
206
      *buffer = NULL;
197
207
      return 0;
198
208
    }
 
209
    *buffer = new_buf;
199
210
    buffer_capacity += BUFFER_SIZE;
200
211
  }
201
212
  return buffer_capacity;
202
213
}
203
214
 
204
215
/* Add server to set of servers to retry periodically */
205
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
206
 
               int af){
 
216
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
 
217
                int af, server **current_server){
207
218
  int ret;
208
219
  server *new_server = malloc(sizeof(server));
209
220
  if(new_server == NULL){
210
221
    perror_plus("malloc");
211
 
    return -1;
 
222
    return false;
212
223
  }
213
224
  *new_server = (server){ .ip = strdup(ip),
214
225
                          .port = port,
216
227
                          .af = af };
217
228
  if(new_server->ip == NULL){
218
229
    perror_plus("strdup");
219
 
    return -1;
 
230
    return false;
220
231
  }
221
232
  /* Special case of first server */
222
 
  if (mc.current_server == NULL){
 
233
  if(*current_server == NULL){
223
234
    new_server->next = new_server;
224
235
    new_server->prev = new_server;
225
 
    mc.current_server = new_server;
 
236
    *current_server = new_server;
226
237
  /* Place the new server last in the list */
227
238
  } else {
228
 
    new_server->next = mc.current_server;
229
 
    new_server->prev = mc.current_server->prev;
 
239
    new_server->next = *current_server;
 
240
    new_server->prev = (*current_server)->prev;
230
241
    new_server->prev->next = new_server;
231
 
    mc.current_server->prev = new_server;
 
242
    (*current_server)->prev = new_server;
232
243
  }
233
 
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
 
244
  ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
234
245
  if(ret == -1){
235
246
    perror_plus("clock_gettime");
236
 
    return -1;
 
247
    return false;
237
248
  }
238
 
  return 0;
 
249
  return true;
239
250
}
240
251
 
241
252
/* 
242
253
 * Initialize GPGME.
243
254
 */
244
255
static bool init_gpgme(const char *seckey, const char *pubkey,
245
 
                       const char *tempdir){
 
256
                       const char *tempdir, mandos_context *mc){
246
257
  gpgme_error_t rc;
247
258
  gpgme_engine_info_t engine_info;
248
259
  
249
 
  
250
260
  /*
251
261
   * Helper function to insert pub and seckey to the engine keyring.
252
262
   */
268
278
      return false;
269
279
    }
270
280
    
271
 
    rc = gpgme_op_import(mc.ctx, pgp_data);
 
281
    rc = gpgme_op_import(mc->ctx, pgp_data);
272
282
    if(rc != GPG_ERR_NO_ERROR){
273
283
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
274
284
                   gpgme_strsource(rc), gpgme_strerror(rc));
318
328
  }
319
329
  
320
330
  /* Create new GPGME "context" */
321
 
  rc = gpgme_new(&(mc.ctx));
 
331
  rc = gpgme_new(&(mc->ctx));
322
332
  if(rc != GPG_ERR_NO_ERROR){
323
333
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
324
334
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
339
349
 */
340
350
static ssize_t pgp_packet_decrypt(const char *cryptotext,
341
351
                                  size_t crypto_size,
342
 
                                  char **plaintext){
 
352
                                  char **plaintext,
 
353
                                  mandos_context *mc){
343
354
  gpgme_data_t dh_crypto, dh_plain;
344
355
  gpgme_error_t rc;
345
356
  ssize_t ret;
371
382
  
372
383
  /* Decrypt data from the cryptotext data buffer to the plaintext
373
384
     data buffer */
374
 
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
 
385
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
375
386
  if(rc != GPG_ERR_NO_ERROR){
376
387
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
377
388
                 gpgme_strsource(rc), gpgme_strerror(rc));
378
389
    plaintext_length = -1;
379
390
    if(debug){
380
391
      gpgme_decrypt_result_t result;
381
 
      result = gpgme_op_decrypt_result(mc.ctx);
 
392
      result = gpgme_op_decrypt_result(mc->ctx);
382
393
      if(result == NULL){
383
394
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
384
395
      } else {
462
473
}
463
474
 
464
475
static const char * safer_gnutls_strerror(int value){
465
 
  const char *ret = gnutls_strerror(value); /* Spurious warning from
466
 
                                               -Wunreachable-code */
 
476
  const char *ret = gnutls_strerror(value);
467
477
  if(ret == NULL)
468
478
    ret = "(unknown)";
469
479
  return ret;
476
486
}
477
487
 
478
488
static int init_gnutls_global(const char *pubkeyfilename,
479
 
                              const char *seckeyfilename){
 
489
                              const char *seckeyfilename,
 
490
                              mandos_context *mc){
480
491
  int ret;
481
492
  
482
493
  if(debug){
499
510
  }
500
511
  
501
512
  /* OpenPGP credentials */
502
 
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
 
513
  ret = gnutls_certificate_allocate_credentials(&mc->cred);
503
514
  if(ret != GNUTLS_E_SUCCESS){
504
515
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
505
516
                 safer_gnutls_strerror(ret));
515
526
  }
516
527
  
517
528
  ret = gnutls_certificate_set_openpgp_key_file
518
 
    (mc.cred, pubkeyfilename, seckeyfilename,
 
529
    (mc->cred, pubkeyfilename, seckeyfilename,
519
530
     GNUTLS_OPENPGP_FMT_BASE64);
520
531
  if(ret != GNUTLS_E_SUCCESS){
521
532
    fprintf_plus(stderr,
527
538
  }
528
539
  
529
540
  /* GnuTLS server initialization */
530
 
  ret = gnutls_dh_params_init(&mc.dh_params);
 
541
  ret = gnutls_dh_params_init(&mc->dh_params);
531
542
  if(ret != GNUTLS_E_SUCCESS){
532
543
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
533
544
                 " initialization: %s\n",
534
545
                 safer_gnutls_strerror(ret));
535
546
    goto globalfail;
536
547
  }
537
 
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
548
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
538
549
  if(ret != GNUTLS_E_SUCCESS){
539
550
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
540
551
                 safer_gnutls_strerror(ret));
541
552
    goto globalfail;
542
553
  }
543
554
  
544
 
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
 
555
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
545
556
  
546
557
  return 0;
547
558
  
548
559
 globalfail:
549
560
  
550
 
  gnutls_certificate_free_credentials(mc.cred);
 
561
  gnutls_certificate_free_credentials(mc->cred);
551
562
  gnutls_global_deinit();
552
 
  gnutls_dh_params_deinit(mc.dh_params);
 
563
  gnutls_dh_params_deinit(mc->dh_params);
553
564
  return -1;
554
565
}
555
566
 
556
 
static int init_gnutls_session(gnutls_session_t *session){
 
567
static int init_gnutls_session(gnutls_session_t *session,
 
568
                               mandos_context *mc){
557
569
  int ret;
558
570
  /* GnuTLS session creation */
559
571
  do {
571
583
  {
572
584
    const char *err;
573
585
    do {
574
 
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
586
      ret = gnutls_priority_set_direct(*session, mc->priority, &err);
575
587
      if(quit_now){
576
588
        gnutls_deinit(*session);
577
589
        return -1;
588
600
  
589
601
  do {
590
602
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
591
 
                                 mc.cred);
 
603
                                 mc->cred);
592
604
    if(quit_now){
593
605
      gnutls_deinit(*session);
594
606
      return -1;
604
616
  /* ignore client certificate if any. */
605
617
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
606
618
  
607
 
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
 
619
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
608
620
  
609
621
  return 0;
610
622
}
614
626
                      __attribute__((unused)) const char *txt){}
615
627
 
616
628
/* Called when a Mandos server is found */
617
 
static int start_mandos_communication(const char *ip, uint16_t port,
 
629
static int start_mandos_communication(const char *ip, in_port_t port,
618
630
                                      AvahiIfIndex if_index,
619
 
                                      int af){
 
631
                                      int af, mandos_context *mc){
620
632
  int ret, tcp_sd = -1;
621
633
  ssize_t sret;
622
634
  union {
652
664
    return -1;
653
665
  }
654
666
  
655
 
  ret = init_gnutls_session(&session);
 
667
  /* If the interface is specified and we have a list of interfaces */
 
668
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
 
669
    /* Check if the interface is one of the interfaces we are using */
 
670
    bool match = false;
 
671
    {
 
672
      char *interface = NULL;
 
673
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
674
                                 interface))){
 
675
        if(if_nametoindex(interface) == (unsigned int)if_index){
 
676
          match = true;
 
677
          break;
 
678
        }
 
679
      }
 
680
    }
 
681
    if(not match){
 
682
      /* This interface does not match any in the list, so we don't
 
683
         connect to the server */
 
684
      if(debug){
 
685
        char interface[IF_NAMESIZE];
 
686
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
687
          perror_plus("if_indextoname");
 
688
        } else {
 
689
          fprintf_plus(stderr, "Skipping server on non-used interface"
 
690
                       " \"%s\"\n",
 
691
                       if_indextoname((unsigned int)if_index,
 
692
                                      interface));
 
693
        }
 
694
      }
 
695
      return -1;
 
696
    }
 
697
  }
 
698
  
 
699
  ret = init_gnutls_session(&session, mc);
656
700
  if(ret != 0){
657
701
    return -1;
658
702
  }
659
703
  
660
704
  if(debug){
661
705
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
662
 
                 PRIu16 "\n", ip, port);
 
706
                 PRIuMAX "\n", ip, (uintmax_t)port);
663
707
  }
664
708
  
665
709
  tcp_sd = socket(pf, SOCK_STREAM, 0);
696
740
    goto mandos_end;
697
741
  }
698
742
  if(af == AF_INET6){
699
 
    to.in6.sin6_port = htons(port); /* Spurious warnings from
700
 
                                       -Wconversion and
701
 
                                       -Wunreachable-code */
702
 
    
 
743
    to.in6.sin6_port = htons(port);    
 
744
#ifdef __GNUC__
 
745
#pragma GCC diagnostic push
 
746
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
 
747
#endif
703
748
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
704
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
705
 
                                -Wunreachable-code*/
 
749
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower */
 
750
#ifdef __GNUC__
 
751
#pragma GCC diagnostic pop
 
752
#endif
706
753
      if(if_index == AVAHI_IF_UNSPEC){
707
754
        fprintf_plus(stderr, "An IPv6 link-local address is"
708
755
                     " incomplete without a network interface\n");
713
760
      to.in6.sin6_scope_id = (uint32_t)if_index;
714
761
    }
715
762
  } else {
716
 
    to.in.sin_port = htons(port); /* Spurious warnings from
717
 
                                     -Wconversion and
718
 
                                     -Wunreachable-code */
 
763
    to.in.sin_port = htons(port);
719
764
  }
720
765
  
721
766
  if(quit_now){
729
774
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
730
775
        perror_plus("if_indextoname");
731
776
      } else {
732
 
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
733
 
                     "\n", ip, interface, port);
 
777
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
 
778
                     "\n", ip, interface, (uintmax_t)port);
734
779
      }
735
780
    } else {
736
 
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
737
 
                   ip, port);
 
781
      fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
 
782
                   ip, (uintmax_t)port);
738
783
    }
739
784
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
740
785
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
818
863
    goto mandos_end;
819
864
  }
820
865
  
821
 
  /* Spurious warning from -Wint-to-pointer-cast */
822
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
866
  /* This casting via intptr_t is to eliminate warning about casting
 
867
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
868
     function "set-session-transport-fd!" does it. */
 
869
  gnutls_transport_set_ptr(session,
 
870
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
823
871
  
824
872
  if(quit_now){
825
873
    errno = EINTR;
930
978
  if(buffer_length > 0){
931
979
    ssize_t decrypted_buffer_size;
932
980
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
933
 
                                               &decrypted_buffer);
 
981
                                               &decrypted_buffer, mc);
934
982
    if(decrypted_buffer_size >= 0){
935
983
      
936
984
      written = 0;
997
1045
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
998
1046
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
999
1047
                             flags,
1000
 
                             AVAHI_GCC_UNUSED void* userdata){
1001
 
  assert(r);
 
1048
                             void* mc){
 
1049
  if(r == NULL){
 
1050
    return;
 
1051
  }
1002
1052
  
1003
1053
  /* Called whenever a service has been resolved successfully or
1004
1054
     timed out */
1013
1063
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
1014
1064
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
1015
1065
                 domain,
1016
 
                 avahi_strerror(avahi_server_errno(mc.server)));
 
1066
                 avahi_strerror(avahi_server_errno
 
1067
                                (((mandos_context*)mc)->server)));
1017
1068
    break;
1018
1069
    
1019
1070
  case AVAHI_RESOLVER_FOUND:
1025
1076
                     PRIdMAX ") on port %" PRIu16 "\n", name,
1026
1077
                     host_name, ip, (intmax_t)interface, port);
1027
1078
      }
1028
 
      int ret = start_mandos_communication(ip, port, interface,
1029
 
                                           avahi_proto_to_af(proto));
 
1079
      int ret = start_mandos_communication(ip, (in_port_t)port,
 
1080
                                           interface,
 
1081
                                           avahi_proto_to_af(proto),
 
1082
                                           mc);
1030
1083
      if(ret == 0){
1031
 
        avahi_simple_poll_quit(mc.simple_poll);
 
1084
        avahi_simple_poll_quit(simple_poll);
1032
1085
      } else {
1033
 
        ret = add_server(ip, port, interface,
1034
 
                         avahi_proto_to_af(proto));
 
1086
        if(not add_server(ip, (in_port_t)port, interface,
 
1087
                          avahi_proto_to_af(proto),
 
1088
                          &((mandos_context*)mc)->current_server)){
 
1089
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1090
                       " list\n", name);
 
1091
        }
1035
1092
      }
1036
1093
    }
1037
1094
  }
1047
1104
                            const char *domain,
1048
1105
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
1049
1106
                            flags,
1050
 
                            AVAHI_GCC_UNUSED void* userdata){
1051
 
  assert(b);
 
1107
                            void* mc){
 
1108
  if(b == NULL){
 
1109
    return;
 
1110
  }
1052
1111
  
1053
1112
  /* Called whenever a new services becomes available on the LAN or
1054
1113
     is removed from the LAN */
1062
1121
  case AVAHI_BROWSER_FAILURE:
1063
1122
    
1064
1123
    fprintf_plus(stderr, "(Avahi browser) %s\n",
1065
 
                 avahi_strerror(avahi_server_errno(mc.server)));
1066
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1124
                 avahi_strerror(avahi_server_errno
 
1125
                                (((mandos_context*)mc)->server)));
 
1126
    avahi_simple_poll_quit(simple_poll);
1067
1127
    return;
1068
1128
    
1069
1129
  case AVAHI_BROWSER_NEW:
1072
1132
       the callback function is called the Avahi server will free the
1073
1133
       resolver for us. */
1074
1134
    
1075
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1076
 
                                    name, type, domain, protocol, 0,
1077
 
                                    resolve_callback, NULL) == NULL)
 
1135
    if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
 
1136
                                    interface, protocol, name, type,
 
1137
                                    domain, protocol, 0,
 
1138
                                    resolve_callback, mc) == NULL)
1078
1139
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1079
1140
                   " %s\n", name,
1080
 
                   avahi_strerror(avahi_server_errno(mc.server)));
 
1141
                   avahi_strerror(avahi_server_errno
 
1142
                                  (((mandos_context*)mc)->server)));
1081
1143
    break;
1082
1144
    
1083
1145
  case AVAHI_BROWSER_REMOVE:
1102
1164
  signal_received = sig;
1103
1165
  int old_errno = errno;
1104
1166
  /* set main loop to exit */
1105
 
  if(mc.simple_poll != NULL){
1106
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1167
  if(simple_poll != NULL){
 
1168
    avahi_simple_poll_quit(simple_poll);
1107
1169
  }
1108
1170
  errno = old_errno;
1109
1171
}
1110
1172
 
1111
1173
bool get_flags(const char *ifname, struct ifreq *ifr){
1112
1174
  int ret;
 
1175
  error_t ret_errno;
1113
1176
  
1114
1177
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1115
1178
  if(s < 0){
 
1179
    ret_errno = errno;
1116
1180
    perror_plus("socket");
 
1181
    errno = ret_errno;
1117
1182
    return false;
1118
1183
  }
1119
1184
  strcpy(ifr->ifr_name, ifname);
1120
1185
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1121
1186
  if(ret == -1){
1122
1187
    if(debug){
 
1188
      ret_errno = errno;
1123
1189
      perror_plus("ioctl SIOCGIFFLAGS");
 
1190
      errno = ret_errno;
1124
1191
    }
1125
1192
    return false;
1126
1193
  }
1195
1262
}
1196
1263
 
1197
1264
/* 
1198
 
 * This function determines if a directory entry in /sys/class/net
1199
 
 * corresponds to an acceptable network device which is up.
1200
 
 * (This function is passed to scandir(3) as a filter function.)
1201
 
 */
1202
 
int up_interface(const struct dirent *if_entry){
1203
 
  if(if_entry->d_name[0] == '.'){
1204
 
    return 0;
1205
 
  }
1206
 
  
1207
 
  struct ifreq ifr;
1208
 
  if(not get_flags(if_entry->d_name, &ifr)){
1209
 
    if(debug){
1210
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1211
 
                   "\"%s\"\n", if_entry->d_name);
1212
 
    }
1213
 
    return 0;
1214
 
  }
1215
 
  
1216
 
  /* Reject down interfaces */
1217
 
  if(not (ifr.ifr_flags & IFF_UP)){
1218
 
    if(debug){
1219
 
      fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
1220
 
                   if_entry->d_name);
1221
 
    }
1222
 
    return 0;
1223
 
  }
1224
 
  
1225
 
  /* Reject non-running interfaces */
1226
 
  if(not (ifr.ifr_flags & IFF_RUNNING)){
1227
 
    if(debug){
1228
 
      fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
1229
 
                   if_entry->d_name);
1230
 
    }
1231
 
    return 0;
1232
 
  }
1233
 
  
1234
 
  if(not good_flags(if_entry->d_name, &ifr)){
1235
 
    return 0;
1236
 
  }
1237
 
  return 1;
 
1265
 * This function determines if a network interface is up.
 
1266
 */
 
1267
bool interface_is_up(const char *interface){
 
1268
  struct ifreq ifr;
 
1269
  if(not get_flags(interface, &ifr)){
 
1270
    if(debug){
 
1271
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1272
                   "\"%s\"\n", interface);
 
1273
    }
 
1274
    return false;
 
1275
  }
 
1276
  
 
1277
  return (bool)(ifr.ifr_flags & IFF_UP);
 
1278
}
 
1279
 
 
1280
/* 
 
1281
 * This function determines if a network interface is running
 
1282
 */
 
1283
bool interface_is_running(const char *interface){
 
1284
  struct ifreq ifr;
 
1285
  if(not get_flags(interface, &ifr)){
 
1286
    if(debug){
 
1287
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1288
                   "\"%s\"\n", interface);
 
1289
    }
 
1290
    return false;
 
1291
  }
 
1292
  
 
1293
  return (bool)(ifr.ifr_flags & IFF_RUNNING);
1238
1294
}
1239
1295
 
1240
1296
int notdotentries(const struct dirent *direntry){
1309
1365
  return 1;
1310
1366
}
1311
1367
 
1312
 
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
 
1368
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
 
1369
                            mandos_context *mc){
1313
1370
  int ret;
1314
1371
  struct timespec now;
1315
1372
  struct timespec waited_time;
1316
1373
  intmax_t block_time;
1317
1374
  
1318
1375
  while(true){
1319
 
    if(mc.current_server == NULL){
 
1376
    if(mc->current_server == NULL){
1320
1377
      if (debug){
1321
1378
        fprintf_plus(stderr, "Wait until first server is found."
1322
1379
                     " No timeout!\n");
1336
1393
      /* Calculating in ms how long time between now and server
1337
1394
         who we visted longest time ago. Now - last seen.  */
1338
1395
      waited_time.tv_sec = (now.tv_sec
1339
 
                            - mc.current_server->last_seen.tv_sec);
 
1396
                            - mc->current_server->last_seen.tv_sec);
1340
1397
      waited_time.tv_nsec = (now.tv_nsec
1341
 
                             - mc.current_server->last_seen.tv_nsec);
 
1398
                             - mc->current_server->last_seen.tv_nsec);
1342
1399
      /* total time is 10s/10,000ms.
1343
1400
         Converting to s from ms by dividing by 1,000,
1344
1401
         and ns to ms by dividing by 1,000,000. */
1352
1409
      }
1353
1410
      
1354
1411
      if(block_time <= 0){
1355
 
        ret = start_mandos_communication(mc.current_server->ip,
1356
 
                                         mc.current_server->port,
1357
 
                                         mc.current_server->if_index,
1358
 
                                         mc.current_server->af);
 
1412
        ret = start_mandos_communication(mc->current_server->ip,
 
1413
                                         mc->current_server->port,
 
1414
                                         mc->current_server->if_index,
 
1415
                                         mc->current_server->af, mc);
1359
1416
        if(ret == 0){
1360
 
          avahi_simple_poll_quit(mc.simple_poll);
 
1417
          avahi_simple_poll_quit(s);
1361
1418
          return 0;
1362
1419
        }
1363
1420
        ret = clock_gettime(CLOCK_MONOTONIC,
1364
 
                            &mc.current_server->last_seen);
 
1421
                            &mc->current_server->last_seen);
1365
1422
        if(ret == -1){
1366
1423
          perror_plus("clock_gettime");
1367
1424
          return -1;
1368
1425
        }
1369
 
        mc.current_server = mc.current_server->next;
 
1426
        mc->current_server = mc->current_server->next;
1370
1427
        block_time = 0;         /* Call avahi to find new Mandos
1371
1428
                                   servers, but don't block */
1372
1429
      }
1381
1438
  }
1382
1439
}
1383
1440
 
 
1441
/* Set effective uid to 0, return errno */
 
1442
error_t raise_privileges(void){
 
1443
  error_t old_errno = errno;
 
1444
  error_t ret_errno = 0;
 
1445
  if(seteuid(0) == -1){
 
1446
    ret_errno = errno;
 
1447
    perror_plus("seteuid");
 
1448
  }
 
1449
  errno = old_errno;
 
1450
  return ret_errno;
 
1451
}
 
1452
 
 
1453
/* Set effective and real user ID to 0.  Return errno. */
 
1454
error_t raise_privileges_permanently(void){
 
1455
  error_t old_errno = errno;
 
1456
  error_t ret_errno = raise_privileges();
 
1457
  if(ret_errno != 0){
 
1458
    errno = old_errno;
 
1459
    return ret_errno;
 
1460
  }
 
1461
  if(setuid(0) == -1){
 
1462
    ret_errno = errno;
 
1463
    perror_plus("seteuid");
 
1464
  }
 
1465
  errno = old_errno;
 
1466
  return ret_errno;
 
1467
}
 
1468
 
 
1469
/* Set effective user ID to unprivileged saved user ID */
 
1470
error_t lower_privileges(void){
 
1471
  error_t old_errno = errno;
 
1472
  error_t ret_errno = 0;
 
1473
  if(seteuid(uid) == -1){
 
1474
    ret_errno = errno;
 
1475
    perror_plus("seteuid");
 
1476
  }
 
1477
  errno = old_errno;
 
1478
  return ret_errno;
 
1479
}
 
1480
 
 
1481
/* Lower privileges permanently */
 
1482
error_t lower_privileges_permanently(void){
 
1483
  error_t old_errno = errno;
 
1484
  error_t ret_errno = 0;
 
1485
  if(setuid(uid) == -1){
 
1486
    ret_errno = errno;
 
1487
    perror_plus("setuid");
 
1488
  }
 
1489
  errno = old_errno;
 
1490
  return ret_errno;
 
1491
}
 
1492
 
1384
1493
bool run_network_hooks(const char *mode, const char *interface,
1385
1494
                       const float delay){
1386
1495
  struct dirent **direntries;
1387
 
  struct dirent *direntry;
1388
 
  int ret;
1389
1496
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1390
1497
                         alphasort);
1391
1498
  if(numhooks == -1){
1392
 
    perror_plus("scandir");
 
1499
    if(errno == ENOENT){
 
1500
      if(debug){
 
1501
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1502
                     " found\n", hookdir);
 
1503
      }
 
1504
    } else {
 
1505
      perror_plus("scandir");
 
1506
    }
1393
1507
  } else {
 
1508
    struct dirent *direntry;
 
1509
    int ret;
1394
1510
    int devnull = open("/dev/null", O_RDONLY);
1395
1511
    for(int i = 0; i < numhooks; i++){
1396
1512
      direntry = direntries[i];
1408
1524
      if(hook_pid == 0){
1409
1525
        /* Child */
1410
1526
        /* Raise privileges */
1411
 
        errno = 0;
1412
 
        ret = seteuid(0);
1413
 
        if(ret == -1){
1414
 
          perror_plus("seteuid");
1415
 
        }
1416
 
        /* Raise privileges even more */
1417
 
        errno = 0;
1418
 
        ret = setuid(0);
1419
 
        if(ret == -1){
1420
 
          perror_plus("setuid");
1421
 
        }
 
1527
        raise_privileges_permanently();
1422
1528
        /* Set group */
1423
1529
        errno = 0;
1424
1530
        ret = setgid(0);
1444
1550
          perror_plus("setenv");
1445
1551
          _exit(EX_OSERR);
1446
1552
        }
1447
 
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1553
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1448
1554
        if(ret == -1){
1449
1555
          perror_plus("setenv");
1450
1556
          _exit(EX_OSERR);
1467
1573
          _exit(EX_OSERR);
1468
1574
        }
1469
1575
        free(delaystring);
1470
 
        ret = execl(fullname, direntry->d_name, mode, NULL);
1471
 
        perror_plus("execl");
 
1576
        if(connect_to != NULL){
 
1577
          ret = setenv("CONNECT", connect_to, 1);
 
1578
          if(ret == -1){
 
1579
            perror_plus("setenv");
 
1580
            _exit(EX_OSERR);
 
1581
          }
 
1582
        }
 
1583
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1584
          perror_plus("execl");
 
1585
          _exit(EXIT_FAILURE);
 
1586
        }
1472
1587
      } else {
1473
1588
        int status;
1474
1589
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1508
1623
  return true;
1509
1624
}
1510
1625
 
 
1626
error_t bring_up_interface(const char *const interface,
 
1627
                           const float delay){
 
1628
  int sd = -1;
 
1629
  error_t old_errno = errno;
 
1630
  error_t ret_errno = 0;
 
1631
  int ret, ret_setflags;
 
1632
  struct ifreq network;
 
1633
  unsigned int if_index = if_nametoindex(interface);
 
1634
  if(if_index == 0){
 
1635
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1636
    errno = old_errno;
 
1637
    return ENXIO;
 
1638
  }
 
1639
  
 
1640
  if(quit_now){
 
1641
    errno = old_errno;
 
1642
    return EINTR;
 
1643
  }
 
1644
  
 
1645
  if(not interface_is_up(interface)){
 
1646
    if(not get_flags(interface, &network) and debug){
 
1647
      ret_errno = errno;
 
1648
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1649
                   "\"%s\"\n", interface);
 
1650
      return ret_errno;
 
1651
    }
 
1652
    network.ifr_flags |= IFF_UP;
 
1653
    
 
1654
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1655
    if(sd < 0){
 
1656
      ret_errno = errno;
 
1657
      perror_plus("socket");
 
1658
      errno = old_errno;
 
1659
      return ret_errno;
 
1660
    }
 
1661
  
 
1662
    if(quit_now){
 
1663
      close(sd);
 
1664
      errno = old_errno;
 
1665
      return EINTR;
 
1666
    }
 
1667
    
 
1668
    if(debug){
 
1669
      fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
 
1670
                   interface);
 
1671
    }
 
1672
    
 
1673
    /* Raise priviliges */
 
1674
    raise_privileges();
 
1675
    
 
1676
#ifdef __linux__
 
1677
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1678
       messages about the network interface to mess up the prompt */
 
1679
    int ret_linux = klogctl(8, NULL, 5);
 
1680
    bool restore_loglevel = true;
 
1681
    if(ret_linux == -1){
 
1682
      restore_loglevel = false;
 
1683
      perror_plus("klogctl");
 
1684
    }
 
1685
#endif  /* __linux__ */
 
1686
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1687
    ret_errno = errno;
 
1688
#ifdef __linux__
 
1689
    if(restore_loglevel){
 
1690
      ret_linux = klogctl(7, NULL, 0);
 
1691
      if(ret_linux == -1){
 
1692
        perror_plus("klogctl");
 
1693
      }
 
1694
    }
 
1695
#endif  /* __linux__ */
 
1696
    
 
1697
    /* Lower privileges */
 
1698
    lower_privileges();
 
1699
    
 
1700
    /* Close the socket */
 
1701
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1702
    if(ret == -1){
 
1703
      perror_plus("close");
 
1704
    }
 
1705
    
 
1706
    if(ret_setflags == -1){
 
1707
      errno = ret_errno;
 
1708
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1709
      errno = old_errno;
 
1710
      return ret_errno;
 
1711
    }
 
1712
  } else if(debug){
 
1713
    fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
 
1714
                 interface);
 
1715
  }
 
1716
  
 
1717
  /* Sleep checking until interface is running.
 
1718
     Check every 0.25s, up to total time of delay */
 
1719
  for(int i=0; i < delay * 4; i++){
 
1720
    if(interface_is_running(interface)){
 
1721
      break;
 
1722
    }
 
1723
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1724
    ret = nanosleep(&sleeptime, NULL);
 
1725
    if(ret == -1 and errno != EINTR){
 
1726
      perror_plus("nanosleep");
 
1727
    }
 
1728
  }
 
1729
  
 
1730
  errno = old_errno;
 
1731
  return 0;
 
1732
}
 
1733
 
 
1734
error_t take_down_interface(const char *const interface){
 
1735
  error_t old_errno = errno;
 
1736
  struct ifreq network;
 
1737
  unsigned int if_index = if_nametoindex(interface);
 
1738
  if(if_index == 0){
 
1739
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1740
    errno = old_errno;
 
1741
    return ENXIO;
 
1742
  }
 
1743
  if(interface_is_up(interface)){
 
1744
    error_t ret_errno = 0;
 
1745
    if(not get_flags(interface, &network) and debug){
 
1746
      ret_errno = errno;
 
1747
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1748
                   "\"%s\"\n", interface);
 
1749
      return ret_errno;
 
1750
    }
 
1751
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1752
    
 
1753
    int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1754
    if(sd < 0){
 
1755
      ret_errno = errno;
 
1756
      perror_plus("socket");
 
1757
      errno = old_errno;
 
1758
      return ret_errno;
 
1759
    }
 
1760
    
 
1761
    if(debug){
 
1762
      fprintf_plus(stderr, "Taking down interface \"%s\"\n",
 
1763
                   interface);
 
1764
    }
 
1765
    
 
1766
    /* Raise priviliges */
 
1767
    raise_privileges();
 
1768
    
 
1769
    int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1770
    ret_errno = errno;
 
1771
    
 
1772
    /* Lower privileges */
 
1773
    lower_privileges();
 
1774
    
 
1775
    /* Close the socket */
 
1776
    int ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1777
    if(ret == -1){
 
1778
      perror_plus("close");
 
1779
    }
 
1780
    
 
1781
    if(ret_setflags == -1){
 
1782
      errno = ret_errno;
 
1783
      perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
1784
      errno = old_errno;
 
1785
      return ret_errno;
 
1786
    }
 
1787
  } else if(debug){
 
1788
    fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
 
1789
                 interface);
 
1790
  }
 
1791
  
 
1792
  errno = old_errno;
 
1793
  return 0;
 
1794
}
 
1795
 
1511
1796
int main(int argc, char *argv[]){
 
1797
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
 
1798
                        .priority = "SECURE256:!CTYPE-X.509:"
 
1799
                        "+CTYPE-OPENPGP", .current_server = NULL, 
 
1800
                        .interfaces = NULL, .interfaces_size = 0 };
1512
1801
  AvahiSServiceBrowser *sb = NULL;
1513
 
  int error;
 
1802
  error_t ret_errno;
1514
1803
  int ret;
1515
1804
  intmax_t tmpmax;
1516
1805
  char *tmp;
1517
1806
  int exitcode = EXIT_SUCCESS;
1518
 
  const char *interface = "";
1519
 
  struct ifreq network;
1520
 
  int sd = -1;
1521
 
  bool take_down_interface = false;
1522
 
  uid_t uid;
1523
 
  gid_t gid;
 
1807
  char *interfaces_to_take_down = NULL;
 
1808
  size_t interfaces_to_take_down_size = 0;
1524
1809
  char tempdir[] = "/tmp/mandosXXXXXX";
1525
1810
  bool tempdir_created = false;
1526
1811
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1527
1812
  const char *seckey = PATHDIR "/" SECKEY;
1528
1813
  const char *pubkey = PATHDIR "/" PUBKEY;
 
1814
  char *interfaces_hooks = NULL;
1529
1815
  
1530
1816
  bool gnutls_initialized = false;
1531
1817
  bool gpgme_initialized = false;
1593
1879
        .group = 2 },
1594
1880
      { .name = "retry", .key = 132,
1595
1881
        .arg = "SECONDS",
1596
 
        .doc = "Retry interval used when denied by the mandos server",
 
1882
        .doc = "Retry interval used when denied by the Mandos server",
1597
1883
        .group = 2 },
1598
1884
      { .name = "network-hook-dir", .key = 133,
1599
1885
        .arg = "DIR",
1622
1908
        connect_to = arg;
1623
1909
        break;
1624
1910
      case 'i':                 /* --interface */
1625
 
        interface = arg;
 
1911
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
 
1912
                                 arg, (int)',');
 
1913
        if(ret_errno != 0){
 
1914
          argp_error(state, "%s", strerror(ret_errno));
 
1915
        }
1626
1916
        break;
1627
1917
      case 's':                 /* --seckey */
1628
1918
        seckey = arg;
1671
1961
        argp_state_help(state, state->out_stream,
1672
1962
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1673
1963
      case 'V':                 /* --version */
1674
 
        fprintf_plus(state->out_stream,
1675
 
                     "Mandos plugin mandos-client: ");
1676
1964
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1677
1965
        exit(argp_err_exit_status);
1678
1966
        break;
1708
1996
       <http://bugs.debian.org/633582> */
1709
1997
    
1710
1998
    /* Re-raise priviliges */
1711
 
    errno = 0;
1712
 
    ret = seteuid(0);
1713
 
    if(ret == -1){
1714
 
      perror_plus("seteuid");
1715
 
    } else {
 
1999
    if(raise_privileges() == 0){
1716
2000
      struct stat st;
1717
2001
      
1718
2002
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1758
2042
      }
1759
2043
    
1760
2044
      /* Lower privileges */
1761
 
      errno = 0;
1762
 
      ret = seteuid(uid);
1763
 
      if(ret == -1){
1764
 
        perror_plus("seteuid");
 
2045
      lower_privileges();
 
2046
    }
 
2047
  }
 
2048
  
 
2049
  /* Remove invalid interface names (except "none") */
 
2050
  {
 
2051
    char *interface = NULL;
 
2052
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2053
                                 interface))){
 
2054
      if(strcmp(interface, "none") != 0
 
2055
         and if_nametoindex(interface) == 0){
 
2056
        if(interface[0] != '\0'){
 
2057
          fprintf_plus(stderr, "Not using nonexisting interface"
 
2058
                       " \"%s\"\n", interface);
 
2059
        }
 
2060
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
 
2061
        interface = NULL;
1765
2062
      }
1766
2063
    }
1767
2064
  }
1768
2065
  
1769
2066
  /* Run network hooks */
1770
 
  if(not run_network_hooks("start", interface, delay)){
1771
 
    goto end;
 
2067
  {
 
2068
    if(mc.interfaces != NULL){
 
2069
      interfaces_hooks = malloc(mc.interfaces_size);
 
2070
      if(interfaces_hooks == NULL){
 
2071
        perror_plus("malloc");
 
2072
        goto end;
 
2073
      }
 
2074
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
 
2075
      argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
 
2076
    }
 
2077
    if(not run_network_hooks("start", interfaces_hooks != NULL ?
 
2078
                             interfaces_hooks : "", delay)){
 
2079
      goto end;
 
2080
    }
1772
2081
  }
1773
2082
  
1774
2083
  if(not debug){
1775
2084
    avahi_set_log_function(empty_log);
1776
2085
  }
1777
2086
  
1778
 
  if(interface[0] == '\0'){
1779
 
    struct dirent **direntries;
1780
 
    /* First look for interfaces that are up */
1781
 
    ret = scandir(sys_class_net, &direntries, up_interface,
1782
 
                  alphasort);
1783
 
    if(ret == 0){
1784
 
      /* No up interfaces, look for any good interfaces */
1785
 
      free(direntries);
1786
 
      ret = scandir(sys_class_net, &direntries, good_interface,
1787
 
                    alphasort);
1788
 
    }
1789
 
    if(ret >= 1){
1790
 
      /* Pick the first interface returned */
1791
 
      interface = strdup(direntries[0]->d_name);
1792
 
      if(debug){
1793
 
        fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1794
 
      }
1795
 
      if(interface == NULL){
1796
 
        perror_plus("malloc");
1797
 
        free(direntries);
1798
 
        exitcode = EXIT_FAILURE;
1799
 
        goto end;
1800
 
      }
1801
 
      free(direntries);
1802
 
    } else {
1803
 
      free(direntries);
1804
 
      fprintf_plus(stderr, "Could not find a network interface\n");
1805
 
      exitcode = EXIT_FAILURE;
1806
 
      goto end;
1807
 
    }
1808
 
  }
1809
 
  
1810
2087
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1811
2088
     from the signal handler */
1812
2089
  /* Initialize the pseudo-RNG for Avahi */
1813
2090
  srand((unsigned int) time(NULL));
1814
 
  mc.simple_poll = avahi_simple_poll_new();
1815
 
  if(mc.simple_poll == NULL){
 
2091
  simple_poll = avahi_simple_poll_new();
 
2092
  if(simple_poll == NULL){
1816
2093
    fprintf_plus(stderr,
1817
2094
                 "Avahi: Failed to create simple poll object.\n");
1818
2095
    exitcode = EX_UNAVAILABLE;
1882
2159
    }
1883
2160
  }
1884
2161
  
1885
 
  /* If the interface is down, bring it up */
1886
 
  if(strcmp(interface, "none") != 0){
1887
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1888
 
    if(if_index == 0){
1889
 
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1890
 
      exitcode = EX_UNAVAILABLE;
1891
 
      goto end;
1892
 
    }
1893
 
    
1894
 
    if(quit_now){
1895
 
      goto end;
1896
 
    }
1897
 
    
1898
 
    /* Re-raise priviliges */
1899
 
    errno = 0;
1900
 
    ret = seteuid(0);
1901
 
    if(ret == -1){
1902
 
      perror_plus("seteuid");
1903
 
    }
1904
 
    
1905
 
#ifdef __linux__
1906
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1907
 
       messages about the network interface to mess up the prompt */
1908
 
    ret = klogctl(8, NULL, 5);
1909
 
    bool restore_loglevel = true;
1910
 
    if(ret == -1){
1911
 
      restore_loglevel = false;
1912
 
      perror_plus("klogctl");
1913
 
    }
1914
 
#endif  /* __linux__ */
1915
 
    
1916
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1917
 
    if(sd < 0){
1918
 
      perror_plus("socket");
1919
 
      exitcode = EX_OSERR;
1920
 
#ifdef __linux__
1921
 
      if(restore_loglevel){
1922
 
        ret = klogctl(7, NULL, 0);
1923
 
        if(ret == -1){
1924
 
          perror_plus("klogctl");
1925
 
        }
1926
 
      }
1927
 
#endif  /* __linux__ */
1928
 
      /* Lower privileges */
1929
 
      errno = 0;
1930
 
      ret = seteuid(uid);
1931
 
      if(ret == -1){
1932
 
        perror_plus("seteuid");
1933
 
      }
1934
 
      goto end;
1935
 
    }
1936
 
    strcpy(network.ifr_name, interface);
1937
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1938
 
    if(ret == -1){
1939
 
      perror_plus("ioctl SIOCGIFFLAGS");
1940
 
#ifdef __linux__
1941
 
      if(restore_loglevel){
1942
 
        ret = klogctl(7, NULL, 0);
1943
 
        if(ret == -1){
1944
 
          perror_plus("klogctl");
1945
 
        }
1946
 
      }
1947
 
#endif  /* __linux__ */
1948
 
      exitcode = EX_OSERR;
1949
 
      /* Lower privileges */
1950
 
      errno = 0;
1951
 
      ret = seteuid(uid);
1952
 
      if(ret == -1){
1953
 
        perror_plus("seteuid");
1954
 
      }
1955
 
      goto end;
1956
 
    }
1957
 
    if((network.ifr_flags & IFF_UP) == 0){
1958
 
      network.ifr_flags |= IFF_UP;
1959
 
      take_down_interface = true;
1960
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1961
 
      if(ret == -1){
1962
 
        take_down_interface = false;
1963
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1964
 
        exitcode = EX_OSERR;
1965
 
#ifdef __linux__
1966
 
        if(restore_loglevel){
1967
 
          ret = klogctl(7, NULL, 0);
1968
 
          if(ret == -1){
1969
 
            perror_plus("klogctl");
 
2162
  /* If no interfaces were specified, make a list */
 
2163
  if(mc.interfaces == NULL){
 
2164
    struct dirent **direntries;
 
2165
    /* Look for any good interfaces */
 
2166
    ret = scandir(sys_class_net, &direntries, good_interface,
 
2167
                  alphasort);
 
2168
    if(ret >= 1){
 
2169
      /* Add all found interfaces to interfaces list */
 
2170
      for(int i = 0; i < ret; ++i){
 
2171
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
 
2172
                             direntries[i]->d_name);
 
2173
        if(ret_errno != 0){
 
2174
          errno = ret_errno;
 
2175
          perror_plus("argz_add");
 
2176
          continue;
 
2177
        }
 
2178
        if(debug){
 
2179
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
 
2180
                       direntries[i]->d_name);
 
2181
        }
 
2182
      }
 
2183
      free(direntries);
 
2184
    } else {
 
2185
      free(direntries);
 
2186
      fprintf_plus(stderr, "Could not find a network interface\n");
 
2187
      exitcode = EXIT_FAILURE;
 
2188
      goto end;
 
2189
    }
 
2190
  }
 
2191
  
 
2192
  /* Bring up interfaces which are down, and remove any "none"s */
 
2193
  {
 
2194
    char *interface = NULL;
 
2195
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2196
                                 interface))){
 
2197
      /* If interface name is "none", stop bringing up interfaces.
 
2198
         Also remove all instances of "none" from the list */
 
2199
      if(strcmp(interface, "none") == 0){
 
2200
        argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2201
                    interface);
 
2202
        interface = NULL;
 
2203
        while((interface = argz_next(mc.interfaces,
 
2204
                                     mc.interfaces_size, interface))){
 
2205
          if(strcmp(interface, "none") == 0){
 
2206
            argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2207
                        interface);
 
2208
            interface = NULL;
1970
2209
          }
1971
2210
        }
1972
 
#endif  /* __linux__ */
1973
 
        /* Lower privileges */
1974
 
        errno = 0;
1975
 
        ret = seteuid(uid);
1976
 
        if(ret == -1){
1977
 
          perror_plus("seteuid");
1978
 
        }
1979
 
        goto end;
1980
 
      }
1981
 
    }
1982
 
    /* Sleep checking until interface is running.
1983
 
       Check every 0.25s, up to total time of delay */
1984
 
    for(int i=0; i < delay * 4; i++){
1985
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1986
 
      if(ret == -1){
1987
 
        perror_plus("ioctl SIOCGIFFLAGS");
1988
 
      } else if(network.ifr_flags & IFF_RUNNING){
1989
2211
        break;
1990
2212
      }
1991
 
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1992
 
      ret = nanosleep(&sleeptime, NULL);
1993
 
      if(ret == -1 and errno != EINTR){
1994
 
        perror_plus("nanosleep");
1995
 
      }
1996
 
    }
1997
 
    if(not take_down_interface){
1998
 
      /* We won't need the socket anymore */
1999
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2000
 
      if(ret == -1){
2001
 
        perror_plus("close");
2002
 
      }
2003
 
    }
2004
 
#ifdef __linux__
2005
 
    if(restore_loglevel){
2006
 
      /* Restores kernel loglevel to default */
2007
 
      ret = klogctl(7, NULL, 0);
2008
 
      if(ret == -1){
2009
 
        perror_plus("klogctl");
2010
 
      }
2011
 
    }
2012
 
#endif  /* __linux__ */
2013
 
    /* Lower privileges */
2014
 
    errno = 0;
2015
 
    /* Lower privileges */
2016
 
    ret = seteuid(uid);
2017
 
    if(ret == -1){
2018
 
      perror_plus("seteuid");
2019
 
    }
 
2213
      bool interface_was_up = interface_is_up(interface);
 
2214
      ret = bring_up_interface(interface, delay);
 
2215
      if(not interface_was_up){
 
2216
        if(ret != 0){
 
2217
          errno = ret;
 
2218
          perror_plus("Failed to bring up interface");
 
2219
        } else {
 
2220
          ret_errno = argz_add(&interfaces_to_take_down,
 
2221
                               &interfaces_to_take_down_size,
 
2222
                               interface);
 
2223
          if(ret_errno != 0){
 
2224
            errno = ret_errno;
 
2225
            perror_plus("argz_add");
 
2226
          }
 
2227
        }
 
2228
      }
 
2229
    }
 
2230
    if(debug and (interfaces_to_take_down == NULL)){
 
2231
      fprintf_plus(stderr, "No interfaces were brought up\n");
 
2232
    }
 
2233
  }
 
2234
  
 
2235
  /* If we only got one interface, explicitly use only that one */
 
2236
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
 
2237
    if(debug){
 
2238
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2239
                   mc.interfaces);
 
2240
    }
 
2241
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2020
2242
  }
2021
2243
  
2022
2244
  if(quit_now){
2023
2245
    goto end;
2024
2246
  }
2025
2247
  
2026
 
  ret = init_gnutls_global(pubkey, seckey);
 
2248
  ret = init_gnutls_global(pubkey, seckey, &mc);
2027
2249
  if(ret == -1){
2028
2250
    fprintf_plus(stderr, "init_gnutls_global failed\n");
2029
2251
    exitcode = EX_UNAVAILABLE;
2046
2268
    goto end;
2047
2269
  }
2048
2270
  
2049
 
  if(not init_gpgme(pubkey, seckey, tempdir)){
 
2271
  if(not init_gpgme(pubkey, seckey, tempdir, &mc)){
2050
2272
    fprintf_plus(stderr, "init_gpgme failed\n");
2051
2273
    exitcode = EX_UNAVAILABLE;
2052
2274
    goto end;
2062
2284
    /* Connect directly, do not use Zeroconf */
2063
2285
    /* (Mainly meant for debugging) */
2064
2286
    char *address = strrchr(connect_to, ':');
 
2287
    
2065
2288
    if(address == NULL){
2066
2289
      fprintf_plus(stderr, "No colon in address\n");
2067
2290
      exitcode = EX_USAGE;
2072
2295
      goto end;
2073
2296
    }
2074
2297
    
2075
 
    uint16_t port;
 
2298
    in_port_t port;
2076
2299
    errno = 0;
2077
2300
    tmpmax = strtoimax(address+1, &tmp, 10);
2078
2301
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
2079
 
       or tmpmax != (uint16_t)tmpmax){
 
2302
       or tmpmax != (in_port_t)tmpmax){
2080
2303
      fprintf_plus(stderr, "Bad port number\n");
2081
2304
      exitcode = EX_USAGE;
2082
2305
      goto end;
2083
2306
    }
2084
 
  
 
2307
    
2085
2308
    if(quit_now){
2086
2309
      goto end;
2087
2310
    }
2088
2311
    
2089
 
    port = (uint16_t)tmpmax;
 
2312
    port = (in_port_t)tmpmax;
2090
2313
    *address = '\0';
2091
2314
    /* Colon in address indicates IPv6 */
2092
2315
    int af;
2108
2331
    }
2109
2332
    
2110
2333
    while(not quit_now){
2111
 
      ret = start_mandos_communication(address, port, if_index, af);
 
2334
      ret = start_mandos_communication(address, port, if_index, af,
 
2335
                                       &mc);
2112
2336
      if(quit_now or ret == 0){
2113
2337
        break;
2114
2338
      }
2116
2340
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2117
2341
                     (int)retry_interval);
2118
2342
      }
2119
 
      sleep((int)retry_interval);
 
2343
      sleep((unsigned int)retry_interval);
2120
2344
    }
2121
2345
    
2122
2346
    if (not quit_now){
2140
2364
    config.publish_domain = 0;
2141
2365
    
2142
2366
    /* Allocate a new server */
2143
 
    mc.server = avahi_server_new(avahi_simple_poll_get
2144
 
                                 (mc.simple_poll), &config, NULL,
2145
 
                                 NULL, &error);
 
2367
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
 
2368
                                 &config, NULL, NULL, &ret_errno);
2146
2369
    
2147
2370
    /* Free the Avahi configuration data */
2148
2371
    avahi_server_config_free(&config);
2151
2374
  /* Check if creating the Avahi server object succeeded */
2152
2375
  if(mc.server == NULL){
2153
2376
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
2154
 
                 avahi_strerror(error));
 
2377
                 avahi_strerror(ret_errno));
2155
2378
    exitcode = EX_UNAVAILABLE;
2156
2379
    goto end;
2157
2380
  }
2163
2386
  /* Create the Avahi service browser */
2164
2387
  sb = avahi_s_service_browser_new(mc.server, if_index,
2165
2388
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2166
 
                                   NULL, 0, browse_callback, NULL);
 
2389
                                   NULL, 0, browse_callback,
 
2390
                                   (void *)&mc);
2167
2391
  if(sb == NULL){
2168
2392
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
2169
2393
                 avahi_strerror(avahi_server_errno(mc.server)));
2181
2405
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2182
2406
  }
2183
2407
 
2184
 
  ret = avahi_loop_with_timeout(mc.simple_poll,
2185
 
                                (int)(retry_interval * 1000));
 
2408
  ret = avahi_loop_with_timeout(simple_poll,
 
2409
                                (int)(retry_interval * 1000), &mc);
2186
2410
  if(debug){
2187
2411
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2188
2412
                 (ret == 0) ? "successfully" : "with error");
2195
2419
  }
2196
2420
  
2197
2421
  /* Cleanup things */
 
2422
  free(mc.interfaces);
 
2423
  
2198
2424
  if(sb != NULL)
2199
2425
    avahi_s_service_browser_free(sb);
2200
2426
  
2201
2427
  if(mc.server != NULL)
2202
2428
    avahi_server_free(mc.server);
2203
2429
  
2204
 
  if(mc.simple_poll != NULL)
2205
 
    avahi_simple_poll_free(mc.simple_poll);
 
2430
  if(simple_poll != NULL)
 
2431
    avahi_simple_poll_free(simple_poll);
2206
2432
  
2207
2433
  if(gnutls_initialized){
2208
2434
    gnutls_certificate_free_credentials(mc.cred);
2225
2451
    }
2226
2452
  }
2227
2453
  
2228
 
  /* Run network hooks */
2229
 
  run_network_hooks("stop", interface, delay);
2230
 
  
2231
2454
  /* Re-raise priviliges */
2232
2455
  {
2233
 
    errno = 0;
2234
 
    ret = seteuid(0);
2235
 
    if(ret == -1){
2236
 
      perror_plus("seteuid");
2237
 
    }
2238
 
    
2239
 
    /* Take down the network interface */
2240
 
    if(take_down_interface and geteuid() == 0){
2241
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2242
 
      if(ret == -1){
2243
 
        perror_plus("ioctl SIOCGIFFLAGS");
2244
 
      } else if(network.ifr_flags & IFF_UP){
2245
 
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2246
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
2247
 
        if(ret == -1){
2248
 
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
2456
    raise_privileges();
 
2457
    
 
2458
    /* Run network hooks */
 
2459
    run_network_hooks("stop", interfaces_hooks != NULL ?
 
2460
                      interfaces_hooks : "", delay);
 
2461
    
 
2462
    /* Take down the network interfaces which were brought up */
 
2463
    {
 
2464
      char *interface = NULL;
 
2465
      while((interface=argz_next(interfaces_to_take_down,
 
2466
                                 interfaces_to_take_down_size,
 
2467
                                 interface))){
 
2468
        ret_errno = take_down_interface(interface);
 
2469
        if(ret_errno != 0){
 
2470
          errno = ret_errno;
 
2471
          perror_plus("Failed to take down interface");
2249
2472
        }
2250
2473
      }
2251
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2252
 
      if(ret == -1){
2253
 
        perror_plus("close");
 
2474
      if(debug and (interfaces_to_take_down == NULL)){
 
2475
        fprintf_plus(stderr, "No interfaces needed to be taken"
 
2476
                     " down\n");
2254
2477
      }
2255
2478
    }
2256
 
  }
2257
 
  /* Lower privileges permanently */
2258
 
  errno = 0;
2259
 
  ret = setuid(uid);
2260
 
  if(ret == -1){
2261
 
    perror_plus("setuid");
2262
 
  }
 
2479
    
 
2480
    lower_privileges_permanently();
 
2481
  }
 
2482
  
 
2483
  free(interfaces_to_take_down);
 
2484
  free(interfaces_hooks);
2263
2485
  
2264
2486
  /* Removes the GPGME temp directory and all files inside */
2265
2487
  if(tempdir_created){