/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 plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2014-06-14 23:29:00 UTC
  • Revision ID: teddy@recompile.se-20140614232900-vhcywskev4u8rz2d
mandos-client: Fix some bugs on error conditions.

* plugins.d/mandos-client.c (run_network_hooks): Init "dirent" to NULL
                                                 and, later, always
                                                 free() it unless
                                                 scandirat() or
                                                 scandir() failed.
  (main): Fix free() of uninitalized memory in case scandirat() or
          scandir() of "/sys/class/net" failed.  Also, when cleaning
          up, even if GPGME temp directory is empty, do
          free(direntries) and remove the directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
#define BUFFER_SIZE 256
77
77
 
78
78
#define PDIR "/lib/mandos/plugins.d"
79
 
#define PHDIR "/lib/mandos/plugin-helpers"
80
79
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
81
80
 
82
81
const char *argp_program_version = "plugin-runner " VERSION;
348
347
 
349
348
int main(int argc, char *argv[]){
350
349
  char *plugindir = NULL;
351
 
  char *pluginhelperdir = NULL;
352
350
  char *argfile = NULL;
353
351
  FILE *conffp;
354
 
  struct dirent **direntries = NULL;
 
352
  struct dirent **direntries;
355
353
  struct stat st;
356
354
  fd_set rfds_all;
357
355
  int ret, maxfd = 0;
416
414
      .doc = "Group ID the plugins will run as", .group = 3 },
417
415
    { .name = "debug", .key = 132,
418
416
      .doc = "Debug mode", .group = 4 },
419
 
    { .name = "plugin-helper-dir", .key = 133,
420
 
      .arg = "DIRECTORY",
421
 
      .doc = "Specify a different plugin helper directory",
422
 
      .group = 2 },
423
417
    /*
424
418
     * These reproduce what we would get without ARGP_NO_HELP
425
419
     */
551
545
    case 132:                   /* --debug */
552
546
      debug = true;
553
547
      break;
554
 
    case 133:                   /* --plugin-helper-dir */
555
 
      free(pluginhelperdir);
556
 
      pluginhelperdir = strdup(arg);
557
 
      if(pluginhelperdir != NULL){
558
 
        errno = 0;
559
 
      }
560
 
      break;
561
548
      /*
562
549
       * These reproduce what we would get without ARGP_NO_HELP
563
550
       */
614
601
    case 130:                   /* --userid */
615
602
    case 131:                   /* --groupid */
616
603
    case 132:                   /* --debug */
617
 
    case 133:                   /* --plugin-helper-dir */
618
604
    case '?':                   /* --help */
619
605
    case -3:                    /* --usage */
620
606
    case 'V':                   /* --version */
775
761
    goto fallback;
776
762
  }
777
763
  
778
 
  {
779
 
    char *pluginhelperenv;
780
 
    bool bret = true;
781
 
    ret = asprintf(&pluginhelperenv, "MANDOSPLUGINHELPERDIR=%s",
782
 
                   pluginhelperdir != NULL ? pluginhelperdir : PHDIR);
783
 
    if(ret != -1){
784
 
      bret = add_environment(getplugin(NULL), pluginhelperenv, true);
785
 
    }
786
 
    if(ret == -1 or not bret){
787
 
      error(0, errno, "Failed to set MANDOSPLUGINHELPERDIR"
788
 
            " environment variable to \"%s\" for all plugins\n",
789
 
            pluginhelperdir != NULL ? pluginhelperdir : PHDIR);
790
 
    }
791
 
    if(ret != -1){
792
 
      free(pluginhelperenv);
793
 
    }
794
 
  }
795
 
  
796
764
  if(debug){
797
765
    for(plugin *p = plugin_list; p != NULL; p=p->next){
798
766
      fprintf(stderr, "Plugin: %s has %d arguments\n",
861
829
    ret = set_cloexec_flag(dir_fd);
862
830
    if(ret < 0){
863
831
      error(0, errno, "set_cloexec_flag");
 
832
      TEMP_FAILURE_RETRY(close(dir_fd));
864
833
      exitstatus = EX_OSERR;
865
834
      goto fallback;
866
835
    }
906
875
#endif  /* not __GLIBC__ */
907
876
  if(numplugins == -1){
908
877
    error(0, errno, "Could not scan plugin dir");
909
 
    direntries = NULL;
 
878
    TEMP_FAILURE_RETRY(close(dir_fd));
910
879
    exitstatus = EX_OSERR;
911
880
    goto fallback;
912
881
  }
919
888
    int plugin_fd = openat(dir_fd, direntries[i]->d_name, O_RDONLY);
920
889
    if(plugin_fd == -1){
921
890
      error(0, errno, "Could not open plugin");
922
 
      free(direntries[i]);
923
891
      continue;
924
892
    }
925
893
    ret = (int)TEMP_FAILURE_RETRY(fstat(plugin_fd, &st));
926
894
    if(ret == -1){
927
895
      error(0, errno, "stat");
928
896
      TEMP_FAILURE_RETRY(close(plugin_fd));
929
 
      free(direntries[i]);
930
897
      continue;
931
898
    }
932
899
    
941
908
                direntries[i]->d_name);
942
909
      }
943
910
      TEMP_FAILURE_RETRY(close(plugin_fd));
944
 
      free(direntries[i]);
945
911
      continue;
946
912
    }
947
913
    
949
915
    if(p == NULL){
950
916
      error(0, errno, "getplugin");
951
917
      TEMP_FAILURE_RETRY(close(plugin_fd));
952
 
      free(direntries[i]);
953
918
      continue;
954
919
    }
955
920
    if(p->disabled){
958
923
                direntries[i]->d_name);
959
924
      }
960
925
      TEMP_FAILURE_RETRY(close(plugin_fd));
961
 
      free(direntries[i]);
962
926
      continue;
963
927
    }
964
928
    {
997
961
    if(ret == -1){
998
962
      error(0, errno, "pipe");
999
963
      exitstatus = EX_OSERR;
1000
 
      free(direntries[i]);
1001
964
      goto fallback;
1002
965
    }
1003
966
    if(pipefd[0] >= FD_SETSIZE){
1006
969
      TEMP_FAILURE_RETRY(close(pipefd[0]));
1007
970
      TEMP_FAILURE_RETRY(close(pipefd[1]));
1008
971
      exitstatus = EX_OSERR;
1009
 
      free(direntries[i]);
1010
972
      goto fallback;
1011
973
    }
1012
974
#ifndef O_CLOEXEC
1017
979
      TEMP_FAILURE_RETRY(close(pipefd[0]));
1018
980
      TEMP_FAILURE_RETRY(close(pipefd[1]));
1019
981
      exitstatus = EX_OSERR;
1020
 
      free(direntries[i]);
1021
982
      goto fallback;
1022
983
    }
1023
984
    ret = set_cloexec_flag(pipefd[1]);
1026
987
      TEMP_FAILURE_RETRY(close(pipefd[0]));
1027
988
      TEMP_FAILURE_RETRY(close(pipefd[1]));
1028
989
      exitstatus = EX_OSERR;
1029
 
      free(direntries[i]);
1030
990
      goto fallback;
1031
991
    }
1032
992
#endif  /* not O_CLOEXEC */
1037
997
    if(ret < 0){
1038
998
      error(0, errno, "sigprocmask");
1039
999
      exitstatus = EX_OSERR;
1040
 
      free(direntries[i]);
1041
1000
      goto fallback;
1042
1001
    }
1043
1002
    /* Starting a new process to be watched */
1052
1011
      TEMP_FAILURE_RETRY(close(pipefd[0]));
1053
1012
      TEMP_FAILURE_RETRY(close(pipefd[1]));
1054
1013
      exitstatus = EX_OSERR;
1055
 
      free(direntries[i]);
1056
1014
      goto fallback;
1057
1015
    }
1058
1016
    if(pid == 0){
1097
1055
        error(0, errno, "sigprocmask");
1098
1056
      }
1099
1057
      exitstatus = EX_OSERR;
1100
 
      free(direntries[i]);
1101
1058
      goto fallback;
1102
1059
    }
1103
 
    free(direntries[i]);
1104
1060
    
1105
1061
    new_plugin->pid = pid;
1106
1062
    new_plugin->fd = pipefd[0];
1136
1092
    }
1137
1093
  }
1138
1094
  
1139
 
  free(direntries);
1140
 
  direntries = NULL;
1141
1095
  TEMP_FAILURE_RETRY(close(dir_fd));
1142
 
  dir_fd = -1;
1143
1096
  free_plugin(getplugin(NULL));
1144
1097
  
1145
1098
  for(plugin *p = plugin_list; p != NULL; p = p->next){
1339
1292
    free(custom_argv);
1340
1293
  }
1341
1294
  
1342
 
  free(direntries);
1343
 
  
1344
1295
  if(dir_fd != -1){
1345
1296
    TEMP_FAILURE_RETRY(close(dir_fd));
1346
1297
  }
1368
1319
  free_plugin_list();
1369
1320
  
1370
1321
  free(plugindir);
1371
 
  free(pluginhelperdir);
1372
1322
  free(argfile);
1373
1323
  
1374
1324
  return exitstatus;