/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-16 23:25:46 UTC
  • Revision ID: teddy@recompile.se-20120616232546-dcrkmnhd4yhq6mvd
* plugins.d/mandos-client (mandos_context): Moved to inside "main()".
                                            All users changed.
  (add_server): Take new "current_server" argument; all callers
                changed.
  (init_gpgme, pgp_packet_decrypt, init_gnutls_global,
  init_gnutls_session, start_mandos_communication,
  avahi_loop_with_timeout): Take new "mc" argument"; all callers
                            changed.
  (resolve_callback, browse_callback): Handle void pointer userdata as
                                       "mc", a pointer to
                                       mandos_context.  All callers
                                       changed.
  (main): New "mc" variable.

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
161
161
  const char *priority;
162
162
  gpgme_ctx_t ctx;
163
163
  server *current_server;
164
 
  char *interfaces;
165
 
  size_t interfaces_size;
166
164
} mandos_context;
167
165
 
168
166
/* global so signal handler can reach it*/
187
185
  
188
186
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
189
187
                             program_invocation_short_name));
190
 
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
188
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
191
189
}
192
190
 
193
191
/*
659
657
    return -1;
660
658
  }
661
659
  
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
660
  ret = init_gnutls_session(&session, mc);
695
661
  if(ret != 0){
696
662
    return -1;
736
702
  }
737
703
  if(af == AF_INET6){
738
704
    to.in6.sin6_port = htons(port);    
739
 
#ifdef __GNUC__
740
 
#pragma GCC diagnostic push
741
 
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
742
 
#endif
743
705
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
744
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower */
745
 
#ifdef __GNUC__
746
 
#pragma GCC diagnostic pop
747
 
#endif
 
706
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
 
707
                                -Wunreachable-code*/
748
708
      if(if_index == AVAHI_IF_UNSPEC){
749
709
        fprintf_plus(stderr, "An IPv6 link-local address is"
750
710
                     " incomplete without a network interface\n");
755
715
      to.in6.sin6_scope_id = (uint32_t)if_index;
756
716
    }
757
717
  } else {
758
 
    to.in.sin_port = htons(port);
 
718
    to.in.sin_port = htons(port); /* Spurious warnings from
 
719
                                     -Wconversion and
 
720
                                     -Wunreachable-code */
759
721
  }
760
722
  
761
723
  if(quit_now){
1793
1755
int main(int argc, char *argv[]){
1794
1756
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
1795
1757
                        .priority = "SECURE256:!CTYPE-X.509:"
1796
 
                        "+CTYPE-OPENPGP", .current_server = NULL, 
1797
 
                        .interfaces = NULL, .interfaces_size = 0 };
 
1758
                        "+CTYPE-OPENPGP", .current_server = NULL };
1798
1759
  AvahiSServiceBrowser *sb = NULL;
1799
1760
  error_t ret_errno;
1800
1761
  int ret;
1801
1762
  intmax_t tmpmax;
1802
1763
  char *tmp;
1803
1764
  int exitcode = EXIT_SUCCESS;
 
1765
  char *interfaces = NULL;
 
1766
  size_t interfaces_size = 0;
1804
1767
  char *interfaces_to_take_down = NULL;
1805
1768
  size_t interfaces_to_take_down_size = 0;
1806
1769
  char tempdir[] = "/tmp/mandosXXXXXX";
1906
1869
        connect_to = arg;
1907
1870
        break;
1908
1871
      case 'i':                 /* --interface */
1909
 
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
1910
 
                                 arg, (int)',');
 
1872
        ret_errno = argz_add_sep(&interfaces, &interfaces_size, arg,
 
1873
                                 (int)',');
1911
1874
        if(ret_errno != 0){
1912
1875
          argp_error(state, "%s", strerror(ret_errno));
1913
1876
        }
2040
2003
      }
2041
2004
    
2042
2005
      /* Lower privileges */
2043
 
      lower_privileges();
 
2006
      errno = 0;
 
2007
      ret = seteuid(uid);
 
2008
      if(ret == -1){
 
2009
        perror_plus("seteuid");
 
2010
      }
2044
2011
    }
2045
2012
  }
2046
2013
  
2047
 
  /* Remove invalid interface names (except "none") */
 
2014
  /* Remove empty interface names */
2048
2015
  {
2049
2016
    char *interface = NULL;
2050
 
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2017
    while((interface = argz_next(interfaces, interfaces_size,
2051
2018
                                 interface))){
2052
 
      if(strcmp(interface, "none") != 0
2053
 
         and if_nametoindex(interface) == 0){
2054
 
        if(interface[0] != '\0'){
 
2019
      if(if_nametoindex(interface) == 0){
 
2020
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
2055
2021
          fprintf_plus(stderr, "Not using nonexisting interface"
2056
2022
                       " \"%s\"\n", interface);
2057
2023
        }
2058
 
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
 
2024
        argz_delete(&interfaces, &interfaces_size, interface);
2059
2025
        interface = NULL;
2060
2026
      }
2061
2027
    }
2063
2029
  
2064
2030
  /* Run network hooks */
2065
2031
  {
2066
 
    if(mc.interfaces != NULL){
2067
 
      interfaces_hooks = malloc(mc.interfaces_size);
 
2032
    
 
2033
    if(interfaces != NULL){
 
2034
      interfaces_hooks = malloc(interfaces_size);
2068
2035
      if(interfaces_hooks == NULL){
2069
2036
        perror_plus("malloc");
2070
2037
        goto end;
2071
2038
      }
2072
 
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2073
 
      interfaces_hooks_size = mc.interfaces_size;
 
2039
      memcpy(interfaces_hooks, interfaces, interfaces_size);
 
2040
      interfaces_hooks_size = interfaces_size;
2074
2041
      argz_stringify(interfaces_hooks, interfaces_hooks_size,
2075
2042
                     (int)',');
2076
2043
    }
2160
2127
  }
2161
2128
  
2162
2129
  /* If no interfaces were specified, make a list */
2163
 
  if(mc.interfaces == NULL){
 
2130
  if(interfaces == NULL){
2164
2131
    struct dirent **direntries;
2165
2132
    /* Look for any good interfaces */
2166
2133
    ret = scandir(sys_class_net, &direntries, good_interface,
2168
2135
    if(ret >= 1){
2169
2136
      /* Add all found interfaces to interfaces list */
2170
2137
      for(int i = 0; i < ret; ++i){
2171
 
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
 
2138
        ret_errno = argz_add(&interfaces, &interfaces_size,
2172
2139
                             direntries[i]->d_name);
2173
2140
        if(ret_errno != 0){
2174
2141
          perror_plus("argz_add");
2188
2155
    }
2189
2156
  }
2190
2157
  
2191
 
  /* Bring up interfaces which are down, and remove any "none"s */
2192
 
  {
 
2158
  /* If we only got one interface, explicitly use only that one */
 
2159
  if(argz_count(interfaces, interfaces_size) == 1){
 
2160
    if(debug){
 
2161
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2162
                   interfaces);
 
2163
    }
 
2164
    if_index = (AvahiIfIndex)if_nametoindex(interfaces);
 
2165
  }
 
2166
  
 
2167
  /* Bring up interfaces which are down */
 
2168
  if(not (argz_count(interfaces, interfaces_size) == 1
 
2169
          and strcmp(interfaces, "none") == 0)){
2193
2170
    char *interface = NULL;
2194
 
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2171
    while((interface = argz_next(interfaces, interfaces_size,
2195
2172
                                 interface))){
2196
 
      /* If interface name is "none", stop bringing up interfaces.
2197
 
         Also remove all instances of "none" from the list */
2198
 
      if(strcmp(interface, "none") == 0){
2199
 
        argz_delete(&mc.interfaces, &mc.interfaces_size,
2200
 
                    interface);
2201
 
        interface = NULL;
2202
 
        while((interface = argz_next(mc.interfaces,
2203
 
                                     mc.interfaces_size, interface))){
2204
 
          if(strcmp(interface, "none") == 0){
2205
 
            argz_delete(&mc.interfaces, &mc.interfaces_size,
2206
 
                        interface);
2207
 
            interface = NULL;
2208
 
          }
2209
 
        }
2210
 
        break;
2211
 
      }
2212
2173
      bool interface_was_up = interface_is_up(interface);
2213
2174
      ret = bring_up_interface(interface, delay);
2214
2175
      if(not interface_was_up){
2222
2183
        }
2223
2184
      }
2224
2185
    }
 
2186
    free(interfaces);
 
2187
    interfaces = NULL;
 
2188
    interfaces_size = 0;
2225
2189
    if(debug and (interfaces_to_take_down == NULL)){
2226
2190
      fprintf_plus(stderr, "No interfaces were brought up\n");
2227
2191
    }
2228
2192
  }
2229
2193
  
2230
 
  /* If we only got one interface, explicitly use only that one */
2231
 
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2232
 
    if(debug){
2233
 
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
2234
 
                   mc.interfaces);
2235
 
    }
2236
 
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2237
 
  }
2238
 
  
2239
2194
  if(quit_now){
2240
2195
    goto end;
2241
2196
  }
2299
2254
      exitcode = EX_USAGE;
2300
2255
      goto end;
2301
2256
    }
2302
 
    
 
2257
  
2303
2258
    if(quit_now){
2304
2259
      goto end;
2305
2260
    }
2335
2290
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2336
2291
                     (int)retry_interval);
2337
2292
      }
2338
 
      sleep((unsigned int)retry_interval);
 
2293
      sleep((int)retry_interval);
2339
2294
    }
2340
2295
    
2341
2296
    if (not quit_now){
2414
2369
  }
2415
2370
  
2416
2371
  /* Cleanup things */
2417
 
  free(mc.interfaces);
2418
 
  
2419
2372
  if(sb != NULL)
2420
2373
    avahi_s_service_browser_free(sb);
2421
2374