/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:39:10 UTC
  • Revision ID: teddy@recompile.se-20120616233910-jxxxriq608qa6o8z
* plugins.d/mandos-client (mandos_context): New "interfaces" and
                                            "interfaces_size" members.
  (main): Removed "interfaces" and "interfaces_size" variabled; all
          users changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
659
659
    return -1;
660
660
  }
661
661
  
662
 
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
663
 
    /* Check if the interface is one of the interfaces we are using */
664
 
    bool match = false;
665
 
    {
666
 
      char *interface = NULL;
667
 
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
668
 
                                 interface))){
669
 
        if(if_nametoindex(interface) == (unsigned int)if_index){
670
 
          match = true;
671
 
          break;
672
 
        }
673
 
      }
674
 
    }
675
 
    if(not match){
676
 
      if(debug){
677
 
        char interface[IF_NAMESIZE];
678
 
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
679
 
          perror_plus("if_indextoname");
680
 
        } else {
681
 
          fprintf_plus(stderr, "Skipping server on non-used interface"
682
 
                       " \"%s\"\n",
683
 
                       if_indextoname((unsigned int)if_index,
684
 
                                      interface));
685
 
        }
686
 
      }
687
 
      return -1;
688
 
    }
689
 
  }
690
 
  
691
662
  ret = init_gnutls_session(&session, mc);
692
663
  if(ret != 0){
693
664
    return -1;
2033
2004
      }
2034
2005
    
2035
2006
      /* Lower privileges */
2036
 
      lower_privileges();
 
2007
      errno = 0;
 
2008
      ret = seteuid(uid);
 
2009
      if(ret == -1){
 
2010
        perror_plus("seteuid");
 
2011
      }
2037
2012
    }
2038
2013
  }
2039
2014
  
2040
 
  /* Remove invalid interface names (except "none") */
 
2015
  /* Remove empty interface names */
2041
2016
  {
2042
2017
    char *interface = NULL;
2043
2018
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2044
2019
                                 interface))){
2045
 
      if(strcmp(interface, "none") != 0
2046
 
         and if_nametoindex(interface) == 0){
2047
 
        if(interface[0] != '\0'){
 
2020
      if(if_nametoindex(interface) == 0){
 
2021
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
2048
2022
          fprintf_plus(stderr, "Not using nonexisting interface"
2049
2023
                       " \"%s\"\n", interface);
2050
2024
        }
2056
2030
  
2057
2031
  /* Run network hooks */
2058
2032
  {
 
2033
    
2059
2034
    if(mc.interfaces != NULL){
2060
2035
      interfaces_hooks = malloc(mc.interfaces_size);
2061
2036
      if(interfaces_hooks == NULL){
2181
2156
    }
2182
2157
  }
2183
2158
  
 
2159
  /* If we only got one interface, explicitly use only that one */
 
2160
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
 
2161
    if(debug){
 
2162
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2163
                   mc.interfaces);
 
2164
    }
 
2165
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
 
2166
  }
 
2167
  
2184
2168
  /* Bring up interfaces which are down */
2185
 
  {
 
2169
  if(not (argz_count(mc.interfaces, mc.interfaces_size) == 1
 
2170
          and strcmp(mc.interfaces, "none") == 0)){
2186
2171
    char *interface = NULL;
2187
2172
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2188
2173
                                 interface))){
2189
 
      /* If interface name is "none", stop bringing up interfaces.
2190
 
         Also remove all instances of "none" from the list */
2191
 
      if(strcmp(interface, "none") == 0){
2192
 
        argz_delete(&mc.interfaces, &mc.interfaces_size,
2193
 
                    interface);
2194
 
        interface = NULL;
2195
 
        while((interface = argz_next(mc.interfaces,
2196
 
                                     mc.interfaces_size, interface))){
2197
 
          if(strcmp(interface, "none") == 0){
2198
 
            argz_delete(&mc.interfaces, &mc.interfaces_size,
2199
 
                        interface);
2200
 
            interface = NULL;
2201
 
          }
2202
 
        }
2203
 
        break;
2204
 
      }
2205
2174
      bool interface_was_up = interface_is_up(interface);
2206
2175
      ret = bring_up_interface(interface, delay);
2207
2176
      if(not interface_was_up){
2215
2184
        }
2216
2185
      }
2217
2186
    }
 
2187
    free(mc.interfaces);
 
2188
    mc.interfaces = NULL;
 
2189
    mc.interfaces_size = 0;
2218
2190
    if(debug and (interfaces_to_take_down == NULL)){
2219
2191
      fprintf_plus(stderr, "No interfaces were brought up\n");
2220
2192
    }
2221
2193
  }
2222
2194
  
2223
 
  /* If we only got one interface, explicitly use only that one */
2224
 
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2225
 
    if(debug){
2226
 
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
2227
 
                   mc.interfaces);
2228
 
    }
2229
 
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2230
 
  }
2231
 
  
2232
2195
  if(quit_now){
2233
2196
    goto end;
2234
2197
  }
2292
2255
      exitcode = EX_USAGE;
2293
2256
      goto end;
2294
2257
    }
2295
 
    
 
2258
  
2296
2259
    if(quit_now){
2297
2260
      goto end;
2298
2261
    }
2407
2370
  }
2408
2371
  
2409
2372
  /* Cleanup things */
2410
 
  free(mc.interfaces);
2411
 
  
2412
2373
  if(sb != NULL)
2413
2374
    avahi_s_service_browser_free(sb);
2414
2375