Python: Add modeling for django.shortcuts.redirect

This commit is contained in:
Rasmus Wriedt Larsen
2021-01-29 15:41:00 +01:00
parent ff2f2b5792
commit 9c01aa2304
2 changed files with 86 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ private module Django {
* WARNING: Only holds for a few predefined attributes.
*/
private DataFlow::Node django_attr(DataFlow::TypeTracker t, string attr_name) {
attr_name in ["db", "urls", "http", "conf"] and
attr_name in ["db", "urls", "http", "conf", "shortcuts"] and
(
t.start() and
result = DataFlow::importNode("django" + "." + attr_name)
@@ -1649,6 +1649,62 @@ private module Django {
}
}
}
// -------------------------------------------------------------------------
// django.shortcuts
// -------------------------------------------------------------------------
/** Gets a reference to the `django.shortcuts` module. */
DataFlow::Node shortcuts() { result = django_attr("shortcuts") }
/** Provides models for the `django.shortcuts` module */
module shortcuts {
/**
* Gets a reference to the attribute `attr_name` of the `django.shortcuts` module.
* WARNING: Only holds for a few predefined attributes.
*/
private DataFlow::Node shortcuts_attr(DataFlow::TypeTracker t, string attr_name) {
attr_name in ["redirect"] and
(
t.start() and
result = DataFlow::importNode("django.shortcuts" + "." + attr_name)
or
t.startInAttr(attr_name) and
result = shortcuts()
)
or
// Due to bad performance when using normal setup with `shortcuts_attr(t2, attr_name).track(t2, t)`
// we have inlined that code and forced a join
exists(DataFlow::TypeTracker t2 |
exists(DataFlow::StepSummary summary |
shortcuts_attr_first_join(t2, attr_name, result, summary) and
t = t2.append(summary)
)
)
}
pragma[nomagic]
private predicate shortcuts_attr_first_join(
DataFlow::TypeTracker t2, string attr_name, DataFlow::Node res,
DataFlow::StepSummary summary
) {
DataFlow::StepSummary::step(shortcuts_attr(t2, attr_name), res, summary)
}
/**
* Gets a reference to the attribute `attr_name` of the `django.shortcuts` module.
* WARNING: Only holds for a few predefined attributes.
*/
private DataFlow::Node shortcuts_attr(string attr_name) {
result = shortcuts_attr(DataFlow::TypeTracker::end(), attr_name)
}
/**
* Gets a reference to the `django.shortcuts.redirect` function
*
* See https://docs.djangoproject.com/en/3.1/topics/http/shortcuts/#redirect
*/
DataFlow::Node redirect() { result = shortcuts_attr("redirect") }
}
}
// ---------------------------------------------------------------------------
@@ -1956,4 +2012,32 @@ private module Django {
)
}
}
// ---------------------------------------------------------------------------
// django.shortcuts.redirect
// ---------------------------------------------------------------------------
/**
* A call to `django.shortcuts.redirect`.
*
* Note: This works differently depending on what argument is used.
* _One_ option is to redirect to a full URL.
*
* See https://docs.djangoproject.com/en/3.1/topics/http/shortcuts/#redirect
*/
private class DjangoShortcutsRedirectCall extends HTTP::Server::HttpRedirectResponse::Range,
DataFlow::CfgNode {
override CallNode node;
DjangoShortcutsRedirectCall() { node.getFunction() = django::shortcuts::redirect().asCfgNode() }
override DataFlow::Node getRedirectLocation() {
result.asCfgNode() in [node.getArg(0), node.getArgByName("to")]
}
override DataFlow::Node getBody() { none() }
override DataFlow::Node getMimetypeOrContentTypeArg() { none() }
override string getMimetypeDefault() { none() }
}
}