forked from mapr/spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-20922][CORE] Add whitelist of classes that can be deserialized…
… by the launcher. Blindly deserializing classes using Java serialization opens the code up to issues in other libraries, since just deserializing data from a stream may end up execution code (think readObject()). Since the launcher protocol is pretty self-contained, there's just a handful of classes it legitimately needs to deserialize, and they're in just two packages, so add a filter that throws errors if classes from any other package show up in the stream. This also maintains backwards compatibility (the updated launcher code can still communicate with the backend code in older Spark releases). Tested with new and existing unit tests. Author: Marcelo Vanzin <[email protected]> Closes apache#18166 from vanzin/SPARK-20922. (cherry picked from commit 8efc6e9) Signed-off-by: Marcelo Vanzin <[email protected]>
- Loading branch information
Marcelo Vanzin
committed
Jun 1, 2017
1 parent
dade85f
commit 772a9b9
Showing
3 changed files
with
121 additions
and
27 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
launcher/src/main/java/org/apache/spark/launcher/FilteredObjectInputStream.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.launcher; | ||
|
||
import java.io.InputStream; | ||
import java.io.IOException; | ||
import java.io.ObjectInputStream; | ||
import java.io.ObjectStreamClass; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
/** | ||
* An object input stream that only allows classes used by the launcher protocol to be in the | ||
* serialized stream. See SPARK-20922. | ||
*/ | ||
class FilteredObjectInputStream extends ObjectInputStream { | ||
|
||
private static final List<String> ALLOWED_PACKAGES = Arrays.asList( | ||
"org.apache.spark.launcher.", | ||
"java.lang."); | ||
|
||
FilteredObjectInputStream(InputStream is) throws IOException { | ||
super(is); | ||
} | ||
|
||
@Override | ||
protected Class<?> resolveClass(ObjectStreamClass desc) | ||
throws IOException, ClassNotFoundException { | ||
|
||
boolean isValid = ALLOWED_PACKAGES.stream().anyMatch(p -> desc.getName().startsWith(p)); | ||
if (!isValid) { | ||
throw new IllegalArgumentException( | ||
String.format("Unexpected class in stream: %s", desc.getName())); | ||
} | ||
return super.resolveClass(desc); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters