/hg/icedtea-web: Add security checks for save and load in Deploy...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Wed Oct 27 09:57:02 PDT 2010
changeset 92c589a2cf8f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=92c589a2cf8f
author: Omair Majid <omajid at redhat.com>
date: Wed Oct 27 12:55:00 2010 -0400
Add security checks for save and load in DeploymentConfiguration
2010-10-27 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java
(load): Do a security check at start. A security exception later on
may accidentally reveal a filename or a system property.
(save): Likewise.
diffstat:
2 files changed, 28 insertions(+), 3 deletions(-)
ChangeLog | 7 ++
netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java | 24 ++++++++--
diffs (64 lines):
diff -r 33f17695e034 -r 92c589a2cf8f ChangeLog
--- a/ChangeLog Tue Oct 26 18:14:11 2010 -0400
+++ b/ChangeLog Wed Oct 27 12:55:00 2010 -0400
@@ -1,3 +1,10 @@ 2010-10-26 Omair Majid <omajid at redhat.
+2010-10-27 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java
+ (load): Do a security check at start. A security exception later on may
+ accidentally reveal a filename or a system property.
+ (save): Likewise.
+
2010-10-26 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/Launcher.java
diff -r 33f17695e034 -r 92c589a2cf8f netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java Tue Oct 26 18:14:11 2010 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java Wed Oct 27 12:55:00 2010 -0400
@@ -155,6 +155,15 @@ public final class DeploymentConfigurati
* @throws DeploymentException if it encounters a fatal error.
*/
public void load() throws ConfigurationException {
+ // make sure no state leaks if security check fails later on
+ File userFile = new File(System.getProperty("user.home") + File.separator + ".netx"
+ + File.separator + DEPLOYMENT_PROPERTIES);
+
+ SecurityManager sm = System.getSecurityManager();
+ if (sm != null) {
+ sm.checkRead(userFile.toString());
+ }
+
Map<String, ConfigValue> initialProperties = loadDefaultProperties();
Map<String, ConfigValue> systemProperties = null;
@@ -189,8 +198,7 @@ public final class DeploymentConfigurati
/*
* Third, read the user's deployment.properties file
*/
- userPropertiesFile = new File(System.getProperty("user.home") + File.separator + ".netx"
- + File.separator + DEPLOYMENT_PROPERTIES);
+ userPropertiesFile = userFile;
Map<String, ConfigValue> userProperties = loadProperties(ConfigType.User, userPropertiesFile,
false);
if (userProperties != null) {
@@ -466,9 +474,19 @@ public final class DeploymentConfigurati
/**
* Saves all properties that are not part of default or system properties
*
- * @throws IOException
+ * @throws IOException if unable to save the file
+ * @throws IllegalStateException if save() is called before load()
*/
public void save() throws IOException {
+ if (userPropertiesFile == null) {
+ throw new IllegalStateException("must load() before save()");
+ }
+
+ SecurityManager sm = System.getSecurityManager();
+ if (sm != null) {
+ sm.checkWrite(userPropertiesFile.toString());
+ }
+
if (JNLPRuntime.isDebug()) {
System.out.println("Saving properties into " + userPropertiesFile.toString());
}
More information about the distro-pkg-dev
mailing list