1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 03:45:35 +02:00

implements a way to bypass secure storage access

This commit is contained in:
David Dykstal 2013-01-15 10:41:26 -06:00
parent 67cfca76a7
commit 460c0702ef
2 changed files with 143 additions and 56 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************** /********************************************************************************
* Copyright (c) 2002, 2012 IBM Corporation and others. All rights reserved. * Copyright (c) 2002, 2013 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the terms * This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is * of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html * available at http://www.eclipse.org/legal/epl-v10.html
@ -20,6 +20,7 @@
* Martin Oberhuber (Wind River) - [cleanup] Add API "since" Javadoc tags * Martin Oberhuber (Wind River) - [cleanup] Add API "since" Javadoc tags
* David Dykstal (IBM) - [210474] Deny save password function missing * David Dykstal (IBM) - [210474] Deny save password function missing
* David Dykstal (IBM) - [225320] Use equinox secure storage for passwords * David Dykstal (IBM) - [225320] Use equinox secure storage for passwords
* David Dykstal (IBM) - [379787] Fix secure storage usage in org.eclipse.rse.tests
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.core; package org.eclipse.rse.core;
@ -48,6 +49,13 @@ import org.osgi.framework.Bundle;
/** /**
* PasswordPersistenceManager manages the saving and retrieving of user IDs / * PasswordPersistenceManager manages the saving and retrieving of user IDs /
* passwords to Equinox secure storage for registered system types. * passwords to Equinox secure storage for registered system types.
* <p>
* A PasswordPersistenceManager is sensitive to the "rse.enableSecureStoreAccess" property.
* If absent it defaults to <code>true</code>.
* If present then the value must be <code>true</code> to enable access to the secure store.
* The following code disables access to the secure store.
* <p>
* <code>System.setProperty("rse.enableSecureStoreAccess", "false");</code>
* *
* @noextend This class is not intended to be subclassed by clients. * @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients. Use * @noinstantiate This class is not intended to be instantiated by clients. Use
@ -382,7 +390,8 @@ public class PasswordPersistenceManager {
/** /**
* Returns the preferences node that matches the system type. * Returns the preferences node that matches the system type.
* It will not return null but will create the node if it does not exist. * It will only return null if secure store access is disallowed.
* If secure store access is allowed it will create the node if it does not exist.
* If the node does not previous exist then an attempt will be made * If the node does not previous exist then an attempt will be made
* to migrate the values from the old map form to this newly created node * to migrate the values from the old map form to this newly created node
* of the secure preferences tree. * of the secure preferences tree.
@ -390,14 +399,17 @@ public class PasswordPersistenceManager {
* @return the matching secure preferences node. * @return the matching secure preferences node.
*/ */
private ISecurePreferences getNode(IRSESystemType systemType) { private ISecurePreferences getNode(IRSESystemType systemType) {
String id = systemType.getId();
ISecurePreferences preferences = SecurePreferencesFactory.getDefault();
ISecurePreferences rseNode = preferences.node("org.eclipse.rse.core.security"); //$NON-NLS-1$
ISecurePreferences systemTypeNode = null; ISecurePreferences systemTypeNode = null;
if (!rseNode.nodeExists(id)) { String enableSecureStoreAccess = System.getProperty("rse.enableSecureStoreAccess", "true"); //$NON-NLS-1$//$NON-NLS-2$
migrateMap(rseNode, id); if (enableSecureStoreAccess.equals("true")) { //$NON-NLS-1$
String id = systemType.getId();
ISecurePreferences preferences = SecurePreferencesFactory.getDefault();
ISecurePreferences rseNode = preferences.node("org.eclipse.rse.core.security"); //$NON-NLS-1$
if (!rseNode.nodeExists(id)) {
migrateMap(rseNode, id);
}
systemTypeNode = rseNode.node(id);
} }
systemTypeNode = rseNode.node(id);
return systemTypeNode; return systemTypeNode;
} }
@ -473,20 +485,24 @@ public class PasswordPersistenceManager {
* @return the number of passwords removed. * @return the number of passwords removed.
*/ */
private int removePassword(IRSESystemType systemType, String hostName, String userId) { private int removePassword(IRSESystemType systemType, String hostName, String userId) {
int result = 0;
ISecurePreferences passwords = getNode(systemType); ISecurePreferences passwords = getNode(systemType);
boolean respectCase = isUserIDCaseSensitive(systemType); if (passwords != null) {
String keys[] = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, false); boolean respectCase = isUserIDCaseSensitive(systemType);
if (keys.length == 0) { String keys[] = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, false);
keys = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, true); if (keys.length == 0) {
keys = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, true);
}
for (int i = 0; i < keys.length; i++) {
String key = keys[i];
basicRemove(passwords, key);
}
if (keys.length > 0) {
basicSave(passwords);
}
result = keys.length;
} }
for (int i = 0; i < keys.length; i++) { return result;
String key = keys[i];
basicRemove(passwords, key);
}
if (keys.length > 0) {
basicSave(passwords);
}
return keys.length;
} }
/** /**
@ -502,14 +518,16 @@ public class PasswordPersistenceManager {
private String findPassword(IRSESystemType systemType, String hostName, String userId) { private String findPassword(IRSESystemType systemType, String hostName, String userId) {
String password = null; String password = null;
ISecurePreferences passwords = getNode(systemType); ISecurePreferences passwords = getNode(systemType);
boolean respectCase = isUserIDCaseSensitive(systemType); if (passwords != null) {
String keys[] = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, false); boolean respectCase = isUserIDCaseSensitive(systemType);
if (keys.length == 0) { String keys[] = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, false);
keys = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, true); if (keys.length == 0) {
} keys = getMatchingKeys(passwords.keys(), hostName, userId, respectCase, true);
if (keys.length > 0) { }
String key = keys[0]; if (keys.length > 0) {
password = basicGet(passwords, key); String key = keys[0];
password = basicGet(passwords, key);
}
} }
return password; return password;
} }
@ -522,12 +540,18 @@ public class PasswordPersistenceManager {
* @param hostName the name of the host we are examining for a password. * @param hostName the name of the host we are examining for a password.
* @param userId the user id to find passwords for. * @param userId the user id to find passwords for.
* @param password the password to save for this entry. * @param password the password to save for this entry.
* @return RC_OK if the password was updated, RC_DENIED if the password was not updated.
*/ */
private void updatePassword(IRSESystemType systemType, String hostName, String userId, String password) { private int updatePassword(IRSESystemType systemType, String hostName, String userId, String password) {
int result = RC_DENIED;
ISecurePreferences passwords = getNode(systemType); ISecurePreferences passwords = getNode(systemType);
String key = getKey(hostName, userId); if (passwords != null) {
basicPut(passwords, key, password); String key = getKey(hostName, userId);
basicSave(passwords); basicPut(passwords, key, password);
basicSave(passwords);
result = RC_OK;
}
return result;
} }
/** /**
@ -551,8 +575,9 @@ public class PasswordPersistenceManager {
* @param info The signon information to store * @param info The signon information to store
* @param overwrite Whether to overwrite any existing entry * @param overwrite Whether to overwrite any existing entry
* @return * @return
* RC_OK if the password was successfully stored * RC_OK if the password was successfully stored
* RC_ALREADY_EXISTS if the password already exists and overwrite was false * RC_ALREADY_EXISTS if the password already exists and overwrite was false
* RC_DENIED if passwords may not be saved for this system type and host
*/ */
public int add(SystemSignonInformation info, boolean overwrite) { public int add(SystemSignonInformation info, boolean overwrite) {
return add(info, overwrite, false); return add(info, overwrite, false);
@ -587,7 +612,7 @@ public class PasswordPersistenceManager {
} }
String oldPassword = findPassword(systemType, hostName, userId); String oldPassword = findPassword(systemType, hostName, userId);
if (oldPassword == null || (overwrite && !newPassword.equals(oldPassword))) { if (oldPassword == null || (overwrite && !newPassword.equals(oldPassword))) {
updatePassword(systemType, hostName, userId, newPassword); result = updatePassword(systemType, hostName, userId, newPassword);
} else if (oldPassword != null) { } else if (oldPassword != null) {
result = RC_ALREADY_EXISTS; result = RC_ALREADY_EXISTS;
} }
@ -629,7 +654,7 @@ public class PasswordPersistenceManager {
* @param systemType the IRSESystemType instance to find a password for. * @param systemType the IRSESystemType instance to find a password for.
* @param hostName the name of the host we are examining for a password. * @param hostName the name of the host we are examining for a password.
* @param userId the user id to find passwords for. * @param userId the user id to find passwords for.
* @return the {@link SystemSignonInformation} for the specified criteria. * @return the {@link SystemSignonInformation} for the specified criteria or null if no such password can be found.
*/ */
public SystemSignonInformation find(IRSESystemType systemType, String hostName, String userId) { public SystemSignonInformation find(IRSESystemType systemType, String hostName, String userId) {
return find(systemType, hostName, userId, true); return find(systemType, hostName, userId, true);
@ -644,7 +669,7 @@ public class PasswordPersistenceManager {
* @param hostName the name of the host we are examining for a password. * @param hostName the name of the host we are examining for a password.
* @param userId the user id to find passwords for. * @param userId the user id to find passwords for.
* @param checkDefault true if the default system type should be checked if the specified system type is not found * @param checkDefault true if the default system type should be checked if the specified system type is not found
* @return the {@link SystemSignonInformation} for the specified criteria. * @return the {@link SystemSignonInformation} for the specified criteria or null if no such password can be found.
*/ */
public SystemSignonInformation find(IRSESystemType systemType, String hostName, String userId, boolean checkDefault) { public SystemSignonInformation find(IRSESystemType systemType, String hostName, String userId, boolean checkDefault) {
SystemSignonInformation result = null; SystemSignonInformation result = null;
@ -729,13 +754,15 @@ public class PasswordPersistenceManager {
for (int i = 0; i < systemTypes.length; i++) { for (int i = 0; i < systemTypes.length; i++) {
IRSESystemType systemType = systemTypes[i]; IRSESystemType systemType = systemTypes[i];
ISecurePreferences node = getNode(systemType); ISecurePreferences node = getNode(systemType);
String[] keys = node.keys(); if (node != null) {
for (int j = 0; j < keys.length; j++) { String[] keys = node.keys();
String key = keys[j]; for (int j = 0; j < keys.length; j++) {
String hostName = getHostNameFromKey(key); String key = keys[j];
String userId = getUserIdFromKey(key); String hostName = getHostNameFromKey(key);
SystemSignonInformation info = new SystemSignonInformation(hostName, userId, systemType); String userId = getUserIdFromKey(key);
savedUserIDs.add(info); SystemSignonInformation info = new SystemSignonInformation(hostName, userId, systemType);
savedUserIDs.add(info);
}
} }
} }
return savedUserIDs; return savedUserIDs;

View file

@ -1,15 +1,18 @@
/******************************************************************************** /********************************************************************************
* Copyright (c) 2008, 2012 IBM Corporation and others. All rights reserved. * Copyright (c) 2008, 2013 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the terms * This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is * of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html * available at http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* David Dykstal (IBM) - [210474] Deny save password function missing * David Dykstal (IBM) - [210474] Deny save password function missing
* David Dykstal (IBM) - [379787] Fix secure storage usage in org.eclipse.rse.tests
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.tests.core.passwords; package org.eclipse.rse.tests.core.passwords;
import java.util.List;
import org.eclipse.rse.core.IRSESystemType; import org.eclipse.rse.core.IRSESystemType;
import org.eclipse.rse.core.PasswordPersistenceManager; import org.eclipse.rse.core.PasswordPersistenceManager;
import org.eclipse.rse.core.RSEPreferencesManager; import org.eclipse.rse.core.RSEPreferencesManager;
@ -28,6 +31,7 @@ public class PasswordsTest extends RSECoreTestCase {
*/ */
protected void setUp() throws Exception { protected void setUp() throws Exception {
super.setUp(); super.setUp();
// System.setProperty("rse.enableSecureStoreAccess", "false");
} }
/* (non-Javadoc) /* (non-Javadoc)
@ -39,8 +43,8 @@ public class PasswordsTest extends RSECoreTestCase {
public void testAddRemove() { public void testAddRemove() {
//-test-author-:DavidDykstal //-test-author-:DavidDykstal
if (isTestDisabled()) if (isTestDisabled()) return;
return; if ("false".equals(System.getProperty("rse.enableSecureStoreAccess"))) return;
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_UNIX_ID); IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_UNIX_ID);
IRSESystemType defaultSystemType = PasswordPersistenceManager.DEFAULT_SYSTEM_TYPE; IRSESystemType defaultSystemType = PasswordPersistenceManager.DEFAULT_SYSTEM_TYPE;
String hostAddress = "somesystem.mycompany.com"; String hostAddress = "somesystem.mycompany.com";
@ -93,8 +97,8 @@ public class PasswordsTest extends RSECoreTestCase {
public void testSaveDenial() { public void testSaveDenial() {
//-test-author-:DavidDykstal //-test-author-:DavidDykstal
if (isTestDisabled()) if (isTestDisabled()) return;
return; if ("false".equals(System.getProperty("rse.enableSecureStoreAccess"))) return;
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_UNIX_ID); IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_UNIX_ID);
String hostAddress = "somesystem.mycompany.com"; String hostAddress = "somesystem.mycompany.com";
boolean deny = RSEPreferencesManager.getDenyPasswordSave(systemType, hostAddress); boolean deny = RSEPreferencesManager.getDenyPasswordSave(systemType, hostAddress);
@ -136,8 +140,8 @@ public class PasswordsTest extends RSECoreTestCase {
public void testMigration() { public void testMigration() {
//-test-author-:DavidDykstal //-test-author-:DavidDykstal
if (isTestDisabled()) if (isTestDisabled()) return;
return; if ("false".equals(System.getProperty("rse.enableSecureStoreAccess"))) return;
// Setup // Setup
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID); IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID);
@ -167,11 +171,11 @@ public class PasswordsTest extends RSECoreTestCase {
} }
} }
public void testAliasing() { public void testAliasing() {
//-test-author-:DavidDykstal //-test-author-:DavidDykstal
if (isTestDisabled()) if (isTestDisabled()) return;
return; if ("false".equals(System.getProperty("rse.enableSecureStoreAccess"))) return;
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID); IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID);
PasswordPersistenceManager ppm = PasswordPersistenceManager.getInstance(); PasswordPersistenceManager ppm = PasswordPersistenceManager.getInstance();
ppm.add(new SystemSignonInformation("LOUDHOST.mycompany.com", "thatguy", "abc", systemType), true, false); ppm.add(new SystemSignonInformation("LOUDHOST.mycompany.com", "thatguy", "abc", systemType), true, false);
@ -187,13 +191,69 @@ public class PasswordsTest extends RSECoreTestCase {
} }
public void testBadArgs() { public void testBadArgs() {
if (isTestDisabled()) if (isTestDisabled()) return;
return; if ("false".equals(System.getProperty("rse.enableSecureStoreAccess"))) return;
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID); IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_LOCAL_ID);
PasswordPersistenceManager ppm = PasswordPersistenceManager.getInstance(); PasswordPersistenceManager ppm = PasswordPersistenceManager.getInstance();
ppm.add(new SystemSignonInformation("myhost.mycompany.com", "me", "password", systemType), true, false); ppm.add(new SystemSignonInformation("myhost.mycompany.com", "me", "password", systemType), true, false);
SystemSignonInformation info = ppm.find(systemType, "myhost.mycompany.com", null); SystemSignonInformation info = ppm.find(systemType, "myhost.mycompany.com", null);
assertNull(info); assertNull(info);
} }
public void testDisabledSecureStore() {
//-test-author-:DavidDykstal
if (isTestDisabled()) return;
String key = "rse.enableSecureStoreAccess";
String valueOnEntry = System.getProperty(key);
System.setProperty(key, "false");
PasswordPersistenceManager ppm = PasswordPersistenceManager.getInstance();
IRSESystemType systemType = RSECoreRegistry.getInstance().getSystemType(IRSESystemType.SYSTEMTYPE_UNIX_ID);
String hostAddress = "somesystem.mycompany.com";
String password = "password";
String userId = "me";
SystemSignonInformation info = new SystemSignonInformation(hostAddress, userId, password, systemType);
// try saving and retrieving a password
int result = ppm.add(info, true);
assertEquals("result of first add was not RC_DENIED", PasswordPersistenceManager.RC_DENIED, result);
result = ppm.add(info, true, true);
assertEquals("result of second add was not RC_DENIED", PasswordPersistenceManager.RC_DENIED, result);
SystemSignonInformation returnedInfo = ppm.find(systemType, hostAddress, userId);
assertNull("signon info was found and should not be", returnedInfo);
// test passwords for existence
assertFalse("found signon information where none should exist (1)", ppm.passwordExists(systemType, hostAddress, userId));
assertFalse("found signon information where none should exist (2)", ppm.passwordExists(systemType, hostAddress, userId, false));
assertFalse("found signon information where none should exist (3)", ppm.passwordExists(systemType, hostAddress, userId, true));
// try finding password info
returnedInfo = ppm.find(systemType, hostAddress, userId);
assertNull("signon info was found and should not be (1)", returnedInfo);
returnedInfo = ppm.find(systemType, hostAddress, userId, false);
assertNull("signon info was found but should not be (2)", returnedInfo);
returnedInfo = ppm.find(systemType, hostAddress, userId, true);
assertNull("signon info was found but should not be (3)", returnedInfo);
// try removal
ppm.remove(info);
ppm.remove(systemType, hostAddress, userId);
assertEquals("passwords were removed but none should be (2)", 0, ppm.remove(systemType, hostAddress));
// get system types
IRSESystemType[] systemTypes = ppm.getRegisteredSystemTypes();
assertNotNull("returned system types is null", systemTypes);
assertTrue("no system types were found", systemTypes.length > 0);
// get saved user ids
@SuppressWarnings("rawtypes")
List userInfo = ppm.getSavedUserIDs();
assertTrue("user info was found where none should exist", userInfo.size() == 0);
if (valueOnEntry == null) {
System.clearProperty(key);
} else {
System.setProperty(key, valueOnEntry);
}
}
} }