Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape new lines for SafeQuery quoted strings; disallow new lines for SafeQuery identifiers #52

Merged
merged 6 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 27 additions & 13 deletions mug-guava/src/main/java/com/google/mu/safesql/SafeQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
import com.google.mu.util.Substring;

/**
* Facade class to generate queries based on a string template in the syntax of {@link StringFormat},
* with compile-time guard rails and runtime protection against SQL injection and programmer mistakes.
* Special characters of string expressions are automatically escaped to prevent SQL injection errors.
* Facade class to generate queries based on a string template in the syntax of {@link
* StringFormat}, with compile-time guard rails and runtime protection against SQL injection and
* programmer mistakes. Special characters of string expressions are automatically escaped to
* prevent SQL injection errors.
*
* <p>A SafeQuery encapsulates the query string. You can use {@link #toString} to access the query
* string.
Expand All @@ -39,9 +40,10 @@
*/
@Immutable
public final class SafeQuery {
private static final String TRUSTED_SQL_TYPE_NAME = firstNonNull(
System.getProperty("com.google.mu.safesql.SafeQuery.trusted_sql_type"),
"com.google.storage.googlesql.safesql.TrustedSqlString");
private static final String TRUSTED_SQL_TYPE_NAME =
firstNonNull(
System.getProperty("com.google.mu.safesql.SafeQuery.trusted_sql_type"),
"com.google.storage.googlesql.safesql.TrustedSqlString");

private final String query;

Expand Down Expand Up @@ -119,9 +121,12 @@ public static SafeQuery of(@CompileTimeConstant String query) {
* </ul>
*/
public static StringFormat.To<SafeQuery> template(@CompileTimeConstant String formatString) {
return template(formatString, value -> {
throw new IllegalArgumentException("Unsupported argument type: " + value.getClass().getName());
});
return template(
formatString,
value -> {
throw new IllegalArgumentException(
"Unsupported argument type: " + value.getClass().getName());
});
}

static StringFormat.To<SafeQuery> template(
Expand Down Expand Up @@ -213,7 +218,8 @@ private static String unquoted(
"Symbols should be wrapped inside %s;\n"
+ "subqueries must be wrapped in another SafeQuery object;\n"
+ "and string literals must be quoted like '%s'",
TRUSTED_SQL_TYPE_NAME, placeholder);
TRUSTED_SQL_TYPE_NAME,
placeholder);
return byDefault.apply(value);
}

Expand All @@ -226,9 +232,17 @@ private static String quotedBy(char quoteChar, Substring.Match placeholder, Obje
quoteChar,
placeholder,
quoteChar);
return first(CharPredicate.is('\\').or(quoteChar))
return first(CharPredicate.is('\\').or(quoteChar).or('\n').or('\r'))
.repeatedly()
.replaceAllFrom(value.toString(), c -> "\\" + c);
.replaceAllFrom(
value.toString(),
c -> {
switch (c.charAt(0)) {
case '\r': return "\\r";
case '\n': return "\\n";
default: return "\\" + c;
}
});
}

private static String backquoted(Substring.Match placeholder, Object value) {
Expand All @@ -238,7 +252,7 @@ private static String backquoted(Substring.Match placeholder, Object value) {
String name = removeQuotes('`', value.toString(), '`'); // ok if already backquoted
// Make sure the backquoted string doesn't contain some special chars that may cause trouble.
checkArgument(
CharMatcher.anyOf("'\"`()[]{}\\~!@$^*,/?;").matchesNoneOf(name),
CharMatcher.anyOf("'\"`()[]{}\\~!@$^*,/?;\r\n").matchesNoneOf(name),
"placeholder value for `%s` (%s) contains illegal character",
placeholder,
name);
Expand Down
60 changes: 51 additions & 9 deletions mug-guava/src/test/java/com/google/mu/safesql/SafeQueryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,48 @@ public void backslashEscapedWithinDoubleQuote() {
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = \"\\\\1\""));
}

@Test
public void newLineEscapedWithinSingleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = '{id}'").with("\n"))
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = '\\n'"));
}

@Test
public void newLineEscapedWithinDoubleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = \"{id}\"").with("\n"))
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = \"\\n\""));
}

@Test
public void newLineDisallowedWithinBackticks() {
StringFormat.To<SafeQuery> template = template("SELECT * FROM `{tbl}`");
assertThrows(IllegalArgumentException.class, () -> template.with(/* tbl */ "a\nb"));
}

@Test
public void carriageReturnEscapedWithinSingleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = '{id}'").with("\r"))
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = '\\r'"));
}

@Test
public void carriageReturnEscapedWithinDoubleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = \"{id}\"").with("\r"))
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = \"\\r\""));
}

@Test
public void carriageReturnDisallowedWithinBackticks() {
StringFormat.To<SafeQuery> template = template("SELECT * FROM `{tbl}`");
assertThrows(IllegalArgumentException.class, () -> template.with(/* tbl */ "a\rb"));
}

@Test
public void carriageReturnAndLineFeedEscapedWithinDoubleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = \"{id}\"").with("a\r\nb"))
.isEqualTo(SafeQuery.of("SELECT * FROM tbl WHERE id = \"a\\r\\nb\""));
}

@Test
public void singleQuoteNotEscapedWithinDoubleQuote() {
assertThat(template("SELECT * FROM tbl WHERE id = \"{id}\"").with("'v'"))
Expand Down Expand Up @@ -97,7 +139,7 @@ public void booleanPlaceholder() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void charPlaceholder_notAllowed() {
IllegalArgumentException thrown =
assertThrows(
Expand Down Expand Up @@ -307,7 +349,7 @@ public void stringWithSemicolonInside_cannotBeBackquoted() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void safeQueryShouldNotBeSingleQuoted() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -317,7 +359,7 @@ public void safeQueryShouldNotBeSingleQuoted() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void safeQueryShouldNotBeDoubleQuoted() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -339,7 +381,7 @@ public void safeQueryBackquoted() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void subQueryDisallowed() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -348,7 +390,7 @@ public void subQueryDisallowed() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void stringLiteralDisallowed() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -357,7 +399,7 @@ public void stringLiteralDisallowed() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void backquoteAndSingleQuoteMixed() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -366,7 +408,7 @@ public void backquoteAndSingleQuoteMixed() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void singleQuoteAndBackquoteMixed() {
IllegalArgumentException thrown =
assertThrows(
Expand Down Expand Up @@ -466,7 +508,7 @@ public void trustedSqlStringBackquoted() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void trustedSqlStringShouldNotBeSingleQuoted() {
IllegalArgumentException thrown =
assertThrows(
Expand All @@ -480,7 +522,7 @@ public void trustedSqlStringShouldNotBeSingleQuoted() {
}

@Test
@SuppressWarnings("SafeSqlArgsCheck")
@SuppressWarnings("SafeQueryArgsCheck")
public void trustedSqlStringShouldNotBeDoubleQuoted() {
IllegalArgumentException thrown =
assertThrows(
Expand Down
Loading