Skip to content

Commit

Permalink
ipc: avoid exception for empty paths (#1092)
Browse files Browse the repository at this point in the history
Fix StringIndexOutOfBoundsException if sanitize is called
with an empty path string. Also updates the logic for `/`
to be consistent with an empty path string. Both will now
get sanitized to `none` as tag values cannot be empty.
  • Loading branch information
brharrington committed Nov 8, 2023
1 parent ebba74d commit fb69125
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private PathSanitizer() {

/** Returns a sanitized path string for use as an endpoint tag value. */
public static String sanitize(String path) {
return sanitizeSegments(removeParameters(path), Collections.emptySet());
return sanitize(path, Collections.emptySet());
}

/**
Expand All @@ -55,7 +55,8 @@ public static String sanitize(String path) {
* Sanitized path that can be used as an endpoint tag value.
*/
public static String sanitize(String path, Set<String> allowed) {
return sanitizeSegments(removeParameters(path), allowed);
String tmp = sanitizeSegments(removeParameters(path), allowed);
return tmp.isEmpty() ? "none" : tmp;
}

private static String removeParameters(String path) {
Expand All @@ -64,13 +65,13 @@ private static String removeParameters(String path) {

private static String removeParameters(String path, char c) {
int i = path.indexOf(c);
return i > 0 ? path.substring(0, i) : path;
return i >= 0 ? path.substring(0, i) : path;
}

private static String sanitizeSegments(String path, Set<String> allowed) {
StringBuilder builder = new StringBuilder();
int length = path.length();
int pos = path.charAt(0) == '/' ? 1 : 0;
int pos = path.isEmpty() || path.charAt(0) != '/' ? 0 : 1;
int segmentsAdded = 0;

while (pos < length && segmentsAdded < 5) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ private String sanitize(String path) {
return PathSanitizer.sanitize(path);
}

@Test
public void emptyPath() {
Assertions.assertEquals("none", sanitize("/"));
Assertions.assertEquals("none", sanitize(""));
Assertions.assertEquals("none", sanitize("/?a=1"));
Assertions.assertEquals("none", sanitize("?a=1"));
}

@Test
public void uuids() {
String path = "/api/v1/foo/" + UUID.randomUUID();
Expand Down

0 comments on commit fb69125

Please sign in to comment.