Skip to content

Commit

Permalink
use the class hierarchy from TypeScript in the callgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-krogh committed Jan 27, 2024
1 parent 661c5cf commit 3d9695a
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,35 @@ module CallGraph {
or
imprecision = 0 and
result = callgraphStep(function, t)
or
t.start() and
imprecision = 0 and
function = getTypedCallee(result)
}

/**
* Gets a class that implements (or is) the given `type`.
*/
private ClassDefinition getAnImplementationClass(Type type) {
exists(InterfaceType inter | inter = type |
result.getSuperClassDefinition*().getASuperInterface().getType() = inter
)
or
exists(ClassType classType | classType = type |
result.getSuperClassDefinition*() = classType.getClass()
)
}

/**
* Gets a function that the given `callee` refers to through the TypeScript class hierarchy.
*/
private DataFlow::FunctionNode getTypedCallee(DataFlow::PropRead callee) {
exists(Type baseType, ClassDefinition impl, string name |
callee.getBase().asExpr().getType() = baseType and
impl = getAnImplementationClass(baseType) and
callee.getPropertyName() = name and
impl.getInstanceMethod(name) = result.getFunction()
)
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ typeInferenceMismatch
| tst.js:2:13:2:20 | source() | tst.js:48:10:48:22 | new Buffer(x) |
| tst.js:2:13:2:20 | source() | tst.js:51:10:51:31 | seriali ... ript(x) |
| tst.js:2:13:2:20 | source() | tst.js:54:14:54:19 | unsafe |
| typed.ts:23:18:23:25 | source() | typed.ts:11:14:11:14 | s |
| xml.js:5:18:5:25 | source() | xml.js:8:14:8:17 | text |
| xml.js:12:17:12:24 | source() | xml.js:13:14:13:19 | result |
| xml.js:23:18:23:25 | source() | xml.js:20:14:20:17 | attr |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@
| thisAssignments.js:7:19:7:26 | source() | thisAssignments.js:8:10:8:20 | this.field2 |
| tst.js:2:13:2:20 | source() | tst.js:4:10:4:10 | x |
| tst.js:2:13:2:20 | source() | tst.js:54:14:54:19 | unsafe |
| typed.ts:23:18:23:25 | source() | typed.ts:11:14:11:14 | s |
Empty file.
25 changes: 25 additions & 0 deletions javascript/ql/test/library-tests/TaintTracking/typed.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
declare function source(): any;
declare function sink(taint: any): any;


interface Thing {
do(s: string): void;
}

class ThingImpl implements Thing {
do(s: string): void {
sink(s);
}
}

class ThingDoer {
thing: Thing;
doThing(s: string): void {
this.thing.do(s);
}
}

export function run(doer: ThingDoer): void {
doer.doThing(source());
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
| tst.ts:4:5:4:21 | x.method("Hello") | tst.ts:15:3:17:3 | public ... x);\\n } |
| tst.ts:4:5:4:21 | x.method("Hello") | tst.ts:21:3:23:3 | public ... ");\\n } |
| tst.ts:9:17:9:33 | new AngryLogger() | tst.ts:20:34:20:33 | (...arg ... rgs); } |
| tst.ts:10:5:10:49 | (newLog ... hello") | tst.ts:15:3:17:3 | public ... x);\\n } |
| tst.ts:10:5:10:49 | (newLog ... hello") | tst.ts:21:3:23:3 | public ... ");\\n } |
Expand Down

0 comments on commit 3d9695a

Please sign in to comment.