/mandos/trunk

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2012-06-15 17:18:34 UTC
  • Revision ID: teddy@recompile.se-20120615171834-gzzgknth003j903u
* plugins.d/mandos-client.c (main): Bug fix: Set DEVICE environment
                                    variable correctly for network
                                    hooks.  Also, don't call
                                    run_network_hooks() with NULL
                                    value.

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-2013 Teddy Hogeborn
13
 
 * Copyright © 2008-2013 Björn Påhlsson
 
12
 * Copyright © 2008-2012 Teddy Hogeborn
 
13
 * Copyright © 2008-2012 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
154
154
 
155
155
/* Used for passing in values through the Avahi callback functions */
156
156
typedef struct {
 
157
  AvahiSimplePoll *simple_poll;
157
158
  AvahiServer *server;
158
159
  gnutls_certificate_credentials_t cred;
159
160
  unsigned int dh_bits;
161
162
  const char *priority;
162
163
  gpgme_ctx_t ctx;
163
164
  server *current_server;
164
 
  char *interfaces;
165
 
  size_t interfaces_size;
166
165
} mandos_context;
167
166
 
168
 
/* global so signal handler can reach it*/
169
 
AvahiSimplePoll *simple_poll;
 
167
/* global context so signal handler can reach it*/
 
168
mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
169
                      .dh_bits = 1024, .priority = "SECURE256"
 
170
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
 
171
                      .current_server = NULL };
170
172
 
171
173
sig_atomic_t quit_now = 0;
172
174
int signal_received = 0;
187
189
  
188
190
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
189
191
                             program_invocation_short_name));
190
 
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
192
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
191
193
}
192
194
 
193
195
/*
209
211
 
210
212
/* Add server to set of servers to retry periodically */
211
213
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
212
 
                int af, server **current_server){
 
214
                int af){
213
215
  int ret;
214
216
  server *new_server = malloc(sizeof(server));
215
217
  if(new_server == NULL){
225
227
    return false;
226
228
  }
227
229
  /* Special case of first server */
228
 
  if(*current_server == NULL){
 
230
  if (mc.current_server == NULL){
229
231
    new_server->next = new_server;
230
232
    new_server->prev = new_server;
231
 
    *current_server = new_server;
 
233
    mc.current_server = new_server;
232
234
  /* Place the new server last in the list */
233
235
  } else {
234
 
    new_server->next = *current_server;
235
 
    new_server->prev = (*current_server)->prev;
 
236
    new_server->next = mc.current_server;
 
237
    new_server->prev = mc.current_server->prev;
236
238
    new_server->prev->next = new_server;
237
 
    (*current_server)->prev = new_server;
 
239
    mc.current_server->prev = new_server;
238
240
  }
239
 
  ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
 
241
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
240
242
  if(ret == -1){
241
243
    perror_plus("clock_gettime");
242
244
    return false;
248
250
 * Initialize GPGME.
249
251
 */
250
252
static bool init_gpgme(const char *seckey, const char *pubkey,
251
 
                       const char *tempdir, mandos_context *mc){
 
253
                       const char *tempdir){
252
254
  gpgme_error_t rc;
253
255
  gpgme_engine_info_t engine_info;
254
256
  
 
257
  
255
258
  /*
256
259
   * Helper function to insert pub and seckey to the engine keyring.
257
260
   */
273
276
      return false;
274
277
    }
275
278
    
276
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
279
    rc = gpgme_op_import(mc.ctx, pgp_data);
277
280
    if(rc != GPG_ERR_NO_ERROR){
278
281
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
279
282
                   gpgme_strsource(rc), gpgme_strerror(rc));
323
326
  }
324
327
  
325
328
  /* Create new GPGME "context" */
326
 
  rc = gpgme_new(&(mc->ctx));
 
329
  rc = gpgme_new(&(mc.ctx));
327
330
  if(rc != GPG_ERR_NO_ERROR){
328
331
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
329
332
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
344
347
 */
345
348
static ssize_t pgp_packet_decrypt(const char *cryptotext,
346
349
                                  size_t crypto_size,
347
 
                                  char **plaintext,
348
 
                                  mandos_context *mc){
 
350
                                  char **plaintext){
349
351
  gpgme_data_t dh_crypto, dh_plain;
350
352
  gpgme_error_t rc;
351
353
  ssize_t ret;
377
379
  
378
380
  /* Decrypt data from the cryptotext data buffer to the plaintext
379
381
     data buffer */
380
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
382
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
381
383
  if(rc != GPG_ERR_NO_ERROR){
382
384
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
383
385
                 gpgme_strsource(rc), gpgme_strerror(rc));
384
386
    plaintext_length = -1;
385
387
    if(debug){
386
388
      gpgme_decrypt_result_t result;
387
 
      result = gpgme_op_decrypt_result(mc->ctx);
 
389
      result = gpgme_op_decrypt_result(mc.ctx);
388
390
      if(result == NULL){
389
391
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
390
392
      } else {
481
483
}
482
484
 
483
485
static int init_gnutls_global(const char *pubkeyfilename,
484
 
                              const char *seckeyfilename,
485
 
                              mandos_context *mc){
 
486
                              const char *seckeyfilename){
486
487
  int ret;
487
488
  
488
489
  if(debug){
505
506
  }
506
507
  
507
508
  /* OpenPGP credentials */
508
 
  ret = gnutls_certificate_allocate_credentials(&mc->cred);
 
509
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
509
510
  if(ret != GNUTLS_E_SUCCESS){
510
511
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
511
512
                 safer_gnutls_strerror(ret));
521
522
  }
522
523
  
523
524
  ret = gnutls_certificate_set_openpgp_key_file
524
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
525
    (mc.cred, pubkeyfilename, seckeyfilename,
525
526
     GNUTLS_OPENPGP_FMT_BASE64);
526
527
  if(ret != GNUTLS_E_SUCCESS){
527
528
    fprintf_plus(stderr,
533
534
  }
534
535
  
535
536
  /* GnuTLS server initialization */
536
 
  ret = gnutls_dh_params_init(&mc->dh_params);
 
537
  ret = gnutls_dh_params_init(&mc.dh_params);
537
538
  if(ret != GNUTLS_E_SUCCESS){
538
539
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
539
540
                 " initialization: %s\n",
540
541
                 safer_gnutls_strerror(ret));
541
542
    goto globalfail;
542
543
  }
543
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
544
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
544
545
  if(ret != GNUTLS_E_SUCCESS){
545
546
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
546
547
                 safer_gnutls_strerror(ret));
547
548
    goto globalfail;
548
549
  }
549
550
  
550
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
551
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
551
552
  
552
553
  return 0;
553
554
  
554
555
 globalfail:
555
556
  
556
 
  gnutls_certificate_free_credentials(mc->cred);
 
557
  gnutls_certificate_free_credentials(mc.cred);
557
558
  gnutls_global_deinit();
558
 
  gnutls_dh_params_deinit(mc->dh_params);
 
559
  gnutls_dh_params_deinit(mc.dh_params);
559
560
  return -1;
560
561
}
561
562
 
562
 
static int init_gnutls_session(gnutls_session_t *session,
563
 
                               mandos_context *mc){
 
563
static int init_gnutls_session(gnutls_session_t *session){
564
564
  int ret;
565
565
  /* GnuTLS session creation */
566
566
  do {
578
578
  {
579
579
    const char *err;
580
580
    do {
581
 
      ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
581
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
582
582
      if(quit_now){
583
583
        gnutls_deinit(*session);
584
584
        return -1;
595
595
  
596
596
  do {
597
597
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
598
 
                                 mc->cred);
 
598
                                 mc.cred);
599
599
    if(quit_now){
600
600
      gnutls_deinit(*session);
601
601
      return -1;
611
611
  /* ignore client certificate if any. */
612
612
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
613
613
  
614
 
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
614
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
615
615
  
616
616
  return 0;
617
617
}
623
623
/* Called when a Mandos server is found */
624
624
static int start_mandos_communication(const char *ip, in_port_t port,
625
625
                                      AvahiIfIndex if_index,
626
 
                                      int af, mandos_context *mc){
 
626
                                      int af){
627
627
  int ret, tcp_sd = -1;
628
628
  ssize_t sret;
629
629
  union {
659
659
    return -1;
660
660
  }
661
661
  
662
 
  /* If the interface is specified and we have a list of interfaces */
663
 
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
664
 
    /* Check if the interface is one of the interfaces we are using */
665
 
    bool match = false;
666
 
    {
667
 
      char *interface = NULL;
668
 
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
669
 
                                 interface))){
670
 
        if(if_nametoindex(interface) == (unsigned int)if_index){
671
 
          match = true;
672
 
          break;
673
 
        }
674
 
      }
675
 
    }
676
 
    if(not match){
677
 
      /* This interface does not match any in the list, so we don't
678
 
         connect to the server */
679
 
      if(debug){
680
 
        char interface[IF_NAMESIZE];
681
 
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
682
 
          perror_plus("if_indextoname");
683
 
        } else {
684
 
          fprintf_plus(stderr, "Skipping server on non-used interface"
685
 
                       " \"%s\"\n",
686
 
                       if_indextoname((unsigned int)if_index,
687
 
                                      interface));
688
 
        }
689
 
      }
690
 
      return -1;
691
 
    }
692
 
  }
693
 
  
694
 
  ret = init_gnutls_session(&session, mc);
 
662
  ret = init_gnutls_session(&session);
695
663
  if(ret != 0){
696
664
    return -1;
697
665
  }
969
937
  if(buffer_length > 0){
970
938
    ssize_t decrypted_buffer_size;
971
939
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
972
 
                                               &decrypted_buffer, mc);
 
940
                                               &decrypted_buffer);
973
941
    if(decrypted_buffer_size >= 0){
974
942
      
975
943
      written = 0;
1036
1004
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
1037
1005
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
1038
1006
                             flags,
1039
 
                             void* mc){
 
1007
                             AVAHI_GCC_UNUSED void* userdata){
1040
1008
  if(r == NULL){
1041
1009
    return;
1042
1010
  }
1054
1022
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
1055
1023
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
1056
1024
                 domain,
1057
 
                 avahi_strerror(avahi_server_errno
1058
 
                                (((mandos_context*)mc)->server)));
 
1025
                 avahi_strerror(avahi_server_errno(mc.server)));
1059
1026
    break;
1060
1027
    
1061
1028
  case AVAHI_RESOLVER_FOUND:
1069
1036
      }
1070
1037
      int ret = start_mandos_communication(ip, (in_port_t)port,
1071
1038
                                           interface,
1072
 
                                           avahi_proto_to_af(proto),
1073
 
                                           mc);
 
1039
                                           avahi_proto_to_af(proto));
1074
1040
      if(ret == 0){
1075
 
        avahi_simple_poll_quit(simple_poll);
 
1041
        avahi_simple_poll_quit(mc.simple_poll);
1076
1042
      } else {
1077
1043
        if(not add_server(ip, (in_port_t)port, interface,
1078
 
                          avahi_proto_to_af(proto),
1079
 
                          &((mandos_context*)mc)->current_server)){
 
1044
                          avahi_proto_to_af(proto))){
1080
1045
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1081
1046
                       " list\n", name);
1082
1047
        }
1095
1060
                            const char *domain,
1096
1061
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
1097
1062
                            flags,
1098
 
                            void* mc){
 
1063
                            AVAHI_GCC_UNUSED void* userdata){
1099
1064
  if(b == NULL){
1100
1065
    return;
1101
1066
  }
1112
1077
  case AVAHI_BROWSER_FAILURE:
1113
1078
    
1114
1079
    fprintf_plus(stderr, "(Avahi browser) %s\n",
1115
 
                 avahi_strerror(avahi_server_errno
1116
 
                                (((mandos_context*)mc)->server)));
1117
 
    avahi_simple_poll_quit(simple_poll);
 
1080
                 avahi_strerror(avahi_server_errno(mc.server)));
 
1081
    avahi_simple_poll_quit(mc.simple_poll);
1118
1082
    return;
1119
1083
    
1120
1084
  case AVAHI_BROWSER_NEW:
1123
1087
       the callback function is called the Avahi server will free the
1124
1088
       resolver for us. */
1125
1089
    
1126
 
    if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
1127
 
                                    interface, protocol, name, type,
1128
 
                                    domain, protocol, 0,
1129
 
                                    resolve_callback, mc) == NULL)
 
1090
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
 
1091
                                    name, type, domain, protocol, 0,
 
1092
                                    resolve_callback, NULL) == NULL)
1130
1093
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1131
1094
                   " %s\n", name,
1132
 
                   avahi_strerror(avahi_server_errno
1133
 
                                  (((mandos_context*)mc)->server)));
 
1095
                   avahi_strerror(avahi_server_errno(mc.server)));
1134
1096
    break;
1135
1097
    
1136
1098
  case AVAHI_BROWSER_REMOVE:
1155
1117
  signal_received = sig;
1156
1118
  int old_errno = errno;
1157
1119
  /* set main loop to exit */
1158
 
  if(simple_poll != NULL){
1159
 
    avahi_simple_poll_quit(simple_poll);
 
1120
  if(mc.simple_poll != NULL){
 
1121
    avahi_simple_poll_quit(mc.simple_poll);
1160
1122
  }
1161
1123
  errno = old_errno;
1162
1124
}
1356
1318
  return 1;
1357
1319
}
1358
1320
 
1359
 
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
1360
 
                            mandos_context *mc){
 
1321
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1361
1322
  int ret;
1362
1323
  struct timespec now;
1363
1324
  struct timespec waited_time;
1364
1325
  intmax_t block_time;
1365
1326
  
1366
1327
  while(true){
1367
 
    if(mc->current_server == NULL){
 
1328
    if(mc.current_server == NULL){
1368
1329
      if (debug){
1369
1330
        fprintf_plus(stderr, "Wait until first server is found."
1370
1331
                     " No timeout!\n");
1384
1345
      /* Calculating in ms how long time between now and server
1385
1346
         who we visted longest time ago. Now - last seen.  */
1386
1347
      waited_time.tv_sec = (now.tv_sec
1387
 
                            - mc->current_server->last_seen.tv_sec);
 
1348
                            - mc.current_server->last_seen.tv_sec);
1388
1349
      waited_time.tv_nsec = (now.tv_nsec
1389
 
                             - mc->current_server->last_seen.tv_nsec);
 
1350
                             - mc.current_server->last_seen.tv_nsec);
1390
1351
      /* total time is 10s/10,000ms.
1391
1352
         Converting to s from ms by dividing by 1,000,
1392
1353
         and ns to ms by dividing by 1,000,000. */
1400
1361
      }
1401
1362
      
1402
1363
      if(block_time <= 0){
1403
 
        ret = start_mandos_communication(mc->current_server->ip,
1404
 
                                         mc->current_server->port,
1405
 
                                         mc->current_server->if_index,
1406
 
                                         mc->current_server->af, mc);
 
1364
        ret = start_mandos_communication(mc.current_server->ip,
 
1365
                                         mc.current_server->port,
 
1366
                                         mc.current_server->if_index,
 
1367
                                         mc.current_server->af);
1407
1368
        if(ret == 0){
1408
 
          avahi_simple_poll_quit(s);
 
1369
          avahi_simple_poll_quit(mc.simple_poll);
1409
1370
          return 0;
1410
1371
        }
1411
1372
        ret = clock_gettime(CLOCK_MONOTONIC,
1412
 
                            &mc->current_server->last_seen);
 
1373
                            &mc.current_server->last_seen);
1413
1374
        if(ret == -1){
1414
1375
          perror_plus("clock_gettime");
1415
1376
          return -1;
1416
1377
        }
1417
 
        mc->current_server = mc->current_server->next;
 
1378
        mc.current_server = mc.current_server->next;
1418
1379
        block_time = 0;         /* Call avahi to find new Mandos
1419
1380
                                   servers, but don't block */
1420
1381
      }
1787
1748
}
1788
1749
 
1789
1750
int main(int argc, char *argv[]){
1790
 
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
1791
 
                        .priority = "SECURE256:!CTYPE-X.509:"
1792
 
                        "+CTYPE-OPENPGP", .current_server = NULL, 
1793
 
                        .interfaces = NULL, .interfaces_size = 0 };
1794
1751
  AvahiSServiceBrowser *sb = NULL;
1795
1752
  error_t ret_errno;
1796
1753
  int ret;
1797
1754
  intmax_t tmpmax;
1798
1755
  char *tmp;
1799
1756
  int exitcode = EXIT_SUCCESS;
 
1757
  char *interfaces = NULL;
 
1758
  size_t interfaces_size = 0;
1800
1759
  char *interfaces_to_take_down = NULL;
1801
1760
  size_t interfaces_to_take_down_size = 0;
1802
1761
  char tempdir[] = "/tmp/mandosXXXXXX";
1902
1861
        connect_to = arg;
1903
1862
        break;
1904
1863
      case 'i':                 /* --interface */
1905
 
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
1906
 
                                 arg, (int)',');
 
1864
        ret_errno = argz_add_sep(&interfaces, &interfaces_size, arg,
 
1865
                                 (int)',');
1907
1866
        if(ret_errno != 0){
1908
1867
          argp_error(state, "%s", strerror(ret_errno));
1909
1868
        }
2036
1995
      }
2037
1996
    
2038
1997
      /* Lower privileges */
2039
 
      lower_privileges();
 
1998
      errno = 0;
 
1999
      ret = seteuid(uid);
 
2000
      if(ret == -1){
 
2001
        perror_plus("seteuid");
 
2002
      }
2040
2003
    }
2041
2004
  }
2042
2005
  
2043
 
  /* Remove invalid interface names (except "none") */
 
2006
  /* Remove empty interface names */
2044
2007
  {
2045
2008
    char *interface = NULL;
2046
 
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2009
    while((interface = argz_next(interfaces, interfaces_size,
2047
2010
                                 interface))){
2048
 
      if(strcmp(interface, "none") != 0
2049
 
         and if_nametoindex(interface) == 0){
2050
 
        if(interface[0] != '\0'){
 
2011
      if(if_nametoindex(interface) == 0){
 
2012
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
2051
2013
          fprintf_plus(stderr, "Not using nonexisting interface"
2052
2014
                       " \"%s\"\n", interface);
2053
2015
        }
2054
 
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
 
2016
        argz_delete(&interfaces, &interfaces_size, interface);
2055
2017
        interface = NULL;
2056
2018
      }
2057
2019
    }
2059
2021
  
2060
2022
  /* Run network hooks */
2061
2023
  {
2062
 
    if(mc.interfaces != NULL){
2063
 
      interfaces_hooks = malloc(mc.interfaces_size);
 
2024
    
 
2025
    if(interfaces != NULL){
 
2026
      interfaces_hooks = malloc(interfaces_size);
2064
2027
      if(interfaces_hooks == NULL){
2065
2028
        perror_plus("malloc");
2066
2029
        goto end;
2067
2030
      }
2068
 
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2069
 
      interfaces_hooks_size = mc.interfaces_size;
 
2031
      memcpy(interfaces_hooks, interfaces, interfaces_size);
 
2032
      interfaces_hooks_size = interfaces_size;
2070
2033
      argz_stringify(interfaces_hooks, interfaces_hooks_size,
2071
2034
                     (int)',');
2072
2035
    }
2084
2047
     from the signal handler */
2085
2048
  /* Initialize the pseudo-RNG for Avahi */
2086
2049
  srand((unsigned int) time(NULL));
2087
 
  simple_poll = avahi_simple_poll_new();
2088
 
  if(simple_poll == NULL){
 
2050
  mc.simple_poll = avahi_simple_poll_new();
 
2051
  if(mc.simple_poll == NULL){
2089
2052
    fprintf_plus(stderr,
2090
2053
                 "Avahi: Failed to create simple poll object.\n");
2091
2054
    exitcode = EX_UNAVAILABLE;
2156
2119
  }
2157
2120
  
2158
2121
  /* If no interfaces were specified, make a list */
2159
 
  if(mc.interfaces == NULL){
 
2122
  if(interfaces == NULL){
2160
2123
    struct dirent **direntries;
2161
2124
    /* Look for any good interfaces */
2162
2125
    ret = scandir(sys_class_net, &direntries, good_interface,
2164
2127
    if(ret >= 1){
2165
2128
      /* Add all found interfaces to interfaces list */
2166
2129
      for(int i = 0; i < ret; ++i){
2167
 
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
 
2130
        ret_errno = argz_add(&interfaces, &interfaces_size,
2168
2131
                             direntries[i]->d_name);
2169
2132
        if(ret_errno != 0){
2170
2133
          perror_plus("argz_add");
2184
2147
    }
2185
2148
  }
2186
2149
  
2187
 
  /* Bring up interfaces which are down, and remove any "none"s */
2188
 
  {
 
2150
  /* If we only got one interface, explicitly use only that one */
 
2151
  if(argz_count(interfaces, interfaces_size) == 1){
 
2152
    if(debug){
 
2153
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2154
                   interfaces);
 
2155
    }
 
2156
    if_index = (AvahiIfIndex)if_nametoindex(interfaces);
 
2157
  }
 
2158
  
 
2159
  /* Bring up interfaces which are down */
 
2160
  if(not (argz_count(interfaces, interfaces_size) == 1
 
2161
          and strcmp(interfaces, "none") == 0)){
2189
2162
    char *interface = NULL;
2190
 
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2163
    while((interface = argz_next(interfaces, interfaces_size,
2191
2164
                                 interface))){
2192
 
      /* If interface name is "none", stop bringing up interfaces.
2193
 
         Also remove all instances of "none" from the list */
2194
 
      if(strcmp(interface, "none") == 0){
2195
 
        argz_delete(&mc.interfaces, &mc.interfaces_size,
2196
 
                    interface);
2197
 
        interface = NULL;
2198
 
        while((interface = argz_next(mc.interfaces,
2199
 
                                     mc.interfaces_size, interface))){
2200
 
          if(strcmp(interface, "none") == 0){
2201
 
            argz_delete(&mc.interfaces, &mc.interfaces_size,
2202
 
                        interface);
2203
 
            interface = NULL;
2204
 
          }
2205
 
        }
2206
 
        break;
2207
 
      }
2208
2165
      bool interface_was_up = interface_is_up(interface);
2209
2166
      ret = bring_up_interface(interface, delay);
2210
2167
      if(not interface_was_up){
2218
2175
        }
2219
2176
      }
2220
2177
    }
 
2178
    free(interfaces);
 
2179
    interfaces = NULL;
 
2180
    interfaces_size = 0;
2221
2181
    if(debug and (interfaces_to_take_down == NULL)){
2222
2182
      fprintf_plus(stderr, "No interfaces were brought up\n");
2223
2183
    }
2224
2184
  }
2225
2185
  
2226
 
  /* If we only got one interface, explicitly use only that one */
2227
 
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2228
 
    if(debug){
2229
 
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
2230
 
                   mc.interfaces);
2231
 
    }
2232
 
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2233
 
  }
2234
 
  
2235
2186
  if(quit_now){
2236
2187
    goto end;
2237
2188
  }
2238
2189
  
2239
 
  ret = init_gnutls_global(pubkey, seckey, &mc);
 
2190
  ret = init_gnutls_global(pubkey, seckey);
2240
2191
  if(ret == -1){
2241
2192
    fprintf_plus(stderr, "init_gnutls_global failed\n");
2242
2193
    exitcode = EX_UNAVAILABLE;
2259
2210
    goto end;
2260
2211
  }
2261
2212
  
2262
 
  if(not init_gpgme(pubkey, seckey, tempdir, &mc)){
 
2213
  if(not init_gpgme(pubkey, seckey, tempdir)){
2263
2214
    fprintf_plus(stderr, "init_gpgme failed\n");
2264
2215
    exitcode = EX_UNAVAILABLE;
2265
2216
    goto end;
2295
2246
      exitcode = EX_USAGE;
2296
2247
      goto end;
2297
2248
    }
2298
 
    
 
2249
  
2299
2250
    if(quit_now){
2300
2251
      goto end;
2301
2252
    }
2322
2273
    }
2323
2274
    
2324
2275
    while(not quit_now){
2325
 
      ret = start_mandos_communication(address, port, if_index, af,
2326
 
                                       &mc);
 
2276
      ret = start_mandos_communication(address, port, if_index, af);
2327
2277
      if(quit_now or ret == 0){
2328
2278
        break;
2329
2279
      }
2331
2281
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2332
2282
                     (int)retry_interval);
2333
2283
      }
2334
 
      sleep((unsigned int)retry_interval);
 
2284
      sleep((int)retry_interval);
2335
2285
    }
2336
2286
    
2337
2287
    if (not quit_now){
2355
2305
    config.publish_domain = 0;
2356
2306
    
2357
2307
    /* Allocate a new server */
2358
 
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
2359
 
                                 &config, NULL, NULL, &ret_errno);
 
2308
    mc.server = avahi_server_new(avahi_simple_poll_get
 
2309
                                 (mc.simple_poll), &config, NULL,
 
2310
                                 NULL, &ret_errno);
2360
2311
    
2361
2312
    /* Free the Avahi configuration data */
2362
2313
    avahi_server_config_free(&config);
2377
2328
  /* Create the Avahi service browser */
2378
2329
  sb = avahi_s_service_browser_new(mc.server, if_index,
2379
2330
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2380
 
                                   NULL, 0, browse_callback,
2381
 
                                   (void *)&mc);
 
2331
                                   NULL, 0, browse_callback, NULL);
2382
2332
  if(sb == NULL){
2383
2333
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
2384
2334
                 avahi_strerror(avahi_server_errno(mc.server)));
2396
2346
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2397
2347
  }
2398
2348
 
2399
 
  ret = avahi_loop_with_timeout(simple_poll,
2400
 
                                (int)(retry_interval * 1000), &mc);
 
2349
  ret = avahi_loop_with_timeout(mc.simple_poll,
 
2350
                                (int)(retry_interval * 1000));
2401
2351
  if(debug){
2402
2352
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2403
2353
                 (ret == 0) ? "successfully" : "with error");
2410
2360
  }
2411
2361
  
2412
2362
  /* Cleanup things */
2413
 
  free(mc.interfaces);
2414
 
  
2415
2363
  if(sb != NULL)
2416
2364
    avahi_s_service_browser_free(sb);
2417
2365
  
2418
2366
  if(mc.server != NULL)
2419
2367
    avahi_server_free(mc.server);
2420
2368
  
2421
 
  if(simple_poll != NULL)
2422
 
    avahi_simple_poll_free(simple_poll);
 
2369
  if(mc.simple_poll != NULL)
 
2370
    avahi_simple_poll_free(mc.simple_poll);
2423
2371
  
2424
2372
  if(gnutls_initialized){
2425
2373
    gnutls_certificate_free_credentials(mc.cred);