forked from openvinotoolkit/model_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib_search.py
180 lines (147 loc) · 6.99 KB
/
lib_search.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#No header files detected
# Copyright (c) 2020-2021 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import sys
import re
COPYRIGHT = re.compile(r'Copyright')
INTEL_COPYRIGHT = re.compile(r'Copyright (\(c\) )?(201(8|9)-)?20(20|19|18) Intel Corporation')
FORBIDDEN_FUNCTIONS = re.compile(r'setjmp\(|longjmp\(|getwd\(|strlen\(|wcslen\(|gets\(|strcpy\(|wcscpy\(|strcat\(|wcscat\(|sprintf\(|vsprintf\(|asctime\(')
def check_header(fd):
result = False
detected = False
try:
for line in fd:
if COPYRIGHT.findall(line):
detected = True
if INTEL_COPYRIGHT.findall(line):
result = True
break
except:
print("ERROR: Cannot parse file:" + str(fd))
return detected, result
def check_function(fd):
# Add space separated exceptions for given file in the dictionary
fix_applied = {"./src/test/ensemble_flow_custom_node_tests.cpp":"size_t strLen = std::strlen(str);size_t prefixLen = std::strlen(prefix);",}
result = False
detected = False
try:
for line in fd:
found = FORBIDDEN_FUNCTIONS.findall(line)
if found:
if line.trim() in fix_applied[fd.name]:
#It's ok fix and check was applied and verified
continue
detected = True
print("ERROR: Forbidden function detected in:" + str(fd.name))
print("Line start:" + str(line) + "End")
print("Function:" + str(found))
break
except:
print("ERROR: Cannot parse file:" + str(fd))
return detected
def check_dir(start_dir):
ok = []
not_ok = []
no_header = []
exclude_files = ['__pycache__', '.bandit', '.venv', '.pytest_cache', '.vscode', 'ovms-c/dist', '.git', '.gif', '.tar.gz', 'docx',
'.npy', '.png', '.svg', '.bin', '.jpeg', '.jpg', 'license.txt', 'md', '.groovy', '.json', '.proto', 'bazel-',
'Doxyfile', 'clang-format','net_http.patch', 'tftext.patch', 'tf.patch', 'client_requirements.txt',
'openvino.LICENSE.txt', 'c-ares.LICENSE.txt', 'zlib.LICENSE.txt', 'boost.LICENSE.txt',
'libuuid.LICENSE.txt', 'input_images.txt', 'REST_age_gender.ipynb', 'dummy.xml', 'listen.patch', 'add.xml',
'requirements.txt', 'missing_headers.txt', 'libevent/BUILD', 'azure_sdk.patch', 'rest_sdk_v2.10.16.patch', '.wav',
'forbidden_functions.txt', 'missing_headers.txt', 'increment_1x3x4x5.xml', 'horizontal-text-detection.gif', 'model.xml',
'summator.xml', 'resnet_images.txt', 'vehicle_images.txt', 'horizontal-text-detection-ocr.gif', '.pdf', "index.html"]
exclude_directories = ['/dist/', 'extras/ovms-operator', 'extras/openvino-operator-openshift']
for (d_path, dir_set, file_set) in os.walk(start_dir):
for f_name in file_set:
skip = False
for excluded in exclude_directories:
if excluded in d_path:
skip = True
print('Warning - Skipping directory - ' + d_path + ' for file - ' + f_name)
break
if skip:
continue
fpath = os.path.join(d_path, f_name)
if not [test for test in exclude_files if test in fpath]:
with open(fpath, 'r') as fd:
header_detected, result = check_header(fd)
if header_detected:
if result:
ok.append(fpath)
else:
not_ok.append(fpath)
else:
no_header.append(fpath)
return not_ok, no_header
def check_func(start_dir):
ok = []
not_ok = []
exclude_files = ['__pycache__', '.venv', '.pytest_cache', '.vscode', 'ovms-c/dist', '.git', '.tar.gz', 'docx',
'.npy', '.png', '.svg', '.bin', '.jpeg', '.jpg', 'license.txt', 'md', '.groovy', '.json' ,'bazel-',
'Doxyfile', 'clang-format','net_http.patch', 'tftext.patch', 'tf.patch', 'client_requirements.txt',
'openvino.LICENSE.txt', 'c-ares.LICENSE.txt', 'zlib.LICENSE.txt', 'boost.LICENSE.txt',
'libuuid.LICENSE.txt', 'input_images.txt', 'REST_age_gender.ipynb', 'dummy.xml', 'listen.patch', 'add.xml',
'requirements.txt', 'missing_headers.txt', 'libevent/BUILD', 'azure_sdk.patch', 'rest_sdk_v2.10.16.patch', 'forbidden_functions.txt', 'missing_headers.txt',
'summator.xml']
exclude_directories = ['/dist/', 'extras/ovms-operator']
for (d_path, dir_set, file_set) in os.walk(start_dir):
for f_name in file_set:
skip = False
for excluded in exclude_directories:
if excluded in d_path:
skip = True
print('Warning - Skipping directory - ' + d_path + ' for file - ' + f_name)
break
if skip:
continue
fpath = os.path.join(d_path, f_name)
if not [test for test in exclude_files if test in fpath]:
with open(fpath, 'r') as fd:
detected = check_function(fd)
if detected:
not_ok.append(fpath)
else:
ok.append(fpath)
return not_ok
def main():
if len(sys.argv) < 2:
print('Provide start dir!')
else:
start_dir = sys.argv[1]
print('Provided start dir:' + start_dir)
if len(sys.argv) > 2 and sys.argv[2] == 'functions':
print("Check for forbidden functions")
forbidden_func = check_func(start_dir)
if len(forbidden_func) == 0:
print('Success: All files checked for forbidden functions')
else:
print('#########################')
print('## Forbidden functions detected:')
for forbid_func in forbidden_func:
print(f'{forbid_func}')
else:
print("Check for missing headers")
external_component_set, no_header_set = check_dir(start_dir)
if len(no_header_set) == 0:
print('Success: All files have headers')
else:
print('#########################')
print('## No header files detected:')
for no_header in no_header_set:
print(f'{no_header}')
if __name__ == '__main__':
main()