MXS-2402 Reject if masked field is referred to in UNION select

If the second or subsequent select of a UNION statement refers to
a field to be masked, then the statement must be rejected.
This commit is contained in:
Johan Wikman 2019-03-21 16:45:29 +02:00
parent ca8350ae35
commit 25f8931384
2 changed files with 83 additions and 2 deletions

View File

@ -84,7 +84,9 @@ bool MaskingFilterSession::check_query(GWBUF* pPacket)
bool rv = true;
if (rv && m_filter.config().prevent_function_usage())
const MaskingFilter::Config& config = m_filter.config();
if (rv && config.prevent_function_usage())
{
if (is_function_used(pPacket, zUser, zHost))
{
@ -92,7 +94,7 @@ bool MaskingFilterSession::check_query(GWBUF* pPacket)
}
}
if (rv && m_filter.config().check_user_variables())
if (rv && config.check_user_variables())
{
if (is_variable_defined(pPacket, zUser, zHost))
{
@ -100,6 +102,14 @@ bool MaskingFilterSession::check_query(GWBUF* pPacket)
}
}
if (rv && config.check_unions())
{
if (is_union_used(pPacket, zUser, zHost))
{
rv = false;
}
}
return rv;
}
@ -589,3 +599,73 @@ bool MaskingFilterSession::is_variable_defined(GWBUF* pPacket, const char* zUser
return is_defined;
}
bool MaskingFilterSession::is_union_used(GWBUF* pPacket, const char* zUser, const char* zHost)
{
if (qc_get_operation(pPacket) != QUERY_OP_SELECT)
{
return false;
}
bool is_used = false;
SMaskingRules sRules = m_filter.rules();
auto pred = [&sRules, zUser, zHost](const QC_FIELD_INFO& field_info) {
bool rv = false;
if (field_info.context & QC_FIELD_UNION)
{
if (strcmp(field_info.column, "*") == 0)
{
rv = true;
}
else
{
const MaskingRules::Rule* pRule = sRules->get_rule_for(field_info, zUser, zHost);
if (pRule)
{
rv = true;
}
}
}
return rv;
};
const QC_FIELD_INFO* pInfos;
size_t nInfos;
qc_get_field_info(pPacket, &pInfos, &nInfos);
const QC_FIELD_INFO* begin = pInfos;
const QC_FIELD_INFO* end = begin + nInfos;
auto i = std::find_if(begin, end, pred);
if (i != end)
{
const char* zColumn = i->column;
std::stringstream ss;
if (strcmp(zColumn, "*") == 0)
{
ss << "'*' is used in the second or subsequent SELECT of a UNION, which "
<< "may include a field that should be masked for '" << zUser << "'@'" << zHost
<< "', access is denied.";
}
else
{
ss << "The field " << zColumn << " that should be masked for '" << zUser << "'@'" << zHost
<< "' is used in the second or subsequent SELECT of a UNION, access is denied.";
}
set_response(create_error_response(ss.str().c_str()));
is_used = true;
}
return is_used;
}

View File

@ -67,6 +67,7 @@ private:
bool is_function_used(GWBUF* pPacket, const char* zUser, const char* zHost);
bool is_variable_defined(GWBUF* pPacket, const char* zUser, const char* zHost);
bool is_union_used(GWBUF* pPacket, const char* zUser, const char* zHost);
private:
typedef std::shared_ptr<MaskingRules> SMaskingRules;