/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-28 22:32:21 UTC
  • mto: (237.7.272 trunk)
  • mto: This revision was merged to the branch mainline in revision 311.
  • Revision ID: teddy@recompile.se-20140328223221-w579qlvlex5if3dn
Fix location and format of signing key file.

* debian/upstream/signing-key.asc: Added.
* debian/upstream-signing-key.pgp: Removed.

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() */
55
55
                                   opendir(), DIR */
56
56
#include <sys/stat.h>           /* open(), S_ISREG */
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
 
                                   inet_pton(), connect() */
 
58
                                   inet_pton(), connect(),
 
59
                                   getnameinfo() */
59
60
#include <fcntl.h>              /* open() */
60
61
#include <dirent.h>             /* opendir(), struct dirent, readdir()
61
62
                                 */
62
63
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
64
                                   strtoimax() */
64
 
#include <assert.h>             /* assert() */
65
65
#include <errno.h>              /* perror(), errno,
66
66
                                   program_invocation_short_name */
67
67
#include <time.h>               /* nanosleep(), time(), sleep() */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
76
                                   setgid(), pause(), _exit() */
77
 
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
 
77
#include <arpa/inet.h>          /* inet_pton(), htons() */
78
78
#include <iso646.h>             /* not, or, and */
79
79
#include <argp.h>               /* struct argp_option, error_t, struct
80
80
                                   argp_state, struct argp,
87
87
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
88
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
89
89
                                   WEXITSTATUS(), WTERMSIG() */
 
90
#include <grp.h>                /* setgroups() */
 
91
#include <argz.h>               /* argz_add_sep(), argz_next(),
 
92
                                   argz_delete(), argz_append(),
 
93
                                   argz_stringify(), argz_add(),
 
94
                                   argz_count() */
 
95
#include <netdb.h>              /* getnameinfo(), NI_NUMERICHOST,
 
96
                                   EAI_SYSTEM, gai_strerror() */
90
97
 
91
98
#ifdef __linux__
92
99
#include <sys/klog.h>           /* klogctl() */
129
136
 
130
137
bool debug = false;
131
138
static const char mandos_protocol_version[] = "1";
132
 
const char *argp_program_version = "mandos-client " VERSION;
133
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
139
const char * argp_program_version = "mandos-client " VERSION;
 
140
const char * argp_program_bug_address = "<mandos@recompile.se>";
134
141
static const char sys_class_net[] = "/sys/class/net";
135
142
char *connect_to = NULL;
136
143
const char *hookdir = HOOKDIR;
 
144
uid_t uid = 65534;
 
145
gid_t gid = 65534;
137
146
 
138
147
/* Doubly linked list that need to be circularly linked when used */
139
148
typedef struct server{
140
149
  const char *ip;
141
 
  uint16_t port;
 
150
  in_port_t port;
142
151
  AvahiIfIndex if_index;
143
152
  int af;
144
153
  struct timespec last_seen;
148
157
 
149
158
/* Used for passing in values through the Avahi callback functions */
150
159
typedef struct {
151
 
  AvahiSimplePoll *simple_poll;
152
160
  AvahiServer *server;
153
161
  gnutls_certificate_credentials_t cred;
154
162
  unsigned int dh_bits;
156
164
  const char *priority;
157
165
  gpgme_ctx_t ctx;
158
166
  server *current_server;
 
167
  char *interfaces;
 
168
  size_t interfaces_size;
159
169
} mandos_context;
160
170
 
161
 
/* global context so signal handler can reach it*/
162
 
mandos_context mc = { .simple_poll = NULL, .server = NULL,
163
 
                      .dh_bits = 1024, .priority = "SECURE256"
164
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
165
 
                      .current_server = NULL };
 
171
/* global so signal handler can reach it*/
 
172
AvahiSimplePoll *simple_poll;
166
173
 
167
174
sig_atomic_t quit_now = 0;
168
175
int signal_received = 0;
169
176
 
170
177
/* Function to use when printing errors */
171
178
void perror_plus(const char *print_text){
 
179
  int e = errno;
172
180
  fprintf(stderr, "Mandos plugin %s: ",
173
181
          program_invocation_short_name);
 
182
  errno = e;
174
183
  perror(print_text);
175
184
}
176
185
 
 
186
__attribute__((format (gnu_printf, 2, 3), nonnull))
177
187
int fprintf_plus(FILE *stream, const char *format, ...){
178
188
  va_list ap;
179
189
  va_start (ap, format);
180
190
  
181
191
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
182
192
                             program_invocation_short_name));
183
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
193
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
184
194
}
185
195
 
186
196
/*
188
198
 * bytes. "buffer_capacity" is how much is currently allocated,
189
199
 * "buffer_length" is how much is already used.
190
200
 */
 
201
__attribute__((nonnull, warn_unused_result))
191
202
size_t incbuffer(char **buffer, size_t buffer_length,
192
203
                 size_t buffer_capacity){
193
204
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
194
 
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
195
 
    if(buffer == NULL){
 
205
    char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
206
    if(new_buf == NULL){
 
207
      int old_errno = errno;
 
208
      free(*buffer);
 
209
      errno = old_errno;
 
210
      *buffer = NULL;
196
211
      return 0;
197
212
    }
 
213
    *buffer = new_buf;
198
214
    buffer_capacity += BUFFER_SIZE;
199
215
  }
200
216
  return buffer_capacity;
201
217
}
202
218
 
203
219
/* Add server to set of servers to retry periodically */
204
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
205
 
               int af){
 
220
__attribute__((nonnull, warn_unused_result))
 
221
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
 
222
                int af, server **current_server){
206
223
  int ret;
207
224
  server *new_server = malloc(sizeof(server));
208
225
  if(new_server == NULL){
209
226
    perror_plus("malloc");
210
 
    return -1;
 
227
    return false;
211
228
  }
212
229
  *new_server = (server){ .ip = strdup(ip),
213
230
                          .port = port,
215
232
                          .af = af };
216
233
  if(new_server->ip == NULL){
217
234
    perror_plus("strdup");
218
 
    return -1;
 
235
    return false;
 
236
  }
 
237
  ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
 
238
  if(ret == -1){
 
239
    perror_plus("clock_gettime");
 
240
    return false;
219
241
  }
220
242
  /* Special case of first server */
221
 
  if (mc.current_server == NULL){
 
243
  if(*current_server == NULL){
222
244
    new_server->next = new_server;
223
245
    new_server->prev = new_server;
224
 
    mc.current_server = new_server;
225
 
  /* Place the new server last in the list */
 
246
    *current_server = new_server;
226
247
  } else {
227
 
    new_server->next = mc.current_server;
228
 
    new_server->prev = mc.current_server->prev;
 
248
    /* Place the new server last in the list */
 
249
    new_server->next = *current_server;
 
250
    new_server->prev = (*current_server)->prev;
229
251
    new_server->prev->next = new_server;
230
 
    mc.current_server->prev = new_server;
231
 
  }
232
 
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
233
 
  if(ret == -1){
234
 
    perror_plus("clock_gettime");
235
 
    return -1;
236
 
  }
237
 
  return 0;
 
252
    (*current_server)->prev = new_server;
 
253
  }
 
254
  return true;
238
255
}
239
256
 
240
257
/* 
241
258
 * Initialize GPGME.
242
259
 */
243
 
static bool init_gpgme(const char *seckey, const char *pubkey,
244
 
                       const char *tempdir){
 
260
__attribute__((nonnull, warn_unused_result))
 
261
static bool init_gpgme(const char * const seckey,
 
262
                       const char * const pubkey,
 
263
                       const char * const tempdir,
 
264
                       mandos_context *mc){
245
265
  gpgme_error_t rc;
246
266
  gpgme_engine_info_t engine_info;
247
267
  
248
 
  
249
268
  /*
250
269
   * Helper function to insert pub and seckey to the engine keyring.
251
270
   */
252
 
  bool import_key(const char *filename){
 
271
  bool import_key(const char * const filename){
253
272
    int ret;
254
273
    int fd;
255
274
    gpgme_data_t pgp_data;
267
286
      return false;
268
287
    }
269
288
    
270
 
    rc = gpgme_op_import(mc.ctx, pgp_data);
 
289
    rc = gpgme_op_import(mc->ctx, pgp_data);
271
290
    if(rc != GPG_ERR_NO_ERROR){
272
291
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
273
292
                   gpgme_strsource(rc), gpgme_strerror(rc));
317
336
  }
318
337
  
319
338
  /* Create new GPGME "context" */
320
 
  rc = gpgme_new(&(mc.ctx));
 
339
  rc = gpgme_new(&(mc->ctx));
321
340
  if(rc != GPG_ERR_NO_ERROR){
322
341
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
323
342
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
336
355
 * Decrypt OpenPGP data.
337
356
 * Returns -1 on error
338
357
 */
 
358
__attribute__((nonnull, warn_unused_result))
339
359
static ssize_t pgp_packet_decrypt(const char *cryptotext,
340
360
                                  size_t crypto_size,
341
 
                                  char **plaintext){
 
361
                                  char **plaintext,
 
362
                                  mandos_context *mc){
342
363
  gpgme_data_t dh_crypto, dh_plain;
343
364
  gpgme_error_t rc;
344
365
  ssize_t ret;
370
391
  
371
392
  /* Decrypt data from the cryptotext data buffer to the plaintext
372
393
     data buffer */
373
 
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
 
394
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
374
395
  if(rc != GPG_ERR_NO_ERROR){
375
396
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
376
397
                 gpgme_strsource(rc), gpgme_strerror(rc));
377
398
    plaintext_length = -1;
378
399
    if(debug){
379
400
      gpgme_decrypt_result_t result;
380
 
      result = gpgme_op_decrypt_result(mc.ctx);
 
401
      result = gpgme_op_decrypt_result(mc->ctx);
381
402
      if(result == NULL){
382
403
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
383
404
      } else {
460
481
  return plaintext_length;
461
482
}
462
483
 
463
 
static const char * safer_gnutls_strerror(int value){
464
 
  const char *ret = gnutls_strerror(value); /* Spurious warning from
465
 
                                               -Wunreachable-code */
 
484
__attribute__((warn_unused_result))
 
485
static const char *safer_gnutls_strerror(int value){
 
486
  const char *ret = gnutls_strerror(value);
466
487
  if(ret == NULL)
467
488
    ret = "(unknown)";
468
489
  return ret;
469
490
}
470
491
 
471
492
/* GnuTLS log function callback */
 
493
__attribute__((nonnull))
472
494
static void debuggnutls(__attribute__((unused)) int level,
473
495
                        const char* string){
474
496
  fprintf_plus(stderr, "GnuTLS: %s", string);
475
497
}
476
498
 
 
499
__attribute__((nonnull, warn_unused_result))
477
500
static int init_gnutls_global(const char *pubkeyfilename,
478
 
                              const char *seckeyfilename){
 
501
                              const char *seckeyfilename,
 
502
                              mandos_context *mc){
479
503
  int ret;
480
504
  
481
505
  if(debug){
498
522
  }
499
523
  
500
524
  /* OpenPGP credentials */
501
 
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
 
525
  ret = gnutls_certificate_allocate_credentials(&mc->cred);
502
526
  if(ret != GNUTLS_E_SUCCESS){
503
527
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
504
528
                 safer_gnutls_strerror(ret));
514
538
  }
515
539
  
516
540
  ret = gnutls_certificate_set_openpgp_key_file
517
 
    (mc.cred, pubkeyfilename, seckeyfilename,
 
541
    (mc->cred, pubkeyfilename, seckeyfilename,
518
542
     GNUTLS_OPENPGP_FMT_BASE64);
519
543
  if(ret != GNUTLS_E_SUCCESS){
520
544
    fprintf_plus(stderr,
526
550
  }
527
551
  
528
552
  /* GnuTLS server initialization */
529
 
  ret = gnutls_dh_params_init(&mc.dh_params);
 
553
  ret = gnutls_dh_params_init(&mc->dh_params);
530
554
  if(ret != GNUTLS_E_SUCCESS){
531
555
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
532
556
                 " initialization: %s\n",
533
557
                 safer_gnutls_strerror(ret));
534
558
    goto globalfail;
535
559
  }
536
 
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
560
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
537
561
  if(ret != GNUTLS_E_SUCCESS){
538
562
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
539
563
                 safer_gnutls_strerror(ret));
540
564
    goto globalfail;
541
565
  }
542
566
  
543
 
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
 
567
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
544
568
  
545
569
  return 0;
546
570
  
547
571
 globalfail:
548
572
  
549
 
  gnutls_certificate_free_credentials(mc.cred);
 
573
  gnutls_certificate_free_credentials(mc->cred);
550
574
  gnutls_global_deinit();
551
 
  gnutls_dh_params_deinit(mc.dh_params);
 
575
  gnutls_dh_params_deinit(mc->dh_params);
552
576
  return -1;
553
577
}
554
578
 
555
 
static int init_gnutls_session(gnutls_session_t *session){
 
579
__attribute__((nonnull, warn_unused_result))
 
580
static int init_gnutls_session(gnutls_session_t *session,
 
581
                               mandos_context *mc){
556
582
  int ret;
557
583
  /* GnuTLS session creation */
558
584
  do {
570
596
  {
571
597
    const char *err;
572
598
    do {
573
 
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
599
      ret = gnutls_priority_set_direct(*session, mc->priority, &err);
574
600
      if(quit_now){
575
601
        gnutls_deinit(*session);
576
602
        return -1;
587
613
  
588
614
  do {
589
615
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
590
 
                                 mc.cred);
 
616
                                 mc->cred);
591
617
    if(quit_now){
592
618
      gnutls_deinit(*session);
593
619
      return -1;
603
629
  /* ignore client certificate if any. */
604
630
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
605
631
  
606
 
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
 
632
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
607
633
  
608
634
  return 0;
609
635
}
613
639
                      __attribute__((unused)) const char *txt){}
614
640
 
615
641
/* Called when a Mandos server is found */
616
 
static int start_mandos_communication(const char *ip, uint16_t port,
 
642
__attribute__((nonnull, warn_unused_result))
 
643
static int start_mandos_communication(const char *ip, in_port_t port,
617
644
                                      AvahiIfIndex if_index,
618
 
                                      int af){
 
645
                                      int af, mandos_context *mc){
619
646
  int ret, tcp_sd = -1;
620
647
  ssize_t sret;
621
 
  union {
622
 
    struct sockaddr_in in;
623
 
    struct sockaddr_in6 in6;
624
 
  } to;
 
648
  struct sockaddr_storage to;
625
649
  char *buffer = NULL;
626
650
  char *decrypted_buffer = NULL;
627
651
  size_t buffer_length = 0;
651
675
    return -1;
652
676
  }
653
677
  
654
 
  ret = init_gnutls_session(&session);
 
678
  /* If the interface is specified and we have a list of interfaces */
 
679
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
 
680
    /* Check if the interface is one of the interfaces we are using */
 
681
    bool match = false;
 
682
    {
 
683
      char *interface = NULL;
 
684
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
685
                                 interface))){
 
686
        if(if_nametoindex(interface) == (unsigned int)if_index){
 
687
          match = true;
 
688
          break;
 
689
        }
 
690
      }
 
691
    }
 
692
    if(not match){
 
693
      /* This interface does not match any in the list, so we don't
 
694
         connect to the server */
 
695
      if(debug){
 
696
        char interface[IF_NAMESIZE];
 
697
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
698
          perror_plus("if_indextoname");
 
699
        } else {
 
700
          fprintf_plus(stderr, "Skipping server on non-used interface"
 
701
                       " \"%s\"\n",
 
702
                       if_indextoname((unsigned int)if_index,
 
703
                                      interface));
 
704
        }
 
705
      }
 
706
      return -1;
 
707
    }
 
708
  }
 
709
  
 
710
  ret = init_gnutls_session(&session, mc);
655
711
  if(ret != 0){
656
712
    return -1;
657
713
  }
658
714
  
659
715
  if(debug){
660
716
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
661
 
                 PRIu16 "\n", ip, port);
 
717
                 PRIuMAX "\n", ip, (uintmax_t)port);
662
718
  }
663
719
  
664
720
  tcp_sd = socket(pf, SOCK_STREAM, 0);
676
732
  
677
733
  memset(&to, 0, sizeof(to));
678
734
  if(af == AF_INET6){
679
 
    to.in6.sin6_family = (sa_family_t)af;
680
 
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
735
    ((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
 
736
    ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
681
737
  } else {                      /* IPv4 */
682
 
    to.in.sin_family = (sa_family_t)af;
683
 
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
738
    ((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
 
739
    ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
684
740
  }
685
741
  if(ret < 0 ){
686
742
    int e = errno;
695
751
    goto mandos_end;
696
752
  }
697
753
  if(af == AF_INET6){
698
 
    to.in6.sin6_port = htons(port); /* Spurious warnings from
699
 
                                       -Wconversion and
700
 
                                       -Wunreachable-code */
701
 
    
702
 
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
703
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
704
 
                                -Wunreachable-code*/
 
754
    ((struct sockaddr_in6 *)&to)->sin6_port = htons(port);
 
755
    if(IN6_IS_ADDR_LINKLOCAL
 
756
       (&((struct sockaddr_in6 *)&to)->sin6_addr)){
705
757
      if(if_index == AVAHI_IF_UNSPEC){
706
758
        fprintf_plus(stderr, "An IPv6 link-local address is"
707
759
                     " incomplete without a network interface\n");
709
761
        goto mandos_end;
710
762
      }
711
763
      /* Set the network interface number as scope */
712
 
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
764
      ((struct sockaddr_in6 *)&to)->sin6_scope_id = (uint32_t)if_index;
713
765
    }
714
766
  } else {
715
 
    to.in.sin_port = htons(port); /* Spurious warnings from
716
 
                                     -Wconversion and
717
 
                                     -Wunreachable-code */
 
767
    ((struct sockaddr_in *)&to)->sin_port = htons(port);
718
768
  }
719
769
  
720
770
  if(quit_now){
728
778
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
729
779
        perror_plus("if_indextoname");
730
780
      } else {
731
 
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
732
 
                     "\n", ip, interface, port);
 
781
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
 
782
                     "\n", ip, interface, (uintmax_t)port);
733
783
      }
734
784
    } else {
735
 
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
736
 
                   ip, port);
 
785
      fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
 
786
                   ip, (uintmax_t)port);
737
787
    }
738
788
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
739
789
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
740
 
    const char *pcret;
741
790
    if(af == AF_INET6){
742
 
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
743
 
                        sizeof(addrstr));
 
791
      ret = getnameinfo((struct sockaddr *)&to,
 
792
                        sizeof(struct sockaddr_in6),
 
793
                        addrstr, sizeof(addrstr), NULL, 0,
 
794
                        NI_NUMERICHOST);
744
795
    } else {
745
 
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
746
 
                        sizeof(addrstr));
 
796
      ret = getnameinfo((struct sockaddr *)&to,
 
797
                        sizeof(struct sockaddr_in),
 
798
                        addrstr, sizeof(addrstr), NULL, 0,
 
799
                        NI_NUMERICHOST);
747
800
    }
748
 
    if(pcret == NULL){
749
 
      perror_plus("inet_ntop");
750
 
    } else {
751
 
      if(strcmp(addrstr, ip) != 0){
752
 
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
753
 
      }
 
801
    if(ret == EAI_SYSTEM){
 
802
      perror_plus("getnameinfo");
 
803
    } else if(ret != 0) {
 
804
      fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
 
805
    } else if(strcmp(addrstr, ip) != 0){
 
806
      fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
754
807
    }
755
808
  }
756
809
  
760
813
  }
761
814
  
762
815
  if(af == AF_INET6){
763
 
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
816
    ret = connect(tcp_sd, (struct sockaddr *)&to,
 
817
                  sizeof(struct sockaddr_in6));
764
818
  } else {
765
 
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
819
    ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
 
820
                  sizeof(struct sockaddr_in));
766
821
  }
767
822
  if(ret < 0){
768
 
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
823
    if((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
769
824
      int e = errno;
770
825
      perror_plus("connect");
771
826
      errno = e;
817
872
    goto mandos_end;
818
873
  }
819
874
  
820
 
  /* Spurious warning from -Wint-to-pointer-cast */
821
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
875
  /* This casting via intptr_t is to eliminate warning about casting
 
876
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
877
     function "set-session-transport-fd!" does it. */
 
878
  gnutls_transport_set_ptr(session,
 
879
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
822
880
  
823
881
  if(quit_now){
824
882
    errno = EINTR;
929
987
  if(buffer_length > 0){
930
988
    ssize_t decrypted_buffer_size;
931
989
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
932
 
                                               &decrypted_buffer);
 
990
                                               &decrypted_buffer, mc);
933
991
    if(decrypted_buffer_size >= 0){
934
992
      
935
993
      written = 0;
983
1041
  return retval;
984
1042
}
985
1043
 
 
1044
__attribute__((nonnull))
986
1045
static void resolve_callback(AvahiSServiceResolver *r,
987
1046
                             AvahiIfIndex interface,
988
1047
                             AvahiProtocol proto,
996
1055
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
997
1056
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
998
1057
                             flags,
999
 
                             AVAHI_GCC_UNUSED void* userdata){
1000
 
  assert(r);
 
1058
                             void *mc){
 
1059
  if(r == NULL){
 
1060
    return;
 
1061
  }
1001
1062
  
1002
1063
  /* Called whenever a service has been resolved successfully or
1003
1064
     timed out */
1012
1073
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
1013
1074
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
1014
1075
                 domain,
1015
 
                 avahi_strerror(avahi_server_errno(mc.server)));
 
1076
                 avahi_strerror(avahi_server_errno
 
1077
                                (((mandos_context*)mc)->server)));
1016
1078
    break;
1017
1079
    
1018
1080
  case AVAHI_RESOLVER_FOUND:
1024
1086
                     PRIdMAX ") on port %" PRIu16 "\n", name,
1025
1087
                     host_name, ip, (intmax_t)interface, port);
1026
1088
      }
1027
 
      int ret = start_mandos_communication(ip, port, interface,
1028
 
                                           avahi_proto_to_af(proto));
 
1089
      int ret = start_mandos_communication(ip, (in_port_t)port,
 
1090
                                           interface,
 
1091
                                           avahi_proto_to_af(proto),
 
1092
                                           mc);
1029
1093
      if(ret == 0){
1030
 
        avahi_simple_poll_quit(mc.simple_poll);
 
1094
        avahi_simple_poll_quit(simple_poll);
1031
1095
      } else {
1032
 
        ret = add_server(ip, port, interface,
1033
 
                         avahi_proto_to_af(proto));
 
1096
        if(not add_server(ip, (in_port_t)port, interface,
 
1097
                          avahi_proto_to_af(proto),
 
1098
                          &((mandos_context*)mc)->current_server)){
 
1099
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1100
                       " list\n", name);
 
1101
        }
1034
1102
      }
1035
1103
    }
1036
1104
  }
1046
1114
                            const char *domain,
1047
1115
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
1048
1116
                            flags,
1049
 
                            AVAHI_GCC_UNUSED void* userdata){
1050
 
  assert(b);
 
1117
                            void *mc){
 
1118
  if(b == NULL){
 
1119
    return;
 
1120
  }
1051
1121
  
1052
1122
  /* Called whenever a new services becomes available on the LAN or
1053
1123
     is removed from the LAN */
1061
1131
  case AVAHI_BROWSER_FAILURE:
1062
1132
    
1063
1133
    fprintf_plus(stderr, "(Avahi browser) %s\n",
1064
 
                 avahi_strerror(avahi_server_errno(mc.server)));
1065
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1134
                 avahi_strerror(avahi_server_errno
 
1135
                                (((mandos_context*)mc)->server)));
 
1136
    avahi_simple_poll_quit(simple_poll);
1066
1137
    return;
1067
1138
    
1068
1139
  case AVAHI_BROWSER_NEW:
1071
1142
       the callback function is called the Avahi server will free the
1072
1143
       resolver for us. */
1073
1144
    
1074
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1075
 
                                    name, type, domain, protocol, 0,
1076
 
                                    resolve_callback, NULL) == NULL)
 
1145
    if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
 
1146
                                    interface, protocol, name, type,
 
1147
                                    domain, protocol, 0,
 
1148
                                    resolve_callback, mc) == NULL)
1077
1149
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1078
1150
                   " %s\n", name,
1079
 
                   avahi_strerror(avahi_server_errno(mc.server)));
 
1151
                   avahi_strerror(avahi_server_errno
 
1152
                                  (((mandos_context*)mc)->server)));
1080
1153
    break;
1081
1154
    
1082
1155
  case AVAHI_BROWSER_REMOVE:
1101
1174
  signal_received = sig;
1102
1175
  int old_errno = errno;
1103
1176
  /* set main loop to exit */
1104
 
  if(mc.simple_poll != NULL){
1105
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1177
  if(simple_poll != NULL){
 
1178
    avahi_simple_poll_quit(simple_poll);
1106
1179
  }
1107
1180
  errno = old_errno;
1108
1181
}
1109
1182
 
 
1183
__attribute__((nonnull, warn_unused_result))
1110
1184
bool get_flags(const char *ifname, struct ifreq *ifr){
1111
1185
  int ret;
 
1186
  error_t ret_errno;
1112
1187
  
1113
1188
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1114
1189
  if(s < 0){
 
1190
    ret_errno = errno;
1115
1191
    perror_plus("socket");
 
1192
    errno = ret_errno;
1116
1193
    return false;
1117
1194
  }
1118
1195
  strcpy(ifr->ifr_name, ifname);
1119
1196
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1120
1197
  if(ret == -1){
1121
1198
    if(debug){
 
1199
      ret_errno = errno;
1122
1200
      perror_plus("ioctl SIOCGIFFLAGS");
 
1201
      errno = ret_errno;
1123
1202
    }
1124
1203
    return false;
1125
1204
  }
1126
1205
  return true;
1127
1206
}
1128
1207
 
 
1208
__attribute__((nonnull, warn_unused_result))
1129
1209
bool good_flags(const char *ifname, const struct ifreq *ifr){
1130
1210
  
1131
1211
  /* Reject the loopback device */
1173
1253
 * corresponds to an acceptable network device.
1174
1254
 * (This function is passed to scandir(3) as a filter function.)
1175
1255
 */
 
1256
__attribute__((nonnull, warn_unused_result))
1176
1257
int good_interface(const struct dirent *if_entry){
1177
1258
  if(if_entry->d_name[0] == '.'){
1178
1259
    return 0;
1194
1275
}
1195
1276
 
1196
1277
/* 
1197
 
 * This function determines if a directory entry in /sys/class/net
1198
 
 * corresponds to an acceptable network device which is up.
1199
 
 * (This function is passed to scandir(3) as a filter function.)
1200
 
 */
1201
 
int up_interface(const struct dirent *if_entry){
1202
 
  if(if_entry->d_name[0] == '.'){
1203
 
    return 0;
1204
 
  }
1205
 
  
1206
 
  struct ifreq ifr;
1207
 
  if(not get_flags(if_entry->d_name, &ifr)){
1208
 
    if(debug){
1209
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1210
 
                   "\"%s\"\n", if_entry->d_name);
1211
 
    }
1212
 
    return 0;
1213
 
  }
1214
 
  
1215
 
  /* Reject down interfaces */
1216
 
  if(not (ifr.ifr_flags & IFF_UP)){
1217
 
    if(debug){
1218
 
      fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
1219
 
                   if_entry->d_name);
1220
 
    }
1221
 
    return 0;
1222
 
  }
1223
 
  
1224
 
  /* Reject non-running interfaces */
1225
 
  if(not (ifr.ifr_flags & IFF_RUNNING)){
1226
 
    if(debug){
1227
 
      fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
1228
 
                   if_entry->d_name);
1229
 
    }
1230
 
    return 0;
1231
 
  }
1232
 
  
1233
 
  if(not good_flags(if_entry->d_name, &ifr)){
1234
 
    return 0;
1235
 
  }
1236
 
  return 1;
1237
 
}
1238
 
 
 
1278
 * This function determines if a network interface is up.
 
1279
 */
 
1280
__attribute__((nonnull, warn_unused_result))
 
1281
bool interface_is_up(const char *interface){
 
1282
  struct ifreq ifr;
 
1283
  if(not get_flags(interface, &ifr)){
 
1284
    if(debug){
 
1285
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1286
                   "\"%s\"\n", interface);
 
1287
    }
 
1288
    return false;
 
1289
  }
 
1290
  
 
1291
  return (bool)(ifr.ifr_flags & IFF_UP);
 
1292
}
 
1293
 
 
1294
/* 
 
1295
 * This function determines if a network interface is running
 
1296
 */
 
1297
__attribute__((nonnull, warn_unused_result))
 
1298
bool interface_is_running(const char *interface){
 
1299
  struct ifreq ifr;
 
1300
  if(not get_flags(interface, &ifr)){
 
1301
    if(debug){
 
1302
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1303
                   "\"%s\"\n", interface);
 
1304
    }
 
1305
    return false;
 
1306
  }
 
1307
  
 
1308
  return (bool)(ifr.ifr_flags & IFF_RUNNING);
 
1309
}
 
1310
 
 
1311
__attribute__((nonnull, pure, warn_unused_result))
1239
1312
int notdotentries(const struct dirent *direntry){
1240
1313
  /* Skip "." and ".." */
1241
1314
  if(direntry->d_name[0] == '.'
1248
1321
}
1249
1322
 
1250
1323
/* Is this directory entry a runnable program? */
 
1324
__attribute__((nonnull, warn_unused_result))
1251
1325
int runnable_hook(const struct dirent *direntry){
1252
1326
  int ret;
1253
1327
  size_t sret;
1308
1382
  return 1;
1309
1383
}
1310
1384
 
1311
 
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
 
1385
__attribute__((nonnull, warn_unused_result))
 
1386
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
 
1387
                            mandos_context *mc){
1312
1388
  int ret;
1313
1389
  struct timespec now;
1314
1390
  struct timespec waited_time;
1315
1391
  intmax_t block_time;
1316
1392
  
1317
1393
  while(true){
1318
 
    if(mc.current_server == NULL){
1319
 
      if (debug){
 
1394
    if(mc->current_server == NULL){
 
1395
      if(debug){
1320
1396
        fprintf_plus(stderr, "Wait until first server is found."
1321
1397
                     " No timeout!\n");
1322
1398
      }
1323
1399
      ret = avahi_simple_poll_iterate(s, -1);
1324
1400
    } else {
1325
 
      if (debug){
 
1401
      if(debug){
1326
1402
        fprintf_plus(stderr, "Check current_server if we should run"
1327
1403
                     " it, or wait\n");
1328
1404
      }
1335
1411
      /* Calculating in ms how long time between now and server
1336
1412
         who we visted longest time ago. Now - last seen.  */
1337
1413
      waited_time.tv_sec = (now.tv_sec
1338
 
                            - mc.current_server->last_seen.tv_sec);
 
1414
                            - mc->current_server->last_seen.tv_sec);
1339
1415
      waited_time.tv_nsec = (now.tv_nsec
1340
 
                             - mc.current_server->last_seen.tv_nsec);
 
1416
                             - mc->current_server->last_seen.tv_nsec);
1341
1417
      /* total time is 10s/10,000ms.
1342
1418
         Converting to s from ms by dividing by 1,000,
1343
1419
         and ns to ms by dividing by 1,000,000. */
1345
1421
                     - ((intmax_t)waited_time.tv_sec * 1000))
1346
1422
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
1347
1423
      
1348
 
      if (debug){
 
1424
      if(debug){
1349
1425
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
1350
1426
                     block_time);
1351
1427
      }
1352
1428
      
1353
1429
      if(block_time <= 0){
1354
 
        ret = start_mandos_communication(mc.current_server->ip,
1355
 
                                         mc.current_server->port,
1356
 
                                         mc.current_server->if_index,
1357
 
                                         mc.current_server->af);
 
1430
        ret = start_mandos_communication(mc->current_server->ip,
 
1431
                                         mc->current_server->port,
 
1432
                                         mc->current_server->if_index,
 
1433
                                         mc->current_server->af, mc);
1358
1434
        if(ret == 0){
1359
 
          avahi_simple_poll_quit(mc.simple_poll);
 
1435
          avahi_simple_poll_quit(s);
1360
1436
          return 0;
1361
1437
        }
1362
1438
        ret = clock_gettime(CLOCK_MONOTONIC,
1363
 
                            &mc.current_server->last_seen);
 
1439
                            &mc->current_server->last_seen);
1364
1440
        if(ret == -1){
1365
1441
          perror_plus("clock_gettime");
1366
1442
          return -1;
1367
1443
        }
1368
 
        mc.current_server = mc.current_server->next;
 
1444
        mc->current_server = mc->current_server->next;
1369
1445
        block_time = 0;         /* Call avahi to find new Mandos
1370
1446
                                   servers, but don't block */
1371
1447
      }
1373
1449
      ret = avahi_simple_poll_iterate(s, (int)block_time);
1374
1450
    }
1375
1451
    if(ret != 0){
1376
 
      if (ret > 0 or errno != EINTR){
 
1452
      if(ret > 0 or errno != EINTR){
1377
1453
        return (ret != 1) ? ret : 0;
1378
1454
      }
1379
1455
    }
1380
1456
  }
1381
1457
}
1382
1458
 
1383
 
bool run_network_hooks(const char *mode, const char *interface,
 
1459
/* Set effective uid to 0, return errno */
 
1460
__attribute__((warn_unused_result))
 
1461
error_t raise_privileges(void){
 
1462
  error_t old_errno = errno;
 
1463
  error_t ret_errno = 0;
 
1464
  if(seteuid(0) == -1){
 
1465
    ret_errno = errno;
 
1466
    perror_plus("seteuid");
 
1467
  }
 
1468
  errno = old_errno;
 
1469
  return ret_errno;
 
1470
}
 
1471
 
 
1472
/* Set effective and real user ID to 0.  Return errno. */
 
1473
__attribute__((warn_unused_result))
 
1474
error_t raise_privileges_permanently(void){
 
1475
  error_t old_errno = errno;
 
1476
  error_t ret_errno = raise_privileges();
 
1477
  if(ret_errno != 0){
 
1478
    errno = old_errno;
 
1479
    return ret_errno;
 
1480
  }
 
1481
  if(setuid(0) == -1){
 
1482
    ret_errno = errno;
 
1483
    perror_plus("seteuid");
 
1484
  }
 
1485
  errno = old_errno;
 
1486
  return ret_errno;
 
1487
}
 
1488
 
 
1489
/* Set effective user ID to unprivileged saved user ID */
 
1490
__attribute__((warn_unused_result))
 
1491
error_t lower_privileges(void){
 
1492
  error_t old_errno = errno;
 
1493
  error_t ret_errno = 0;
 
1494
  if(seteuid(uid) == -1){
 
1495
    ret_errno = errno;
 
1496
    perror_plus("seteuid");
 
1497
  }
 
1498
  errno = old_errno;
 
1499
  return ret_errno;
 
1500
}
 
1501
 
 
1502
/* Lower privileges permanently */
 
1503
__attribute__((warn_unused_result))
 
1504
error_t lower_privileges_permanently(void){
 
1505
  error_t old_errno = errno;
 
1506
  error_t ret_errno = 0;
 
1507
  if(setuid(uid) == -1){
 
1508
    ret_errno = errno;
 
1509
    perror_plus("setuid");
 
1510
  }
 
1511
  errno = old_errno;
 
1512
  return ret_errno;
 
1513
}
 
1514
 
 
1515
__attribute__((nonnull))
 
1516
void run_network_hooks(const char *mode, const char *interface,
1384
1517
                       const float delay){
1385
1518
  struct dirent **direntries;
1386
 
  struct dirent *direntry;
1387
 
  int ret;
1388
1519
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1389
1520
                         alphasort);
1390
1521
  if(numhooks == -1){
1391
 
    perror_plus("scandir");
 
1522
    if(errno == ENOENT){
 
1523
      if(debug){
 
1524
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1525
                     " found\n", hookdir);
 
1526
      }
 
1527
    } else {
 
1528
      perror_plus("scandir");
 
1529
    }
1392
1530
  } else {
 
1531
    struct dirent *direntry;
 
1532
    int ret;
1393
1533
    int devnull = open("/dev/null", O_RDONLY);
1394
1534
    for(int i = 0; i < numhooks; i++){
1395
1535
      direntry = direntries[i];
1406
1546
      pid_t hook_pid = fork();
1407
1547
      if(hook_pid == 0){
1408
1548
        /* Child */
1409
 
        dup2(devnull, STDIN_FILENO);
1410
 
        close(devnull);
1411
 
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
1549
        /* Raise privileges */
 
1550
        if(raise_privileges_permanently() != 0){
 
1551
          perror_plus("Failed to raise privileges");
 
1552
          _exit(EX_NOPERM);
 
1553
        }
 
1554
        /* Set group */
 
1555
        errno = 0;
 
1556
        ret = setgid(0);
 
1557
        if(ret == -1){
 
1558
          perror_plus("setgid");
 
1559
          _exit(EX_NOPERM);
 
1560
        }
 
1561
        /* Reset supplementary groups */
 
1562
        errno = 0;
 
1563
        ret = setgroups(0, NULL);
 
1564
        if(ret == -1){
 
1565
          perror_plus("setgroups");
 
1566
          _exit(EX_NOPERM);
 
1567
        }
 
1568
        ret = dup2(devnull, STDIN_FILENO);
 
1569
        if(ret == -1){
 
1570
          perror_plus("dup2(devnull, STDIN_FILENO)");
 
1571
          _exit(EX_OSERR);
 
1572
        }
 
1573
        ret = close(devnull);
 
1574
        if(ret == -1){
 
1575
          perror_plus("close");
 
1576
          _exit(EX_OSERR);
 
1577
        }
 
1578
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1579
        if(ret == -1){
 
1580
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1581
          _exit(EX_OSERR);
 
1582
        }
1412
1583
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1413
1584
        if(ret == -1){
1414
1585
          perror_plus("setenv");
1419
1590
          perror_plus("setenv");
1420
1591
          _exit(EX_OSERR);
1421
1592
        }
1422
 
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1593
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1423
1594
        if(ret == -1){
1424
1595
          perror_plus("setenv");
1425
1596
          _exit(EX_OSERR);
1430
1601
          _exit(EX_OSERR);
1431
1602
        }
1432
1603
        char *delaystring;
1433
 
        ret = asprintf(&delaystring, "%f", delay);
 
1604
        ret = asprintf(&delaystring, "%f", (double)delay);
1434
1605
        if(ret == -1){
1435
1606
          perror_plus("asprintf");
1436
1607
          _exit(EX_OSERR);
1442
1613
          _exit(EX_OSERR);
1443
1614
        }
1444
1615
        free(delaystring);
1445
 
        ret = execl(fullname, direntry->d_name, mode, NULL);
1446
 
        perror_plus("execl");
 
1616
        if(connect_to != NULL){
 
1617
          ret = setenv("CONNECT", connect_to, 1);
 
1618
          if(ret == -1){
 
1619
            perror_plus("setenv");
 
1620
            _exit(EX_OSERR);
 
1621
          }
 
1622
        }
 
1623
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1624
          perror_plus("execl");
 
1625
          _exit(EXIT_FAILURE);
 
1626
        }
1447
1627
      } else {
1448
1628
        int status;
1449
1629
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1480
1660
    }
1481
1661
    close(devnull);
1482
1662
  }
1483
 
  return true;
 
1663
}
 
1664
 
 
1665
__attribute__((nonnull, warn_unused_result))
 
1666
error_t bring_up_interface(const char *const interface,
 
1667
                           const float delay){
 
1668
  error_t old_errno = errno;
 
1669
  int ret;
 
1670
  struct ifreq network;
 
1671
  unsigned int if_index = if_nametoindex(interface);
 
1672
  if(if_index == 0){
 
1673
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1674
    errno = old_errno;
 
1675
    return ENXIO;
 
1676
  }
 
1677
  
 
1678
  if(quit_now){
 
1679
    errno = old_errno;
 
1680
    return EINTR;
 
1681
  }
 
1682
  
 
1683
  if(not interface_is_up(interface)){
 
1684
    error_t ret_errno = 0, ioctl_errno = 0;
 
1685
    if(not get_flags(interface, &network)){
 
1686
      ret_errno = errno;
 
1687
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1688
                   "\"%s\"\n", interface);
 
1689
      errno = old_errno;
 
1690
      return ret_errno;
 
1691
    }
 
1692
    network.ifr_flags |= IFF_UP; /* set flag */
 
1693
    
 
1694
    int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1695
    if(sd == -1){
 
1696
      ret_errno = errno;
 
1697
      perror_plus("socket");
 
1698
      errno = old_errno;
 
1699
      return ret_errno;
 
1700
    }
 
1701
    
 
1702
    if(quit_now){
 
1703
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1704
      if(ret == -1){
 
1705
        perror_plus("close");
 
1706
      }
 
1707
      errno = old_errno;
 
1708
      return EINTR;
 
1709
    }
 
1710
    
 
1711
    if(debug){
 
1712
      fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
 
1713
                   interface);
 
1714
    }
 
1715
    
 
1716
    /* Raise privileges */
 
1717
    ret_errno = raise_privileges();
 
1718
    bool restore_loglevel = false;
 
1719
    if(ret_errno != 0){
 
1720
      perror_plus("Failed to raise privileges");
 
1721
    }
 
1722
#ifdef __linux__
 
1723
    int ret_linux;
 
1724
    if(ret_errno == 0){
 
1725
      /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1726
         messages about the network interface to mess up the prompt */
 
1727
      ret_linux = klogctl(8, NULL, 5);
 
1728
      if(ret_linux == -1){
 
1729
        perror_plus("klogctl");
 
1730
      } else {
 
1731
        restore_loglevel = true;
 
1732
      }
 
1733
    }
 
1734
#endif  /* __linux__ */
 
1735
    int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1736
    ioctl_errno = errno;
 
1737
#ifdef __linux__
 
1738
    if(restore_loglevel){
 
1739
      ret_linux = klogctl(7, NULL, 0);
 
1740
      if(ret_linux == -1){
 
1741
        perror_plus("klogctl");
 
1742
      }
 
1743
    }
 
1744
#endif  /* __linux__ */
 
1745
    
 
1746
    /* If raise_privileges() succeeded above */
 
1747
    if(ret_errno == 0){
 
1748
      /* Lower privileges */
 
1749
      ret_errno = lower_privileges();
 
1750
      if(ret_errno != 0){
 
1751
        errno = ret_errno;
 
1752
        perror_plus("Failed to lower privileges");
 
1753
      }
 
1754
    }
 
1755
    
 
1756
    /* Close the socket */
 
1757
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1758
    if(ret == -1){
 
1759
      perror_plus("close");
 
1760
    }
 
1761
    
 
1762
    if(ret_setflags == -1){
 
1763
      errno = ioctl_errno;
 
1764
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1765
      errno = old_errno;
 
1766
      return ioctl_errno;
 
1767
    }
 
1768
  } else if(debug){
 
1769
    fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
 
1770
                 interface);
 
1771
  }
 
1772
  
 
1773
  /* Sleep checking until interface is running.
 
1774
     Check every 0.25s, up to total time of delay */
 
1775
  for(int i=0; i < delay * 4; i++){
 
1776
    if(interface_is_running(interface)){
 
1777
      break;
 
1778
    }
 
1779
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1780
    ret = nanosleep(&sleeptime, NULL);
 
1781
    if(ret == -1 and errno != EINTR){
 
1782
      perror_plus("nanosleep");
 
1783
    }
 
1784
  }
 
1785
  
 
1786
  errno = old_errno;
 
1787
  return 0;
 
1788
}
 
1789
 
 
1790
__attribute__((nonnull, warn_unused_result))
 
1791
error_t take_down_interface(const char *const interface){
 
1792
  error_t old_errno = errno;
 
1793
  struct ifreq network;
 
1794
  unsigned int if_index = if_nametoindex(interface);
 
1795
  if(if_index == 0){
 
1796
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1797
    errno = old_errno;
 
1798
    return ENXIO;
 
1799
  }
 
1800
  if(interface_is_up(interface)){
 
1801
    error_t ret_errno = 0, ioctl_errno = 0;
 
1802
    if(not get_flags(interface, &network) and debug){
 
1803
      ret_errno = errno;
 
1804
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1805
                   "\"%s\"\n", interface);
 
1806
      errno = old_errno;
 
1807
      return ret_errno;
 
1808
    }
 
1809
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1810
    
 
1811
    int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1812
    if(sd == -1){
 
1813
      ret_errno = errno;
 
1814
      perror_plus("socket");
 
1815
      errno = old_errno;
 
1816
      return ret_errno;
 
1817
    }
 
1818
    
 
1819
    if(debug){
 
1820
      fprintf_plus(stderr, "Taking down interface \"%s\"\n",
 
1821
                   interface);
 
1822
    }
 
1823
    
 
1824
    /* Raise privileges */
 
1825
    ret_errno = raise_privileges();
 
1826
    if(ret_errno != 0){
 
1827
      perror_plus("Failed to raise privileges");
 
1828
    }
 
1829
    int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1830
    ioctl_errno = errno;
 
1831
    
 
1832
    /* If raise_privileges() succeeded above */
 
1833
    if(ret_errno == 0){
 
1834
      /* Lower privileges */
 
1835
      ret_errno = lower_privileges();
 
1836
      if(ret_errno != 0){
 
1837
        errno = ret_errno;
 
1838
        perror_plus("Failed to lower privileges");
 
1839
      }
 
1840
    }
 
1841
    
 
1842
    /* Close the socket */
 
1843
    int ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1844
    if(ret == -1){
 
1845
      perror_plus("close");
 
1846
    }
 
1847
    
 
1848
    if(ret_setflags == -1){
 
1849
      errno = ioctl_errno;
 
1850
      perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
1851
      errno = old_errno;
 
1852
      return ioctl_errno;
 
1853
    }
 
1854
  } else if(debug){
 
1855
    fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
 
1856
                 interface);
 
1857
  }
 
1858
  
 
1859
  errno = old_errno;
 
1860
  return 0;
1484
1861
}
1485
1862
 
1486
1863
int main(int argc, char *argv[]){
 
1864
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
 
1865
                        .priority = "SECURE256:!CTYPE-X.509:"
 
1866
                        "+CTYPE-OPENPGP", .current_server = NULL,
 
1867
                        .interfaces = NULL, .interfaces_size = 0 };
1487
1868
  AvahiSServiceBrowser *sb = NULL;
1488
 
  int error;
 
1869
  error_t ret_errno;
1489
1870
  int ret;
1490
1871
  intmax_t tmpmax;
1491
1872
  char *tmp;
1492
1873
  int exitcode = EXIT_SUCCESS;
1493
 
  const char *interface = "";
1494
 
  struct ifreq network;
1495
 
  int sd = -1;
1496
 
  bool take_down_interface = false;
1497
 
  uid_t uid;
1498
 
  gid_t gid;
1499
 
  char tempdir[] = "/tmp/mandosXXXXXX";
1500
 
  bool tempdir_created = false;
 
1874
  char *interfaces_to_take_down = NULL;
 
1875
  size_t interfaces_to_take_down_size = 0;
 
1876
  char run_tempdir[] = "/run/tmp/mandosXXXXXX";
 
1877
  char old_tempdir[] = "/tmp/mandosXXXXXX";
 
1878
  char *tempdir = NULL;
1501
1879
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1502
1880
  const char *seckey = PATHDIR "/" SECKEY;
1503
1881
  const char *pubkey = PATHDIR "/" PUBKEY;
 
1882
  char *interfaces_hooks = NULL;
1504
1883
  
1505
1884
  bool gnutls_initialized = false;
1506
1885
  bool gpgme_initialized = false;
1568
1947
        .group = 2 },
1569
1948
      { .name = "retry", .key = 132,
1570
1949
        .arg = "SECONDS",
1571
 
        .doc = "Retry interval used when denied by the mandos server",
 
1950
        .doc = "Retry interval used when denied by the Mandos server",
1572
1951
        .group = 2 },
1573
1952
      { .name = "network-hook-dir", .key = 133,
1574
1953
        .arg = "DIR",
1597
1976
        connect_to = arg;
1598
1977
        break;
1599
1978
      case 'i':                 /* --interface */
1600
 
        interface = arg;
 
1979
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
 
1980
                                 arg, (int)',');
 
1981
        if(ret_errno != 0){
 
1982
          argp_error(state, "%s", strerror(ret_errno));
 
1983
        }
1601
1984
        break;
1602
1985
      case 's':                 /* --seckey */
1603
1986
        seckey = arg;
1646
2029
        argp_state_help(state, state->out_stream,
1647
2030
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1648
2031
      case 'V':                 /* --version */
1649
 
        fprintf_plus(state->out_stream,
1650
 
                     "Mandos plugin mandos-client: ");
1651
2032
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1652
2033
        exit(argp_err_exit_status);
1653
2034
        break;
1678
2059
    }
1679
2060
  }
1680
2061
    
1681
 
  if(getuid() == 0){
 
2062
  {
1682
2063
    /* Work around Debian bug #633582:
1683
2064
       <http://bugs.debian.org/633582> */
1684
 
    struct stat st;
1685
 
    
1686
 
    /* Re-raise priviliges */
1687
 
    errno = 0;
1688
 
    ret = seteuid(0);
1689
 
    if(ret == -1){
1690
 
      perror_plus("seteuid");
1691
 
    }
1692
 
    
1693
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1694
 
      int seckey_fd = open(seckey, O_RDONLY);
1695
 
      if(seckey_fd == -1){
1696
 
        perror_plus("open");
1697
 
      } else {
1698
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1699
 
        if(ret == -1){
1700
 
          perror_plus("fstat");
1701
 
        } else {
1702
 
          if(S_ISREG(st.st_mode)
1703
 
             and st.st_uid == 0 and st.st_gid == 0){
1704
 
            ret = fchown(seckey_fd, uid, gid);
1705
 
            if(ret == -1){
1706
 
              perror_plus("fchown");
1707
 
            }
1708
 
          }
1709
 
        }
1710
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1711
 
      }
1712
 
    }
1713
 
    
1714
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1715
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1716
 
      if(pubkey_fd == -1){
1717
 
        perror_plus("open");
1718
 
      } else {
1719
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1720
 
        if(ret == -1){
1721
 
          perror_plus("fstat");
1722
 
        } else {
1723
 
          if(S_ISREG(st.st_mode)
1724
 
             and st.st_uid == 0 and st.st_gid == 0){
1725
 
            ret = fchown(pubkey_fd, uid, gid);
1726
 
            if(ret == -1){
1727
 
              perror_plus("fchown");
1728
 
            }
1729
 
          }
1730
 
        }
1731
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1732
 
      }
1733
 
    }
1734
 
    
1735
 
    /* Lower privileges */
1736
 
    errno = 0;
1737
 
    ret = seteuid(uid);
1738
 
    if(ret == -1){
1739
 
      perror_plus("seteuid");
 
2065
    
 
2066
    /* Re-raise privileges */
 
2067
    ret_errno = raise_privileges();
 
2068
    if(ret_errno != 0){
 
2069
      errno = ret_errno;
 
2070
      perror_plus("Failed to raise privileges");
 
2071
    } else {
 
2072
      struct stat st;
 
2073
      
 
2074
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
2075
        int seckey_fd = open(seckey, O_RDONLY);
 
2076
        if(seckey_fd == -1){
 
2077
          perror_plus("open");
 
2078
        } else {
 
2079
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
2080
          if(ret == -1){
 
2081
            perror_plus("fstat");
 
2082
          } else {
 
2083
            if(S_ISREG(st.st_mode)
 
2084
               and st.st_uid == 0 and st.st_gid == 0){
 
2085
              ret = fchown(seckey_fd, uid, gid);
 
2086
              if(ret == -1){
 
2087
                perror_plus("fchown");
 
2088
              }
 
2089
            }
 
2090
          }
 
2091
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
2092
        }
 
2093
      }
 
2094
    
 
2095
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
2096
        int pubkey_fd = open(pubkey, O_RDONLY);
 
2097
        if(pubkey_fd == -1){
 
2098
          perror_plus("open");
 
2099
        } else {
 
2100
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
2101
          if(ret == -1){
 
2102
            perror_plus("fstat");
 
2103
          } else {
 
2104
            if(S_ISREG(st.st_mode)
 
2105
               and st.st_uid == 0 and st.st_gid == 0){
 
2106
              ret = fchown(pubkey_fd, uid, gid);
 
2107
              if(ret == -1){
 
2108
                perror_plus("fchown");
 
2109
              }
 
2110
            }
 
2111
          }
 
2112
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
2113
        }
 
2114
      }
 
2115
    
 
2116
      /* Lower privileges */
 
2117
      ret_errno = lower_privileges();
 
2118
      if(ret_errno != 0){
 
2119
        errno = ret_errno;
 
2120
        perror_plus("Failed to lower privileges");
 
2121
      }
 
2122
    }
 
2123
  }
 
2124
  
 
2125
  /* Remove invalid interface names (except "none") */
 
2126
  {
 
2127
    char *interface = NULL;
 
2128
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2129
                                 interface))){
 
2130
      if(strcmp(interface, "none") != 0
 
2131
         and if_nametoindex(interface) == 0){
 
2132
        if(interface[0] != '\0'){
 
2133
          fprintf_plus(stderr, "Not using nonexisting interface"
 
2134
                       " \"%s\"\n", interface);
 
2135
        }
 
2136
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
 
2137
        interface = NULL;
 
2138
      }
1740
2139
    }
1741
2140
  }
1742
2141
  
1743
2142
  /* Run network hooks */
1744
2143
  {
1745
 
    if(getuid() == 0){
1746
 
      /* Re-raise priviliges */
1747
 
      errno = 0;
1748
 
      ret = seteuid(0);
1749
 
      if(ret == -1){
1750
 
        perror_plus("seteuid");
1751
 
      }
1752
 
    }
1753
 
    if(not run_network_hooks("start", interface, delay)){
1754
 
      goto end;
1755
 
    }
1756
 
    if(getuid() == 0){
1757
 
      /* Lower privileges */
1758
 
      errno = 0;
1759
 
      ret = seteuid(uid);
1760
 
      if(ret == -1){
1761
 
        perror_plus("seteuid");
1762
 
      }
1763
 
    }
 
2144
    if(mc.interfaces != NULL){
 
2145
      interfaces_hooks = malloc(mc.interfaces_size);
 
2146
      if(interfaces_hooks == NULL){
 
2147
        perror_plus("malloc");
 
2148
        goto end;
 
2149
      }
 
2150
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
 
2151
      argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
 
2152
    }
 
2153
    run_network_hooks("start", interfaces_hooks != NULL ?
 
2154
                      interfaces_hooks : "", delay);
1764
2155
  }
1765
2156
  
1766
2157
  if(not debug){
1767
2158
    avahi_set_log_function(empty_log);
1768
2159
  }
1769
2160
  
1770
 
  if(interface[0] == '\0'){
1771
 
    struct dirent **direntries;
1772
 
    /* First look for interfaces that are up */
1773
 
    ret = scandir(sys_class_net, &direntries, up_interface,
1774
 
                  alphasort);
1775
 
    if(ret == 0){
1776
 
      /* No up interfaces, look for any good interfaces */
1777
 
      free(direntries);
1778
 
      ret = scandir(sys_class_net, &direntries, good_interface,
1779
 
                    alphasort);
1780
 
    }
1781
 
    if(ret >= 1){
1782
 
      /* Pick the first interface returned */
1783
 
      interface = strdup(direntries[0]->d_name);
1784
 
      if(debug){
1785
 
        fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1786
 
      }
1787
 
      if(interface == NULL){
1788
 
        perror_plus("malloc");
1789
 
        free(direntries);
1790
 
        exitcode = EXIT_FAILURE;
1791
 
        goto end;
1792
 
      }
1793
 
      free(direntries);
1794
 
    } else {
1795
 
      free(direntries);
1796
 
      fprintf_plus(stderr, "Could not find a network interface\n");
1797
 
      exitcode = EXIT_FAILURE;
1798
 
      goto end;
1799
 
    }
1800
 
  }
1801
 
  
1802
2161
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1803
2162
     from the signal handler */
1804
2163
  /* Initialize the pseudo-RNG for Avahi */
1805
2164
  srand((unsigned int) time(NULL));
1806
 
  mc.simple_poll = avahi_simple_poll_new();
1807
 
  if(mc.simple_poll == NULL){
 
2165
  simple_poll = avahi_simple_poll_new();
 
2166
  if(simple_poll == NULL){
1808
2167
    fprintf_plus(stderr,
1809
2168
                 "Avahi: Failed to create simple poll object.\n");
1810
2169
    exitcode = EX_UNAVAILABLE;
1874
2233
    }
1875
2234
  }
1876
2235
  
1877
 
  /* If the interface is down, bring it up */
1878
 
  if(strcmp(interface, "none") != 0){
1879
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1880
 
    if(if_index == 0){
1881
 
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1882
 
      exitcode = EX_UNAVAILABLE;
1883
 
      goto end;
1884
 
    }
1885
 
    
1886
 
    if(quit_now){
1887
 
      goto end;
1888
 
    }
1889
 
    
1890
 
    /* Re-raise priviliges */
1891
 
    errno = 0;
1892
 
    ret = seteuid(0);
1893
 
    if(ret == -1){
1894
 
      perror_plus("seteuid");
1895
 
    }
1896
 
    
1897
 
#ifdef __linux__
1898
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1899
 
       messages about the network interface to mess up the prompt */
1900
 
    ret = klogctl(8, NULL, 5);
1901
 
    bool restore_loglevel = true;
1902
 
    if(ret == -1){
1903
 
      restore_loglevel = false;
1904
 
      perror_plus("klogctl");
1905
 
    }
1906
 
#endif  /* __linux__ */
1907
 
    
1908
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1909
 
    if(sd < 0){
1910
 
      perror_plus("socket");
1911
 
      exitcode = EX_OSERR;
1912
 
#ifdef __linux__
1913
 
      if(restore_loglevel){
1914
 
        ret = klogctl(7, NULL, 0);
1915
 
        if(ret == -1){
1916
 
          perror_plus("klogctl");
1917
 
        }
1918
 
      }
1919
 
#endif  /* __linux__ */
1920
 
      /* Lower privileges */
1921
 
      errno = 0;
1922
 
      ret = seteuid(uid);
1923
 
      if(ret == -1){
1924
 
        perror_plus("seteuid");
1925
 
      }
1926
 
      goto end;
1927
 
    }
1928
 
    strcpy(network.ifr_name, interface);
1929
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1930
 
    if(ret == -1){
1931
 
      perror_plus("ioctl SIOCGIFFLAGS");
1932
 
#ifdef __linux__
1933
 
      if(restore_loglevel){
1934
 
        ret = klogctl(7, NULL, 0);
1935
 
        if(ret == -1){
1936
 
          perror_plus("klogctl");
1937
 
        }
1938
 
      }
1939
 
#endif  /* __linux__ */
1940
 
      exitcode = EX_OSERR;
1941
 
      /* Lower privileges */
1942
 
      errno = 0;
1943
 
      ret = seteuid(uid);
1944
 
      if(ret == -1){
1945
 
        perror_plus("seteuid");
1946
 
      }
1947
 
      goto end;
1948
 
    }
1949
 
    if((network.ifr_flags & IFF_UP) == 0){
1950
 
      network.ifr_flags |= IFF_UP;
1951
 
      take_down_interface = true;
1952
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1953
 
      if(ret == -1){
1954
 
        take_down_interface = false;
1955
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1956
 
        exitcode = EX_OSERR;
1957
 
#ifdef __linux__
1958
 
        if(restore_loglevel){
1959
 
          ret = klogctl(7, NULL, 0);
1960
 
          if(ret == -1){
1961
 
            perror_plus("klogctl");
 
2236
  /* If no interfaces were specified, make a list */
 
2237
  if(mc.interfaces == NULL){
 
2238
    struct dirent **direntries;
 
2239
    /* Look for any good interfaces */
 
2240
    ret = scandir(sys_class_net, &direntries, good_interface,
 
2241
                  alphasort);
 
2242
    if(ret >= 1){
 
2243
      /* Add all found interfaces to interfaces list */
 
2244
      for(int i = 0; i < ret; ++i){
 
2245
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
 
2246
                             direntries[i]->d_name);
 
2247
        if(ret_errno != 0){
 
2248
          errno = ret_errno;
 
2249
          perror_plus("argz_add");
 
2250
          continue;
 
2251
        }
 
2252
        if(debug){
 
2253
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
 
2254
                       direntries[i]->d_name);
 
2255
        }
 
2256
      }
 
2257
      free(direntries);
 
2258
    } else {
 
2259
      free(direntries);
 
2260
      fprintf_plus(stderr, "Could not find a network interface\n");
 
2261
      exitcode = EXIT_FAILURE;
 
2262
      goto end;
 
2263
    }
 
2264
  }
 
2265
  
 
2266
  /* Bring up interfaces which are down, and remove any "none"s */
 
2267
  {
 
2268
    char *interface = NULL;
 
2269
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2270
                                 interface))){
 
2271
      /* If interface name is "none", stop bringing up interfaces.
 
2272
         Also remove all instances of "none" from the list */
 
2273
      if(strcmp(interface, "none") == 0){
 
2274
        argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2275
                    interface);
 
2276
        interface = NULL;
 
2277
        while((interface = argz_next(mc.interfaces,
 
2278
                                     mc.interfaces_size, interface))){
 
2279
          if(strcmp(interface, "none") == 0){
 
2280
            argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2281
                        interface);
 
2282
            interface = NULL;
1962
2283
          }
1963
2284
        }
1964
 
#endif  /* __linux__ */
1965
 
        /* Lower privileges */
1966
 
        errno = 0;
1967
 
        ret = seteuid(uid);
1968
 
        if(ret == -1){
1969
 
          perror_plus("seteuid");
1970
 
        }
1971
 
        goto end;
1972
 
      }
1973
 
    }
1974
 
    /* Sleep checking until interface is running.
1975
 
       Check every 0.25s, up to total time of delay */
1976
 
    for(int i=0; i < delay * 4; i++){
1977
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1978
 
      if(ret == -1){
1979
 
        perror_plus("ioctl SIOCGIFFLAGS");
1980
 
      } else if(network.ifr_flags & IFF_RUNNING){
1981
2285
        break;
1982
2286
      }
1983
 
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1984
 
      ret = nanosleep(&sleeptime, NULL);
1985
 
      if(ret == -1 and errno != EINTR){
1986
 
        perror_plus("nanosleep");
1987
 
      }
1988
 
    }
1989
 
    if(not take_down_interface){
1990
 
      /* We won't need the socket anymore */
1991
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1992
 
      if(ret == -1){
1993
 
        perror_plus("close");
1994
 
      }
1995
 
    }
1996
 
#ifdef __linux__
1997
 
    if(restore_loglevel){
1998
 
      /* Restores kernel loglevel to default */
1999
 
      ret = klogctl(7, NULL, 0);
2000
 
      if(ret == -1){
2001
 
        perror_plus("klogctl");
2002
 
      }
2003
 
    }
2004
 
#endif  /* __linux__ */
2005
 
    /* Lower privileges */
2006
 
    errno = 0;
2007
 
    /* Lower privileges */
2008
 
    ret = seteuid(uid);
2009
 
    if(ret == -1){
2010
 
      perror_plus("seteuid");
2011
 
    }
 
2287
      bool interface_was_up = interface_is_up(interface);
 
2288
      errno = bring_up_interface(interface, delay);
 
2289
      if(not interface_was_up){
 
2290
        if(errno != 0){
 
2291
          perror_plus("Failed to bring up interface");
 
2292
        } else {
 
2293
          errno = argz_add(&interfaces_to_take_down,
 
2294
                           &interfaces_to_take_down_size,
 
2295
                           interface);
 
2296
          if(errno != 0){
 
2297
            perror_plus("argz_add");
 
2298
          }
 
2299
        }
 
2300
      }
 
2301
    }
 
2302
    if(debug and (interfaces_to_take_down == NULL)){
 
2303
      fprintf_plus(stderr, "No interfaces were brought up\n");
 
2304
    }
 
2305
  }
 
2306
  
 
2307
  /* If we only got one interface, explicitly use only that one */
 
2308
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
 
2309
    if(debug){
 
2310
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2311
                   mc.interfaces);
 
2312
    }
 
2313
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2012
2314
  }
2013
2315
  
2014
2316
  if(quit_now){
2015
2317
    goto end;
2016
2318
  }
2017
2319
  
2018
 
  ret = init_gnutls_global(pubkey, seckey);
 
2320
  ret = init_gnutls_global(pubkey, seckey, &mc);
2019
2321
  if(ret == -1){
2020
2322
    fprintf_plus(stderr, "init_gnutls_global failed\n");
2021
2323
    exitcode = EX_UNAVAILABLE;
2028
2330
    goto end;
2029
2331
  }
2030
2332
  
2031
 
  if(mkdtemp(tempdir) == NULL){
 
2333
  /* Try /run/tmp before /tmp */
 
2334
  tempdir = mkdtemp(run_tempdir);
 
2335
  if(tempdir == NULL and errno == ENOENT){
 
2336
      if(debug){
 
2337
        fprintf_plus(stderr, "Tempdir %s did not work, trying %s\n",
 
2338
                     run_tempdir, old_tempdir);
 
2339
      }
 
2340
      tempdir = mkdtemp(old_tempdir);
 
2341
  }
 
2342
  if(tempdir == NULL){
2032
2343
    perror_plus("mkdtemp");
2033
2344
    goto end;
2034
2345
  }
2035
 
  tempdir_created = true;
2036
2346
  
2037
2347
  if(quit_now){
2038
2348
    goto end;
2039
2349
  }
2040
2350
  
2041
 
  if(not init_gpgme(pubkey, seckey, tempdir)){
 
2351
  if(not init_gpgme(pubkey, seckey, tempdir, &mc)){
2042
2352
    fprintf_plus(stderr, "init_gpgme failed\n");
2043
2353
    exitcode = EX_UNAVAILABLE;
2044
2354
    goto end;
2054
2364
    /* Connect directly, do not use Zeroconf */
2055
2365
    /* (Mainly meant for debugging) */
2056
2366
    char *address = strrchr(connect_to, ':');
 
2367
    
2057
2368
    if(address == NULL){
2058
2369
      fprintf_plus(stderr, "No colon in address\n");
2059
2370
      exitcode = EX_USAGE;
2064
2375
      goto end;
2065
2376
    }
2066
2377
    
2067
 
    uint16_t port;
 
2378
    in_port_t port;
2068
2379
    errno = 0;
2069
2380
    tmpmax = strtoimax(address+1, &tmp, 10);
2070
2381
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
2071
 
       or tmpmax != (uint16_t)tmpmax){
 
2382
       or tmpmax != (in_port_t)tmpmax){
2072
2383
      fprintf_plus(stderr, "Bad port number\n");
2073
2384
      exitcode = EX_USAGE;
2074
2385
      goto end;
2075
2386
    }
2076
 
  
 
2387
    
2077
2388
    if(quit_now){
2078
2389
      goto end;
2079
2390
    }
2080
2391
    
2081
 
    port = (uint16_t)tmpmax;
 
2392
    port = (in_port_t)tmpmax;
2082
2393
    *address = '\0';
2083
2394
    /* Colon in address indicates IPv6 */
2084
2395
    int af;
2100
2411
    }
2101
2412
    
2102
2413
    while(not quit_now){
2103
 
      ret = start_mandos_communication(address, port, if_index, af);
 
2414
      ret = start_mandos_communication(address, port, if_index, af,
 
2415
                                       &mc);
2104
2416
      if(quit_now or ret == 0){
2105
2417
        break;
2106
2418
      }
2108
2420
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2109
2421
                     (int)retry_interval);
2110
2422
      }
2111
 
      sleep((int)retry_interval);
 
2423
      sleep((unsigned int)retry_interval);
2112
2424
    }
2113
2425
    
2114
 
    if (not quit_now){
 
2426
    if(not quit_now){
2115
2427
      exitcode = EXIT_SUCCESS;
2116
2428
    }
2117
2429
    
2132
2444
    config.publish_domain = 0;
2133
2445
    
2134
2446
    /* Allocate a new server */
2135
 
    mc.server = avahi_server_new(avahi_simple_poll_get
2136
 
                                 (mc.simple_poll), &config, NULL,
2137
 
                                 NULL, &error);
 
2447
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
 
2448
                                 &config, NULL, NULL, &ret_errno);
2138
2449
    
2139
2450
    /* Free the Avahi configuration data */
2140
2451
    avahi_server_config_free(&config);
2143
2454
  /* Check if creating the Avahi server object succeeded */
2144
2455
  if(mc.server == NULL){
2145
2456
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
2146
 
                 avahi_strerror(error));
 
2457
                 avahi_strerror(ret_errno));
2147
2458
    exitcode = EX_UNAVAILABLE;
2148
2459
    goto end;
2149
2460
  }
2155
2466
  /* Create the Avahi service browser */
2156
2467
  sb = avahi_s_service_browser_new(mc.server, if_index,
2157
2468
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2158
 
                                   NULL, 0, browse_callback, NULL);
 
2469
                                   NULL, 0, browse_callback,
 
2470
                                   (void *)&mc);
2159
2471
  if(sb == NULL){
2160
2472
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
2161
2473
                 avahi_strerror(avahi_server_errno(mc.server)));
2173
2485
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2174
2486
  }
2175
2487
 
2176
 
  ret = avahi_loop_with_timeout(mc.simple_poll,
2177
 
                                (int)(retry_interval * 1000));
 
2488
  ret = avahi_loop_with_timeout(simple_poll,
 
2489
                                (int)(retry_interval * 1000), &mc);
2178
2490
  if(debug){
2179
2491
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2180
2492
                 (ret == 0) ? "successfully" : "with error");
2187
2499
  }
2188
2500
  
2189
2501
  /* Cleanup things */
 
2502
  free(mc.interfaces);
 
2503
  
2190
2504
  if(sb != NULL)
2191
2505
    avahi_s_service_browser_free(sb);
2192
2506
  
2193
2507
  if(mc.server != NULL)
2194
2508
    avahi_server_free(mc.server);
2195
2509
  
2196
 
  if(mc.simple_poll != NULL)
2197
 
    avahi_simple_poll_free(mc.simple_poll);
 
2510
  if(simple_poll != NULL)
 
2511
    avahi_simple_poll_free(simple_poll);
2198
2512
  
2199
2513
  if(gnutls_initialized){
2200
2514
    gnutls_certificate_free_credentials(mc.cred);
2217
2531
    }
2218
2532
  }
2219
2533
  
2220
 
  /* Re-raise priviliges */
 
2534
  /* Re-raise privileges */
2221
2535
  {
2222
 
    if(getuid() == 0){
2223
 
      errno = 0;
2224
 
      ret = seteuid(0);
2225
 
      if(ret == -1){
2226
 
        perror_plus("seteuid");
2227
 
      }
2228
 
    }
2229
 
    
2230
 
    /* Run network hooks */
2231
 
    run_network_hooks("stop", interface, delay);
2232
 
    
2233
 
    /* Take down the network interface */
2234
 
    if(take_down_interface and geteuid() == 0){
2235
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2236
 
      if(ret == -1){
2237
 
        perror_plus("ioctl SIOCGIFFLAGS");
2238
 
      } else if(network.ifr_flags & IFF_UP){
2239
 
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2240
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
2241
 
        if(ret == -1){
2242
 
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2243
 
        }
2244
 
      }
2245
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2246
 
      if(ret == -1){
2247
 
        perror_plus("close");
2248
 
      }
2249
 
    }
2250
 
  }
2251
 
  if(getuid() == 0){
2252
 
    /* Lower privileges permanently */
2253
 
    errno = 0;
2254
 
    ret = setuid(uid);
2255
 
    if(ret == -1){
2256
 
      perror_plus("setuid");
2257
 
    }
2258
 
  }
 
2536
    ret_errno = raise_privileges();
 
2537
    if(ret_errno != 0){
 
2538
      perror_plus("Failed to raise privileges");
 
2539
    } else {
 
2540
      
 
2541
      /* Run network hooks */
 
2542
      run_network_hooks("stop", interfaces_hooks != NULL ?
 
2543
                        interfaces_hooks : "", delay);
 
2544
      
 
2545
      /* Take down the network interfaces which were brought up */
 
2546
      {
 
2547
        char *interface = NULL;
 
2548
        while((interface=argz_next(interfaces_to_take_down,
 
2549
                                   interfaces_to_take_down_size,
 
2550
                                   interface))){
 
2551
          ret_errno = take_down_interface(interface);
 
2552
          if(ret_errno != 0){
 
2553
            errno = ret_errno;
 
2554
            perror_plus("Failed to take down interface");
 
2555
          }
 
2556
        }
 
2557
        if(debug and (interfaces_to_take_down == NULL)){
 
2558
          fprintf_plus(stderr, "No interfaces needed to be taken"
 
2559
                       " down\n");
 
2560
        }
 
2561
      }
 
2562
    }
 
2563
    ret_errno = lower_privileges_permanently();
 
2564
    if(ret_errno != 0){
 
2565
      perror_plus("Failed to lower privileges permanently");
 
2566
    }
 
2567
  }
 
2568
  
 
2569
  free(interfaces_to_take_down);
 
2570
  free(interfaces_hooks);
2259
2571
  
2260
2572
  /* Removes the GPGME temp directory and all files inside */
2261
 
  if(tempdir_created){
 
2573
  if(tempdir != NULL){
2262
2574
    struct dirent **direntries = NULL;
2263
2575
    struct dirent *direntry = NULL;
2264
2576
    int numentries = scandir(tempdir, &direntries, notdotentries,
2265
2577
                             alphasort);
2266
 
    if (numentries > 0){
 
2578
    if(numentries > 0){
2267
2579
      for(int i = 0; i < numentries; i++){
2268
2580
        direntry = direntries[i];
2269
2581
        char *fullname = NULL;
2284
2596
 
2285
2597
    /* need to clean even if 0 because man page doesn't specify */
2286
2598
    free(direntries);
2287
 
    if (numentries == -1){
 
2599
    if(numentries == -1){
2288
2600
      perror_plus("scandir");
2289
2601
    }
2290
2602
    ret = rmdir(tempdir);