forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.qll
More file actions
234 lines (195 loc) · 7.25 KB
/
Module.qll
File metadata and controls
234 lines (195 loc) · 7.25 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import python
private import semmle.python.pointsto.PointsTo
/** A module. This is the top level element in an AST, corresponding to a source file.
* It is also a Scope; the scope of global variables. */
class Module extends Module_, Scope, AstNode {
override string toString() {
result = this.getKind() + " " + this.getName()
or
/* No name is defined, which means that this is not on an import path. So it must be a script */
not exists(this.getName()) and not this.isPackage() and
result = "Script " + this.getFile().getShortName()
}
/** This method will be deprecated in the next release. Please use `getEnclosingScope()` instead.
* The enclosing scope of this module (always none) */
override Scope getScope() {
none()
}
/** The enclosing scope of this module (always none) */
override Scope getEnclosingScope() {
none()
}
/** Gets the statements forming the body of this module */
override StmtList getBody() {
result = Module_.super.getBody()
}
/** Gets the nth statement of this module */
override Stmt getStmt(int n) {
result = Module_.super.getStmt(n)
}
/** Gets a top-level statement in this module */
override Stmt getAStmt() {
result = Module_.super.getAStmt()
}
/** Gets the name of this module */
override string getName() {
result = Module_.super.getName() and legalDottedName(result)
or
not exists(Module_.super.getName()) and
result = moduleNameFromFile(this.getPath())
}
/** Gets this module */
override Module getEnclosingModule() {
result = this
}
/** Gets the __init__ module of this module if the module is a package and it has an __init__ module */
Module getInitModule() {
/* this.isPackage() and */ result.getName() = this.getName() + ".__init__"
}
/** Whether this module is a package initializer */
predicate isPackageInit() {
this.getName().matches("%\\_\\_init\\_\\_") and not this.isPackage()
}
/** Gets a name exported by this module, that is the names that will be added to a namespace by 'from this-module import *' */
string getAnExport() {
py_exports(this, result)
or
not PointsTo::module_defines_name(this, "__all__") and PointsTo::module_defines_name(this, result)
}
/** Gets the source file for this module */
File getFile() {
py_module_path(this, result)
}
/** Gets the source file or folder for this module or package */
Container getPath() {
py_module_path(this, result)
}
/** Whether this is a package */
predicate isPackage() {
this.getPath() instanceof Folder
}
/** Gets the package containing this module (or parent package if this is a package) */
Module getPackage() {
this.getName().matches("%.%") and
result.getName() = getName().regexpReplaceAll("\\.[^.]*$", "")
}
/** Gets the name of the package containing this module */
string getPackageName() {
this.getName().matches("%.%") and
result = getName().regexpReplaceAll("\\.[^.]*$", "")
}
/** Gets the metrics for this module */
ModuleMetrics getMetrics() {
result = this
}
/** Use ModuleObject.getAnImportedModule() instead.
* Gets a module imported by this module */
deprecated Module getAnImportedModule() {
result.getName() = this.getAnImportedModuleName()
}
string getAnImportedModuleName() {
exists(Import i | i.getEnclosingModule() = this | result = i.getAnImportedModuleName())
or
exists(ImportStar i | i.getEnclosingModule() = this | result = i.getImportedModuleName())
}
override Location getLocation() {
py_scope_location(result, this)
or
not py_scope_location(_, this) and
locations_ast(result, this, 0, 0, 0, 0)
}
/** Gets a child module or package of this package */
Module getSubModule(string name) {
result.getPackage() = this and
name = result.getName().regexpReplaceAll(".*\\.", "")
}
/** Whether name is declared in the __all__ list of this module */
predicate declaredInAll(string name)
{
exists(AssignStmt a, GlobalVariable all |
a.defines(all) and a.getScope() = this and
all.getId() = "__all__" and ((List)a.getValue()).getAnElt().(StrConst).getText() = name
)
}
override AstNode getAChildNode() {
result = this.getAStmt()
}
predicate hasFromFuture(string attr) {
exists(Import i, ImportMember im, ImportExpr ie, Alias a, Name name |
im.getModule() = ie and ie.getName() = "__future__" and
a.getAsname() = name and name.getId() = attr and
i.getASubExpression() = im and
i.getAName() = a and
i.getEnclosingModule() = this
)
}
/** Gets the path element from which this module was loaded. */
Container getLoadPath() {
result = this.getPath().getImportRoot()
}
/** Holds if this module is in the standard library for version `major.minor` */
predicate inStdLib(int major, int minor) {
this.getLoadPath().isStdLibRoot(major, minor)
}
/** Holds if this module is in the standard library */
predicate inStdLib() {
this.getLoadPath().isStdLibRoot()
}
override
predicate containsInScope(AstNode inner) {
Scope.super.containsInScope(inner)
}
override
predicate contains(AstNode inner) {
Scope.super.contains(inner)
}
/** Gets the kind of this module. */
override string getKind() {
if this.isPackage() then
result = "Package"
else (
not exists(Module_.super.getKind()) and result = "Module"
or
result = Module_.super.getKind()
)
}
}
bindingset[name]
private predicate legalDottedName(string name) {
name.regexpMatch("(\\p{L}|_)(\\p{L}|\\d|_)*(\\.(\\p{L}|_)(\\p{L}|\\d|_)*)*")
}
bindingset[name]
private predicate legalShortName(string name) {
name.regexpMatch("(\\p{L}|_)(\\p{L}|\\d|_)*")
}
/** Holds if `f` is potentially a source package.
* Does it have an __init__.py file and is it within the source archive?
*/
private predicate isPotentialSourcePackage(Folder f) {
f.getRelativePath() != "" and
exists(f.getFile("__init__.py"))
}
private string moduleNameFromBase(Container file) {
file instanceof Folder and result = file.getBaseName()
or
file instanceof File and result = file.getStem()
}
private string moduleNameFromFile(Container file) {
exists(string basename |
basename = moduleNameFromBase(file) and
legalShortName(basename)
|
result = moduleNameFromFile(file.getParent()) + "." + basename
or
isPotentialSourcePackage(file) and result = file.getStem() and
(not isPotentialSourcePackage(file.getParent()) or not legalShortName(file.getParent().getBaseName()))
or
result = file.getStem() and file.getParent() = file.getImportRoot()
or
result = file.getStem() and isStubRoot(file.getParent())
)
}
private predicate isStubRoot(Folder f) {
not f.getParent*().isImportRoot() and
f.getAbsolutePath().matches("%/data/python/stubs")
}