/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: 2014-03-10 06:55:54 UTC
  • Revision ID: teddy@recompile.se-20140310065554-of3kz8jdhlll42l3
Use "struct sockaddr_storage" instead of a union in mandos-client.

Apparently using struct sockaddr_storage the way POSIX intended is
incompatible with strict aliasing, so turn that off in the Makefile.

* plugins.d/mandos-client.c (start_mandos_communication): Change "to"
                                                          from a union
                                                          to a struct
                                                          sockaddr_storage.
* Makefile (OPTIMIZE): Add "-fno-strict-aliasing".

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-2012 Teddy Hogeborn
13
 
 * Copyright © 2008-2012 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
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
                                 */
73
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
75
                                   getuid(), getgid(), seteuid(),
75
76
                                   setgid(), pause(), _exit() */
76
 
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
 
77
#include <arpa/inet.h>          /* inet_pton(), htons() */
77
78
#include <iso646.h>             /* not, or, and */
78
79
#include <argp.h>               /* struct argp_option, error_t, struct
79
80
                                   argp_state, struct argp,
91
92
                                   argz_delete(), argz_append(),
92
93
                                   argz_stringify(), argz_add(),
93
94
                                   argz_count() */
 
95
#include <netdb.h>              /* getnameinfo(), NI_NUMERICHOST,
 
96
                                   EAI_SYSTEM, gai_strerror() */
94
97
 
95
98
#ifdef __linux__
96
99
#include <sys/klog.h>           /* klogctl() */
161
164
  const char *priority;
162
165
  gpgme_ctx_t ctx;
163
166
  server *current_server;
 
167
  char *interfaces;
 
168
  size_t interfaces_size;
164
169
} mandos_context;
165
170
 
166
171
/* global so signal handler can reach it*/
185
190
  
186
191
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
187
192
                             program_invocation_short_name));
188
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
193
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
189
194
}
190
195
 
191
196
/*
196
201
size_t incbuffer(char **buffer, size_t buffer_length,
197
202
                 size_t buffer_capacity){
198
203
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
199
 
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
200
 
    if(buffer == NULL){
 
204
    char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
205
    if(new_buf == NULL){
 
206
      int old_errno = errno;
 
207
      free(*buffer);
 
208
      errno = old_errno;
 
209
      *buffer = NULL;
201
210
      return 0;
202
211
    }
 
212
    *buffer = new_buf;
203
213
    buffer_capacity += BUFFER_SIZE;
204
214
  }
205
215
  return buffer_capacity;
222
232
    perror_plus("strdup");
223
233
    return false;
224
234
  }
 
235
  ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
 
236
  if(ret == -1){
 
237
    perror_plus("clock_gettime");
 
238
    return false;
 
239
  }
225
240
  /* Special case of first server */
226
241
  if(*current_server == NULL){
227
242
    new_server->next = new_server;
234
249
    new_server->prev->next = new_server;
235
250
    (*current_server)->prev = new_server;
236
251
  }
237
 
  ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
238
 
  if(ret == -1){
239
 
    perror_plus("clock_gettime");
240
 
    return false;
241
 
  }
242
252
  return true;
243
253
}
244
254
 
624
634
                                      int af, mandos_context *mc){
625
635
  int ret, tcp_sd = -1;
626
636
  ssize_t sret;
627
 
  union {
628
 
    struct sockaddr_in in;
629
 
    struct sockaddr_in6 in6;
630
 
  } to;
 
637
  struct sockaddr_storage to;
631
638
  char *buffer = NULL;
632
639
  char *decrypted_buffer = NULL;
633
640
  size_t buffer_length = 0;
657
664
    return -1;
658
665
  }
659
666
  
 
667
  /* If the interface is specified and we have a list of interfaces */
 
668
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
 
669
    /* Check if the interface is one of the interfaces we are using */
 
670
    bool match = false;
 
671
    {
 
672
      char *interface = NULL;
 
673
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
674
                                 interface))){
 
675
        if(if_nametoindex(interface) == (unsigned int)if_index){
 
676
          match = true;
 
677
          break;
 
678
        }
 
679
      }
 
680
    }
 
681
    if(not match){
 
682
      /* This interface does not match any in the list, so we don't
 
683
         connect to the server */
 
684
      if(debug){
 
685
        char interface[IF_NAMESIZE];
 
686
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
687
          perror_plus("if_indextoname");
 
688
        } else {
 
689
          fprintf_plus(stderr, "Skipping server on non-used interface"
 
690
                       " \"%s\"\n",
 
691
                       if_indextoname((unsigned int)if_index,
 
692
                                      interface));
 
693
        }
 
694
      }
 
695
      return -1;
 
696
    }
 
697
  }
 
698
  
660
699
  ret = init_gnutls_session(&session, mc);
661
700
  if(ret != 0){
662
701
    return -1;
682
721
  
683
722
  memset(&to, 0, sizeof(to));
684
723
  if(af == AF_INET6){
685
 
    to.in6.sin6_family = (sa_family_t)af;
686
 
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
724
    ((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
 
725
    ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
687
726
  } else {                      /* IPv4 */
688
 
    to.in.sin_family = (sa_family_t)af;
689
 
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
727
    ((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
 
728
    ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
690
729
  }
691
730
  if(ret < 0 ){
692
731
    int e = errno;
701
740
    goto mandos_end;
702
741
  }
703
742
  if(af == AF_INET6){
704
 
    to.in6.sin6_port = htons(port);    
705
 
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
706
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
707
 
                                -Wunreachable-code*/
 
743
    ((struct sockaddr_in6 *)&to)->sin6_port = htons(port);    
 
744
    if(IN6_IS_ADDR_LINKLOCAL
 
745
       (&((struct sockaddr_in6 *)&to)->sin6_addr)){
708
746
      if(if_index == AVAHI_IF_UNSPEC){
709
747
        fprintf_plus(stderr, "An IPv6 link-local address is"
710
748
                     " incomplete without a network interface\n");
712
750
        goto mandos_end;
713
751
      }
714
752
      /* Set the network interface number as scope */
715
 
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
753
      ((struct sockaddr_in6 *)&to)->sin6_scope_id = (uint32_t)if_index;
716
754
    }
717
755
  } else {
718
 
    to.in.sin_port = htons(port); /* Spurious warnings from
719
 
                                     -Wconversion and
720
 
                                     -Wunreachable-code */
 
756
    ((struct sockaddr_in *)&to)->sin_port = htons(port);
721
757
  }
722
758
  
723
759
  if(quit_now){
740
776
    }
741
777
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
742
778
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
743
 
    const char *pcret;
744
779
    if(af == AF_INET6){
745
 
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
746
 
                        sizeof(addrstr));
 
780
      ret = getnameinfo((struct sockaddr *)&to,
 
781
                        sizeof(struct sockaddr_in6),
 
782
                        addrstr, sizeof(addrstr), NULL, 0,
 
783
                        NI_NUMERICHOST);
747
784
    } else {
748
 
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
749
 
                        sizeof(addrstr));
 
785
      ret = getnameinfo((struct sockaddr *)&to,
 
786
                        sizeof(struct sockaddr_in),
 
787
                        addrstr, sizeof(addrstr), NULL, 0,
 
788
                        NI_NUMERICHOST);
750
789
    }
751
 
    if(pcret == NULL){
752
 
      perror_plus("inet_ntop");
753
 
    } else {
754
 
      if(strcmp(addrstr, ip) != 0){
755
 
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
756
 
      }
 
790
    if(ret == EAI_SYSTEM){
 
791
      perror_plus("getnameinfo");
 
792
    } else if(ret != 0) {
 
793
      fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
 
794
    } else if(strcmp(addrstr, ip) != 0){
 
795
      fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
757
796
    }
758
797
  }
759
798
  
763
802
  }
764
803
  
765
804
  if(af == AF_INET6){
766
 
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
805
    ret = connect(tcp_sd, (struct sockaddr *)&to,
 
806
                  sizeof(struct sockaddr_in6));
767
807
  } else {
768
 
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
808
    ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
 
809
                  sizeof(struct sockaddr_in));
769
810
  }
770
811
  if(ret < 0){
771
812
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
1450
1491
bool run_network_hooks(const char *mode, const char *interface,
1451
1492
                       const float delay){
1452
1493
  struct dirent **direntries;
1453
 
  struct dirent *direntry;
1454
 
  int ret;
1455
1494
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1456
1495
                         alphasort);
1457
1496
  if(numhooks == -1){
1464
1503
      perror_plus("scandir");
1465
1504
    }
1466
1505
  } else {
 
1506
    struct dirent *direntry;
 
1507
    int ret;
1467
1508
    int devnull = open("/dev/null", O_RDONLY);
1468
1509
    for(int i = 0; i < numhooks; i++){
1469
1510
      direntry = direntries[i];
1689
1730
}
1690
1731
 
1691
1732
error_t take_down_interface(const char *const interface){
1692
 
  int sd = -1;
1693
1733
  error_t old_errno = errno;
1694
 
  error_t ret_errno = 0;
1695
 
  int ret, ret_setflags;
1696
1734
  struct ifreq network;
1697
1735
  unsigned int if_index = if_nametoindex(interface);
1698
1736
  if(if_index == 0){
1701
1739
    return ENXIO;
1702
1740
  }
1703
1741
  if(interface_is_up(interface)){
 
1742
    error_t ret_errno = 0;
1704
1743
    if(not get_flags(interface, &network) and debug){
1705
1744
      ret_errno = errno;
1706
1745
      fprintf_plus(stderr, "Failed to get flags for interface "
1709
1748
    }
1710
1749
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1711
1750
    
1712
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1751
    int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1713
1752
    if(sd < 0){
1714
1753
      ret_errno = errno;
1715
1754
      perror_plus("socket");
1725
1764
    /* Raise priviliges */
1726
1765
    raise_privileges();
1727
1766
    
1728
 
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1767
    int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1729
1768
    ret_errno = errno;
1730
1769
    
1731
1770
    /* Lower privileges */
1732
1771
    lower_privileges();
1733
1772
    
1734
1773
    /* Close the socket */
1735
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1774
    int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1736
1775
    if(ret == -1){
1737
1776
      perror_plus("close");
1738
1777
    }
1755
1794
int main(int argc, char *argv[]){
1756
1795
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
1757
1796
                        .priority = "SECURE256:!CTYPE-X.509:"
1758
 
                        "+CTYPE-OPENPGP", .current_server = NULL };
 
1797
                        "+CTYPE-OPENPGP", .current_server = NULL, 
 
1798
                        .interfaces = NULL, .interfaces_size = 0 };
1759
1799
  AvahiSServiceBrowser *sb = NULL;
1760
1800
  error_t ret_errno;
1761
1801
  int ret;
1762
1802
  intmax_t tmpmax;
1763
1803
  char *tmp;
1764
1804
  int exitcode = EXIT_SUCCESS;
1765
 
  char *interfaces = NULL;
1766
 
  size_t interfaces_size = 0;
1767
1805
  char *interfaces_to_take_down = NULL;
1768
1806
  size_t interfaces_to_take_down_size = 0;
1769
1807
  char tempdir[] = "/tmp/mandosXXXXXX";
1772
1810
  const char *seckey = PATHDIR "/" SECKEY;
1773
1811
  const char *pubkey = PATHDIR "/" PUBKEY;
1774
1812
  char *interfaces_hooks = NULL;
1775
 
  size_t interfaces_hooks_size = 0;
1776
1813
  
1777
1814
  bool gnutls_initialized = false;
1778
1815
  bool gpgme_initialized = false;
1869
1906
        connect_to = arg;
1870
1907
        break;
1871
1908
      case 'i':                 /* --interface */
1872
 
        ret_errno = argz_add_sep(&interfaces, &interfaces_size, arg,
1873
 
                                 (int)',');
 
1909
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
 
1910
                                 arg, (int)',');
1874
1911
        if(ret_errno != 0){
1875
1912
          argp_error(state, "%s", strerror(ret_errno));
1876
1913
        }
2003
2040
      }
2004
2041
    
2005
2042
      /* Lower privileges */
2006
 
      errno = 0;
2007
 
      ret = seteuid(uid);
2008
 
      if(ret == -1){
2009
 
        perror_plus("seteuid");
2010
 
      }
 
2043
      lower_privileges();
2011
2044
    }
2012
2045
  }
2013
2046
  
2014
 
  /* Remove empty interface names */
 
2047
  /* Remove invalid interface names (except "none") */
2015
2048
  {
2016
2049
    char *interface = NULL;
2017
 
    while((interface = argz_next(interfaces, interfaces_size,
 
2050
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2018
2051
                                 interface))){
2019
 
      if(if_nametoindex(interface) == 0){
2020
 
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
 
2052
      if(strcmp(interface, "none") != 0
 
2053
         and if_nametoindex(interface) == 0){
 
2054
        if(interface[0] != '\0'){
2021
2055
          fprintf_plus(stderr, "Not using nonexisting interface"
2022
2056
                       " \"%s\"\n", interface);
2023
2057
        }
2024
 
        argz_delete(&interfaces, &interfaces_size, interface);
 
2058
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
2025
2059
        interface = NULL;
2026
2060
      }
2027
2061
    }
2029
2063
  
2030
2064
  /* Run network hooks */
2031
2065
  {
2032
 
    
2033
 
    if(interfaces != NULL){
2034
 
      interfaces_hooks = malloc(interfaces_size);
 
2066
    if(mc.interfaces != NULL){
 
2067
      interfaces_hooks = malloc(mc.interfaces_size);
2035
2068
      if(interfaces_hooks == NULL){
2036
2069
        perror_plus("malloc");
2037
2070
        goto end;
2038
2071
      }
2039
 
      memcpy(interfaces_hooks, interfaces, interfaces_size);
2040
 
      interfaces_hooks_size = interfaces_size;
2041
 
      argz_stringify(interfaces_hooks, interfaces_hooks_size,
2042
 
                     (int)',');
 
2072
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
 
2073
      argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2043
2074
    }
2044
2075
    if(not run_network_hooks("start", interfaces_hooks != NULL ?
2045
2076
                             interfaces_hooks : "", delay)){
2127
2158
  }
2128
2159
  
2129
2160
  /* If no interfaces were specified, make a list */
2130
 
  if(interfaces == NULL){
 
2161
  if(mc.interfaces == NULL){
2131
2162
    struct dirent **direntries;
2132
2163
    /* Look for any good interfaces */
2133
2164
    ret = scandir(sys_class_net, &direntries, good_interface,
2135
2166
    if(ret >= 1){
2136
2167
      /* Add all found interfaces to interfaces list */
2137
2168
      for(int i = 0; i < ret; ++i){
2138
 
        ret_errno = argz_add(&interfaces, &interfaces_size,
 
2169
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2139
2170
                             direntries[i]->d_name);
2140
2171
        if(ret_errno != 0){
 
2172
          errno = ret_errno;
2141
2173
          perror_plus("argz_add");
2142
2174
          continue;
2143
2175
        }
2155
2187
    }
2156
2188
  }
2157
2189
  
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)){
 
2190
  /* Bring up interfaces which are down, and remove any "none"s */
 
2191
  {
2170
2192
    char *interface = NULL;
2171
 
    while((interface = argz_next(interfaces, interfaces_size,
 
2193
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2172
2194
                                 interface))){
 
2195
      /* If interface name is "none", stop bringing up interfaces.
 
2196
         Also remove all instances of "none" from the list */
 
2197
      if(strcmp(interface, "none") == 0){
 
2198
        argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2199
                    interface);
 
2200
        interface = NULL;
 
2201
        while((interface = argz_next(mc.interfaces,
 
2202
                                     mc.interfaces_size, interface))){
 
2203
          if(strcmp(interface, "none") == 0){
 
2204
            argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2205
                        interface);
 
2206
            interface = NULL;
 
2207
          }
 
2208
        }
 
2209
        break;
 
2210
      }
2173
2211
      bool interface_was_up = interface_is_up(interface);
2174
2212
      ret = bring_up_interface(interface, delay);
2175
2213
      if(not interface_was_up){
2180
2218
          ret_errno = argz_add(&interfaces_to_take_down,
2181
2219
                               &interfaces_to_take_down_size,
2182
2220
                               interface);
 
2221
          if(ret_errno != 0){
 
2222
            errno = ret_errno;
 
2223
            perror_plus("argz_add");
 
2224
          }
2183
2225
        }
2184
2226
      }
2185
2227
    }
2186
 
    free(interfaces);
2187
 
    interfaces = NULL;
2188
 
    interfaces_size = 0;
2189
2228
    if(debug and (interfaces_to_take_down == NULL)){
2190
2229
      fprintf_plus(stderr, "No interfaces were brought up\n");
2191
2230
    }
2192
2231
  }
2193
2232
  
 
2233
  /* If we only got one interface, explicitly use only that one */
 
2234
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
 
2235
    if(debug){
 
2236
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2237
                   mc.interfaces);
 
2238
    }
 
2239
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
 
2240
  }
 
2241
  
2194
2242
  if(quit_now){
2195
2243
    goto end;
2196
2244
  }
2254
2302
      exitcode = EX_USAGE;
2255
2303
      goto end;
2256
2304
    }
2257
 
  
 
2305
    
2258
2306
    if(quit_now){
2259
2307
      goto end;
2260
2308
    }
2290
2338
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2291
2339
                     (int)retry_interval);
2292
2340
      }
2293
 
      sleep((int)retry_interval);
 
2341
      sleep((unsigned int)retry_interval);
2294
2342
    }
2295
2343
    
2296
2344
    if (not quit_now){
2369
2417
  }
2370
2418
  
2371
2419
  /* Cleanup things */
 
2420
  free(mc.interfaces);
 
2421
  
2372
2422
  if(sb != NULL)
2373
2423
    avahi_s_service_browser_free(sb);
2374
2424