/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: 2016-10-01 14:24:14 UTC
  • mto: This revision was merged to the branch mainline in revision 876.
  • Revision ID: teddy@recompile.se-20161001142414-y53pczg9ll0r2q4y
Tags: version-1.7.11-1
* Makefile (version): Change to 1.7.11.
* NEWS (Version 1.7.11): Add new entry.
* debian/changelog (1.7.11-1): - '' -

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-2018 Teddy Hogeborn
13
 
 * Copyright © 2008-2018 Björn Påhlsson
14
 
 * 
15
 
 * This file is part of Mandos.
16
 
 * 
17
 
 * Mandos is free software: you can redistribute it and/or modify it
18
 
 * under the terms of the GNU General Public License as published by
19
 
 * the Free Software Foundation, either version 3 of the License, or
20
 
 * (at your option) any later version.
21
 
 * 
22
 
 * Mandos is distributed in the hope that it will be useful, but
 
12
 * Copyright © 2008-2016 Teddy Hogeborn
 
13
 * Copyright © 2008-2016 Björn Påhlsson
 
14
 * 
 
15
 * This program is free software: you can redistribute it and/or
 
16
 * modify it under the terms of the GNU General Public License as
 
17
 * published by the Free Software Foundation, either version 3 of the
 
18
 * License, or (at your option) any later version.
 
19
 * 
 
20
 * This program is distributed in the hope that it will be useful, but
23
21
 * WITHOUT ANY WARRANTY; without even the implied warranty of
24
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25
23
 * General Public License for more details.
26
24
 * 
27
25
 * You should have received a copy of the GNU General Public License
28
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
26
 * along with this program.  If not, see
 
27
 * <http://www.gnu.org/licenses/>.
29
28
 * 
30
29
 * Contact the authors at <mandos@recompile.se>.
31
30
 */
613
612
        }
614
613
        params.size += (unsigned int)bytes_read;
615
614
      }
616
 
      close(dhpfile);
617
615
      if(params.data == NULL){
618
616
        dhparamsfilename = NULL;
619
617
      }
628
626
                     safer_gnutls_strerror(ret));
629
627
        dhparamsfilename = NULL;
630
628
      }
631
 
      free(params.data);
632
629
    } while(false);
633
630
  }
634
631
  if(dhparamsfilename == NULL){
1081
1078
    bool match = false;
1082
1079
    {
1083
1080
      char *interface = NULL;
1084
 
      while((interface = argz_next(mc->interfaces,
1085
 
                                   mc->interfaces_size,
1086
 
                                   interface))){
 
1081
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
1082
                                 interface))){
1087
1083
        if(if_nametoindex(interface) == (unsigned int)if_index){
1088
1084
          match = true;
1089
1085
          break;
1496
1492
  return retval;
1497
1493
}
1498
1494
 
 
1495
__attribute__((nonnull))
1499
1496
static void resolve_callback(AvahiSServiceResolver *r,
1500
1497
                             AvahiIfIndex interface,
1501
1498
                             AvahiProtocol proto,
1656
1653
      perror_plus("ioctl SIOCGIFFLAGS");
1657
1654
      errno = old_errno;
1658
1655
    }
1659
 
    close(s);
1660
1656
    return false;
1661
1657
  }
1662
 
  close(s);
1663
1658
  return true;
1664
1659
}
1665
1660
 
1926
1921
      return;
1927
1922
    }
1928
1923
  }
1929
 
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
1930
 
  if(devnull == -1){
1931
 
    perror_plus("open(\"/dev/null\", O_RDONLY)");
1932
 
    return;
1933
 
  }
1934
1924
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
1935
1925
                           runnable_hook, alphasort);
1936
1926
  if(numhooks == -1){
1937
1927
    perror_plus("scandir");
1938
 
    close(devnull);
1939
1928
    return;
1940
1929
  }
1941
1930
  struct dirent *direntry;
1942
1931
  int ret;
 
1932
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
 
1933
  if(devnull == -1){
 
1934
    perror_plus("open(\"/dev/null\", O_RDONLY)");
 
1935
    return;
 
1936
  }
1943
1937
  for(int i = 0; i < numhooks; i++){
1944
1938
    direntry = direntries[i];
1945
1939
    if(debug){
2201
2195
  
2202
2196
  /* Sleep checking until interface is running.
2203
2197
     Check every 0.25s, up to total time of delay */
2204
 
  for(int i = 0; i < delay * 4; i++){
 
2198
  for(int i=0; i < delay * 4; i++){
2205
2199
    if(interface_is_running(interface)){
2206
2200
      break;
2207
2201
    }
3028
3022
      /* Take down the network interfaces which were brought up */
3029
3023
      {
3030
3024
        char *interface = NULL;
3031
 
        while((interface = argz_next(interfaces_to_take_down,
3032
 
                                     interfaces_to_take_down_size,
3033
 
                                     interface))){
 
3025
        while((interface=argz_next(interfaces_to_take_down,
 
3026
                                   interfaces_to_take_down_size,
 
3027
                                   interface))){
3034
3028
          ret = take_down_interface(interface);
3035
3029
          if(ret != 0){
3036
3030
            errno = ret;
3065
3059
                                                | O_PATH));
3066
3060
    if(dir_fd == -1){
3067
3061
      perror_plus("open");
3068
 
      return;
3069
3062
    }
3070
3063
    int numentries = scandirat(dir_fd, ".", &direntries,
3071
3064
                               notdotentries, alphasort);
3088
3081
            clean_dir_at(dir_fd, direntries[i]->d_name, level+1);
3089
3082
            dret = 0;
3090
3083
          }
3091
 
          if((dret == -1) and (errno != ENOENT)){
 
3084
          if(dret == -1){
3092
3085
            fprintf_plus(stderr, "unlink(\"%s/%s\"): %s\n", dirname,
3093
3086
                         direntries[i]->d_name, strerror(errno));
3094
3087
          }
3098
3091
      
3099
3092
      /* need to clean even if 0 because man page doesn't specify */
3100
3093
      free(direntries);
 
3094
      if(numentries == -1){
 
3095
        perror_plus("scandirat");
 
3096
      }
3101
3097
      dret = unlinkat(base, dirname, AT_REMOVEDIR);
3102
3098
      if(dret == -1 and errno != ENOENT){
3103
3099
        perror_plus("rmdir");