Browse Source

Fix bug of recursive depth protection.

tags/v1.5.1
zhaozhixuan 3 years ago
parent
commit
3996f5df10
4 changed files with 14 additions and 24 deletions
  1. +5
    -11
      ge/common/ge/tbe_plugin_manager.cc
  2. +2
    -1
      ge/common/ge/tbe_plugin_manager.h
  3. +5
    -11
      ge/session/omg.cc
  4. +2
    -1
      inc/framework/omg/omg.h

+ 5
- 11
ge/common/ge/tbe_plugin_manager.cc View File

@@ -104,14 +104,12 @@ void TBEPluginManager::ProcessSoFullName(vector<string> &file_list, string &caff
} }
} }


void TBEPluginManager::FindParserSo(const string &path, vector<string> &file_list, string &caffe_parser_path) {
static uint32_t temp_depth = 0;
void TBEPluginManager::FindParserSo(const string &path, vector<string> &file_list,
string &caffe_parser_path, uint32_t recursive_depth) {
static const uint32_t max_recursive_depth = 20; // For recursive depth protection static const uint32_t max_recursive_depth = 20; // For recursive depth protection


temp_depth++;
if (temp_depth >= max_recursive_depth) {
GELOGW("Recursive depth is become %u, Please check input!", temp_depth);
temp_depth--;
if (recursive_depth >= max_recursive_depth) {
GELOGW("Recursive depth is become %u, Please check input!", recursive_depth);
return; return;
} }


@@ -120,14 +118,12 @@ void TBEPluginManager::FindParserSo(const string &path, vector<string> &file_lis
// Plugin path does not exist // Plugin path does not exist
if (real_path.empty()) { if (real_path.empty()) {
GELOGW("RealPath is empty."); GELOGW("RealPath is empty.");
temp_depth--;
return; return;
} }
INT32 is_dir = mmIsDir(real_path.c_str()); INT32 is_dir = mmIsDir(real_path.c_str());
// Lib plugin path not exist // Lib plugin path not exist
if (is_dir != EN_OK) { if (is_dir != EN_OK) {
GELOGW("%s is not a dir. errmsg:%s", real_path.c_str(), strerror(errno)); GELOGW("%s is not a dir. errmsg:%s", real_path.c_str(), strerror(errno));
temp_depth--;
return; return;
} }


@@ -135,7 +131,6 @@ void TBEPluginManager::FindParserSo(const string &path, vector<string> &file_lis
auto ret = mmScandir(real_path.c_str(), &entries, nullptr, nullptr); auto ret = mmScandir(real_path.c_str(), &entries, nullptr, nullptr);
if (ret < EN_OK) { if (ret < EN_OK) {
GELOGW("scan dir failed. path = %s, ret = %d, errmsg = %s", real_path.c_str(), ret, strerror(errno)); GELOGW("scan dir failed. path = %s, ret = %d, errmsg = %s", real_path.c_str(), ret, strerror(errno));
temp_depth--;
return; return;
} }
for (int i = 0; i < ret; ++i) { for (int i = 0; i < ret; ++i) {
@@ -151,11 +146,10 @@ void TBEPluginManager::FindParserSo(const string &path, vector<string> &file_lis
ProcessSoFullName(file_list, caffe_parser_path, full_name, caffe_parser_so_suff, aicpu_so_suff, ProcessSoFullName(file_list, caffe_parser_path, full_name, caffe_parser_so_suff, aicpu_so_suff,
aicpu_host_so_suff); aicpu_host_so_suff);
} else { } else {
FindParserSo(full_name, file_list, caffe_parser_path);
FindParserSo(full_name, file_list, caffe_parser_path, recursive_depth + 1);
} }
} }
mmScandirFree(entries, ret); mmScandirFree(entries, ret);
temp_depth--;
} }


void TBEPluginManager::GetPluginSoFileList(const string &path, vector<string> &file_list, string &caffe_parser_path) { void TBEPluginManager::GetPluginSoFileList(const string &path, vector<string> &file_list, string &caffe_parser_path) {


+ 2
- 1
ge/common/ge/tbe_plugin_manager.h View File

@@ -57,7 +57,8 @@ class TBEPluginManager {
static void ProcessSoFullName(vector<string> &file_list, string &caffe_parser_path, string &full_name, static void ProcessSoFullName(vector<string> &file_list, string &caffe_parser_path, string &full_name,
const string &caffe_parser_so_suff, const string &aicpu_so_suff, const string &caffe_parser_so_suff, const string &aicpu_so_suff,
const string &aicpu_host_so_suff); const string &aicpu_host_so_suff);
static void FindParserSo(const string &path, vector<string> &file_list, string &caffe_parser_path);
static void FindParserSo(const string &path, vector<string> &file_list, string &caffe_parser_path,
uint32_t recursive_depth = 0);
static void GetPluginSoFileList(const string &path, vector<string> &file_list, string &caffe_parser_path); static void GetPluginSoFileList(const string &path, vector<string> &file_list, string &caffe_parser_path);
static void GetCustomOpPath(std::string &customop_path); static void GetCustomOpPath(std::string &customop_path);
void LoadCustomOpLib(); void LoadCustomOpLib();


+ 5
- 11
ge/session/omg.cc View File

@@ -220,26 +220,22 @@ static Status ParseOutputFp16NodesFormat(const string &is_output_fp16) {
return SUCCESS; return SUCCESS;
} }


void FindParserSo(const string &path, vector<string> &file_list, string &caffe_parser_path) {
static uint32_t temp_depth = 0;
void FindParserSo(const string &path, vector<string> &file_list,
string &caffe_parser_path, uint32_t recursive_depth) {
static const uint32_t max_recursive_depth = 20; // For recursive depth protection static const uint32_t max_recursive_depth = 20; // For recursive depth protection


temp_depth++;
if (temp_depth >= max_recursive_depth) {
GELOGW("Recursive depth is become %u, Please check input!", temp_depth);
temp_depth--;
if (recursive_depth >= max_recursive_depth) {
GELOGW("Recursive depth is become %u, Please check input!", recursive_depth);
return; return;
} }
// path, Change to absolute path // path, Change to absolute path
string real_path = RealPath(path.c_str()); string real_path = RealPath(path.c_str());
if (real_path.empty()) { // plugin path does not exist if (real_path.empty()) { // plugin path does not exist
temp_depth--;
return; return;
} }
struct stat stat_buf; struct stat stat_buf;
if ((stat(real_path.c_str(), &stat_buf) != 0) || (!S_ISDIR(stat_buf.st_mode))) { if ((stat(real_path.c_str(), &stat_buf) != 0) || (!S_ISDIR(stat_buf.st_mode))) {
GELOGI("The path %s is not a directory.", real_path.c_str()); GELOGI("The path %s is not a directory.", real_path.c_str());
temp_depth--;
return; return;
} }


@@ -248,7 +244,6 @@ void FindParserSo(const string &path, vector<string> &file_list, string &caffe_p


if (nullptr == dir) { // plugin path does not exist if (nullptr == dir) { // plugin path does not exist
GELOGW("Open directory %s failed.", path.c_str()); GELOGW("Open directory %s failed.", path.c_str());
temp_depth--;
return; return;
} }


@@ -269,10 +264,9 @@ void FindParserSo(const string &path, vector<string> &file_list, string &caffe_p
continue; continue;
} }


FindParserSo(full_name, file_list, caffe_parser_path);
FindParserSo(full_name, file_list, caffe_parser_path, recursive_depth + 1);
} }
closedir(dir); closedir(dir);
temp_depth--;
return; return;
} }




+ 2
- 1
inc/framework/omg/omg.h View File

@@ -91,7 +91,8 @@ GE_FUNC_VISIBILITY Status ConvertFwkModelToJson(domi::FrameworkType framework, c


GE_FUNC_VISIBILITY void GetGroupName(ge::proto::ModelDef &model); GE_FUNC_VISIBILITY void GetGroupName(ge::proto::ModelDef &model);


GE_FUNC_VISIBILITY void FindParserSo(const string &path, vector<string> &fileList, string &caffe_parser_path);
GE_FUNC_VISIBILITY void FindParserSo(const string &path, vector<string> &fileList, string &caffe_parser_path,
uint32_t recursive_depth = 0);


GE_FUNC_VISIBILITY Status DumpInfershapeJson(const ge::Graph &graph, const char *json_file); GE_FUNC_VISIBILITY Status DumpInfershapeJson(const ge::Graph &graph, const char *json_file);




Loading…
Cancel
Save