Skip to content

Commit

Permalink
Fixing issue 60
Browse files Browse the repository at this point in the history
  • Loading branch information
coheigea authored and dkulp committed Mar 14, 2023
1 parent 3e1a913 commit c20a8be
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 9 deletions.
26 changes: 17 additions & 9 deletions src/main/java/org/codehaus/jettison/json/JSONArray.java
Expand Up @@ -182,22 +182,30 @@ public JSONArray(String string) throws JSONException {
* @throws JSONException If there is a syntax error.
*/
public JSONArray(Collection collection) throws JSONException {
this(collection, 0);
}

private JSONArray(Collection collection, int recursionDepth) throws JSONException {
if (recursionDepth > JSONObject.getGlobalRecursionDepthLimit()) {
throw new JSONException("JSONArray has reached recursion depth limit of "
+ JSONObject.getGlobalRecursionDepthLimit());
}

this.myArrayList = (collection == null) ?
new ArrayList() :
new ArrayList(collection);
// ensure a pure hierarchy of JSONObjects and JSONArrays
for (ListIterator iter = myArrayList.listIterator(); iter.hasNext();) {
Object e = iter.next();
if (e instanceof Collection) {
iter.set(new JSONArray((Collection) e));
}
if (e instanceof Map) {
iter.set(new JSONObject((Map) e));
}
}
Object e = iter.next();
if (e instanceof Collection) {
iter.set(new JSONArray((Collection) e, recursionDepth + 1));
}
if (e instanceof Map) {
iter.set(new JSONObject((Map) e));
}
}
}


/**
* Get the object value associated with an index.
* @param index
Expand Down
15 changes: 15 additions & 0 deletions src/test/java/org/codehaus/jettison/json/JSONArrayTest.java
Expand Up @@ -2,6 +2,9 @@

import junit.framework.TestCase;

import java.util.ArrayList;
import java.util.List;

public class JSONArrayTest extends TestCase {
public void testInvalidArraySequence() throws Exception {
try {
Expand Down Expand Up @@ -67,6 +70,18 @@ public void testInfiniteLoop2() {
public void testIssue52() throws JSONException {
JSONObject.setGlobalRecursionDepthLimit(10);
new JSONArray("[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {a:10}]");
JSONObject.setGlobalRecursionDepthLimit(500);
}

// https://github.com/jettison-json/jettison/issues/60
public void testIssue60() throws JSONException {
List<Object> list = new ArrayList<>();
list.add(list);
try {
new JSONArray(list);
} catch (JSONException ex) {
assertEquals(ex.getMessage(), "JSONArray has reached recursion depth limit of 500");
}
}

}

0 comments on commit c20a8be

Please sign in to comment.