/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
|
* or http://forgerock.org/license/CDDLv1.0.html.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at legal-notices/CDDLv1_0.txt.
|
* If applicable, add the following below this CDDL HEADER, with the
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
* information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Copyright 2008-2010 Sun Microsystems, Inc.
|
* Portions Copyright 2011-2015 ForgeRock AS
|
*/
|
package org.opends.server.protocols.jmx;
|
|
import java.io.BufferedWriter;
|
import java.io.File;
|
import java.io.FileWriter;
|
import java.util.ArrayList;
|
import java.util.HashMap;
|
|
import org.forgerock.i18n.LocalizableMessage;
|
import org.forgerock.opendj.ldap.ByteString;
|
import org.forgerock.opendj.ldap.ModificationType;
|
import org.forgerock.opendj.ldap.ResultCode;
|
import org.forgerock.opendj.ldap.SearchScope;
|
import org.opends.server.TestCaseUtils;
|
import org.opends.server.backends.task.Task;
|
import org.opends.server.backends.task.TaskBackend;
|
import org.opends.server.backends.task.TaskState;
|
import org.opends.server.controls.ProxiedAuthV1Control;
|
import org.opends.server.controls.ProxiedAuthV2Control;
|
import org.opends.server.core.AddOperationBasis;
|
import org.opends.server.core.CompareOperationBasis;
|
import org.opends.server.core.DeleteOperation;
|
import org.opends.server.core.DeleteOperationBasis;
|
import org.opends.server.core.DirectoryServer;
|
import org.opends.server.core.ModifyDNOperationBasis;
|
import org.opends.server.core.ModifyOperation;
|
import org.opends.server.core.ModifyOperationBasis;
|
import org.opends.server.core.SchemaConfigManager;
|
import org.opends.server.protocols.internal.InternalClientConnection;
|
import org.opends.server.protocols.internal.InternalSearchOperation;
|
import org.opends.server.protocols.internal.SearchRequest;
|
import org.opends.server.types.*;
|
import org.testng.annotations.AfterClass;
|
import org.testng.annotations.BeforeClass;
|
import org.testng.annotations.DataProvider;
|
import org.testng.annotations.Test;
|
|
import static org.opends.messages.ProtocolMessages.*;
|
import static org.opends.server.protocols.internal.InternalClientConnection.*;
|
import static org.opends.server.protocols.internal.Requests.*;
|
import static org.testng.Assert.*;
|
|
/**
|
* This class provides a set of test cases for the Directory Server JMX
|
* privilege subsystem.
|
*/
|
public class JmxPrivilegeTestCase extends JmxTestCase
|
{
|
/**
|
* An array of boolean values that indicates whether config read operations
|
* should be successful for users in the corresponding slots of the
|
* connections array.
|
*/
|
private boolean[] successful;
|
|
/**
|
* The set of client connections that should be used when performing
|
* operations.
|
*/
|
private JmxClientConnection[] connections;
|
|
/**
|
* Make sure that the server is running and that an appropriate set of
|
* structures are in place.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@BeforeClass(alwaysRun = true)
|
@Override
|
public void setUp() throws Exception
|
{
|
super.setUp();
|
|
TestCaseUtils.enableBackend("unindexedRoot");
|
TestCaseUtils.initializeTestBackend(true);
|
TestCaseUtils.addEntries(
|
"dn: cn=Unprivileged Root,cn=Root DNs,cn=config",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"objectClass: ds-cfg-root-dn-user",
|
"cn: Unprivileged Root",
|
"givenName: Unprivileged",
|
"sn: Root",
|
"uid: unprivileged.root",
|
"userPassword: password",
|
"ds-privilege-name: config-read",
|
"ds-privilege-name: config-write",
|
"ds-privilege-name: password-reset",
|
"ds-privilege-name: update-schema",
|
"ds-privilege-name: ldif-import",
|
"ds-privilege-name: ldif-export",
|
"ds-privilege-name: backend-backup",
|
"ds-privilege-name: backend-restore",
|
"ds-privilege-name: unindexed-search",
|
"ds-privilege-name: -jmx-read",
|
"ds-privilege-name: -jmx-write",
|
"",
|
"dn: cn=Unprivileged JMX Root,cn=Root DNs,cn=config",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"objectClass: ds-cfg-root-dn-user",
|
"cn: Unprivileged Root",
|
"givenName: Unprivileged",
|
"sn: Root",
|
"uid: unprivileged.root",
|
"userPassword: password",
|
"",
|
"dn: cn=Proxy Root,cn=Root DNs,cn=config",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"objectClass: ds-cfg-root-dn-user",
|
"cn: Proxy Root",
|
"givenName: Proxy",
|
"sn: Root",
|
"uid: proxy.root",
|
"userPassword: password",
|
"ds-privilege-name: proxied-auth",
|
"ds-privilege-name: jmx-read",
|
"ds-privilege-name: jmx-write",
|
"",
|
"",
|
"dn: cn=Privileged User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Privileged User",
|
"givenName: Privileged",
|
"sn: User",
|
"uid: privileged.user",
|
"userPassword: password",
|
"ds-privilege-name: config-read",
|
"ds-privilege-name: config-write",
|
"ds-privilege-name: password-reset",
|
"ds-privilege-name: update-schema",
|
"ds-privilege-name: ldif-import",
|
"ds-privilege-name: ldif-export",
|
"ds-privilege-name: backend-backup",
|
"ds-privilege-name: backend-restore",
|
"ds-privilege-name: proxied-auth",
|
"ds-privilege-name: bypass-acl",
|
"ds-privilege-name: unindexed-search",
|
"ds-privilege-name: jmx-read",
|
"ds-privilege-name: jmx-write",
|
"ds-privilege-name: subentry-write",
|
"ds-pwp-password-policy-dn: cn=Clear UserPassword Policy," +
|
"cn=Password Policies,cn=config",
|
"",
|
"dn: cn=Unprivileged User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Unprivileged User",
|
"givenName: Unprivileged",
|
"sn: User",
|
"uid: unprivileged.user",
|
"ds-privilege-name: bypass-acl",
|
"userPassword: password",
|
"ds-pwp-password-policy-dn: cn=Clear UserPassword Policy," +
|
"cn=Password Policies,cn=config",
|
"",
|
"dn: cn=PWReset Target,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: PWReset Target",
|
"givenName: PWReset",
|
"sn: Target",
|
"uid: pwreset.target",
|
"userPassword: password");
|
|
TestCaseUtils.applyModifications(false,
|
"dn: o=test",
|
"changetype: modify",
|
"add: aci",
|
"aci: (version 3.0; acl \"Proxy Root\"; allow (proxy) " +
|
"userdn=\"ldap:///cn=Proxy Root,cn=Root DNs,cn=config\";)",
|
"aci: (version 3.0; acl \"Unprivileged Root\"; allow (proxy) " +
|
"userdn=\"ldap:///cn=Unprivileged Root,cn=Root DNs,cn=config\";)",
|
"aci: (version 3.0; acl \"Privileged User\"; allow (proxy) " +
|
"userdn=\"ldap:///cn=Privileged User,o=test\";)",
|
"aci: (targetattr=\"*\")(version 3.0; acl \"PWReset Target\"; " +
|
"allow (all) userdn=\"ldap:///cn=PWReset Target,o=test\";)");
|
|
|
// Build the array of connections we will use to perform the tests.
|
JmxConnectionHandler jmxCtx = getJmxConnectionHandler();
|
ArrayList<JmxClientConnection> connList = new ArrayList<>();
|
ArrayList<Boolean> successList = new ArrayList<>();
|
String userDN ;
|
Entry userEntry ;
|
AuthenticationInfo authInfo;
|
|
connList.add(new JmxClientConnection(jmxCtx,new AuthenticationInfo()));
|
successList.add(false);
|
|
userDN = "cn=Unprivileged Root,cn=Root DNs,cn=config";
|
userEntry = DirectoryServer.getEntry(DN.valueOf(userDN));
|
authInfo = new AuthenticationInfo(userEntry, true);
|
connList.add(new JmxClientConnection(jmxCtx,authInfo));
|
successList.add(false);
|
|
userDN = "cn=Proxy Root,cn=Root DNs,cn=config";
|
userEntry = DirectoryServer.getEntry(DN.valueOf(userDN));
|
authInfo = new AuthenticationInfo(userEntry, true);
|
connList.add(new JmxClientConnection(jmxCtx,authInfo));
|
successList.add(true);
|
|
userDN = "cn=Unprivileged User,o=test";
|
userEntry = DirectoryServer.getEntry(DN.valueOf(userDN));
|
authInfo = new AuthenticationInfo(userEntry, false);
|
connList.add(new JmxClientConnection(jmxCtx,authInfo));
|
successList.add(false);
|
|
userDN = "cn=Privileged User,o=test";
|
userEntry = DirectoryServer.getEntry(DN.valueOf(userDN));
|
authInfo = new AuthenticationInfo(userEntry, false);
|
connList.add(new JmxClientConnection(jmxCtx,authInfo));
|
successList.add(true);
|
|
|
connections = new JmxClientConnection[connList.size()];
|
successful = new boolean[connections.length];
|
for (int i=0; i < connections.length; i++)
|
{
|
connections[i] = connList.get(i);
|
successful[i] = successList.get(i);
|
}
|
|
TestCaseUtils.addEntries(
|
"dn: dc=unindexed,dc=jeb",
|
"objectClass: top",
|
"objectClass: domain",
|
"",
|
"dn: cn=test1 user,dc=unindexed,dc=jeb",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: test1 user",
|
"givenName: user",
|
"sn: test1",
|
"",
|
"dn: cn=test2 user,dc=unindexed,dc=jeb",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: test2 user",
|
"givenName: user",
|
"sn: test2"
|
);
|
}
|
|
|
|
/**
|
* Cleans up anything that might be left around after running the tests in
|
* this class.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@AfterClass
|
public void cleanUp()
|
throws Exception
|
{
|
InternalClientConnection conn = InternalClientConnection
|
.getRootConnection();
|
|
DeleteOperation deleteOperation = conn.processDelete(DN
|
.valueOf("cn=Unprivileged Root,cn=Root DNs,cn=config"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=Unprivileged JMX Root,cn=Root DNs,cn=config"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=Proxy Root,cn=Root DNs,cn=config"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=Privileged User,o=test"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=UnPrivileged User,o=test"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=PWReset Target,o=test"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=test1 user,dc=unindexed,dc=jeb"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN
|
.valueOf("cn=test2 user,dc=unindexed,dc=jeb"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
deleteOperation = conn.processDelete(DN.valueOf("dc=unindexed,dc=jeb"));
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
|
for (int i = 0; connections != null && i < connections.length; i++)
|
{
|
connections[i].finalize();
|
connections[i] = null;
|
}
|
TestCaseUtils.disableBackend("unindexedRoot");
|
}
|
|
|
|
/**
|
* Retrieves a set of data that can be used for performing the tests. The
|
* arguments generated for each method will be:
|
* <OL>
|
* <LI>A client connection to use to perform the operation</LI>
|
* <LI>A flag indicating whether or not the operation should succeed</LI>
|
* </OL>
|
*
|
* @return A set of data that can be used for performing the tests.
|
*/
|
@DataProvider(name = "testdata")
|
public Object[][] getTestData()
|
{
|
Object[][] returnArray = new Object[connections.length][2];
|
for (int i=0; i < connections.length; i++)
|
{
|
returnArray[i][0] = connections[i];
|
returnArray[i][1] = successful[i];
|
}
|
|
return returnArray;
|
}
|
|
|
/**
|
* Check that simple connection to the JMX service are
|
* accepted only if JMX_READ privilege is set.
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(enabled = true)
|
public void simpleConnectJmxPrivilege() throws Exception
|
{
|
OpendsJmxConnector opendsConnector;
|
int jmxPort = TestCaseUtils.getServerJmxPort() ;
|
HashMap<String, Object> env = new HashMap<>();
|
String user = "cn=Unprivileged JMX Root,cn=Root DNs,cn=config";
|
String password = "password";
|
String[] credentials = new String[] { user, password };
|
env.put("jmx.remote.credentials", credentials);
|
env.put("jmx.remote.x.client.connection.check.period", 0);
|
|
// Try connection withoutJMX_READ privilege
|
// Expected result: failed
|
try
|
{
|
opendsConnector = new OpendsJmxConnector("localhost", jmxPort, env);
|
opendsConnector.connect();
|
opendsConnector.close() ;
|
fail("User \"cn=Unprivileged JMX Root,cn=Root "+
|
"DNs,cn=config\" doesn't have JMX_READ privilege but he's able " +
|
"to connect, which is not the correct behavior");
|
}
|
catch (SecurityException e)
|
{
|
LocalizableMessage message = ERR_JMX_INSUFFICIENT_PRIVILEGES.get();
|
assertEquals(message.toString(), e.getMessage());
|
}
|
|
// Add JMX_READ privilege
|
InternalClientConnection rootConnection = getRootConnection();
|
ArrayList<Modification> mods = new ArrayList<>();
|
mods.add(new Modification(ModificationType.ADD, Attributes.create(
|
"ds-privilege-name", "jmx-read")));
|
ModifyOperation modifyOperation =
|
rootConnection.processModify(DN.valueOf(user), mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
|
// Try connection withoutJMX_READ privilege
|
// Expected result: success
|
try
|
{
|
opendsConnector = new OpendsJmxConnector("localhost", jmxPort, env);
|
opendsConnector.connect();
|
opendsConnector.close() ;
|
}
|
catch (SecurityException e)
|
{
|
fail("User \"cn=Unprivileged JMX Root,cn=Root " +
|
"DNs,cn=config\" has JMX_READ privilege and he's NOT able " +
|
"to connect, which is NOT the correct behavior.");
|
}
|
|
// remove JMX_READ privilege
|
mods = new ArrayList<>();
|
mods.add(new Modification(ModificationType.DELETE,
|
Attributes.create("ds-privilege-name", "jmx-read")));
|
modifyOperation =
|
rootConnection.processModify(DN.valueOf(user), mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
|
// Try connection withoutJMX_READ privilege
|
// Expected result: failed
|
try
|
{
|
opendsConnector = new OpendsJmxConnector("localhost", jmxPort, env);
|
opendsConnector.connect();
|
opendsConnector.close() ;
|
fail("User \"cn=Unprivileged JMX Root,cn=Root "+
|
"DNs,cn=config\" doesn't have JMX_READ privilege but he's able " +
|
"to connect, which is not the correct behavior");
|
}
|
catch (SecurityException e)
|
{
|
LocalizableMessage message = ERR_JMX_INSUFFICIENT_PRIVILEGES.get();
|
assertEquals(message.toString(), e.getMessage());
|
}
|
}
|
|
|
/**
|
* Tests to ensure that search operations in the server configuration properly
|
* respect the JMX_READ privilege.
|
*
|
* @param conn The client connection to use to perform the search
|
* operation.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the JMX_READ privilege and therefore the
|
* search should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testConfigReadSearch(JmxClientConnection conn,
|
boolean hasPrivilege)
|
throws Exception
|
{
|
assertEquals(conn.hasPrivilege(Privilege.JMX_READ, null), hasPrivilege);
|
|
SearchRequest request = newSearchRequest(DN.valueOf("cn=config"), SearchScope.BASE_OBJECT);
|
InternalSearchOperation searchOperation = conn.processSearch(request);
|
if (hasPrivilege)
|
{
|
assertEquals(searchOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(searchOperation.getResultCode(),
|
ResultCode.INSUFFICIENT_ACCESS_RIGHTS);
|
}
|
}
|
|
|
/**
|
* Tests to ensure that attempts to update the schema with an add schema file
|
* task will properly respect the UPDATE_SCHEMA privilege.
|
*
|
* @param conn The client connection to use to perform the schema
|
* update.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the UPDATE_SCHEMA privilege and therefore
|
* the schema update should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testUpdateSchemaAddSchemaFile(JmxClientConnection conn,
|
boolean hasPrivilege)
|
throws Exception
|
{
|
assertEquals(conn.hasPrivilege(Privilege.JMX_WRITE, null),
|
hasPrivilege);
|
|
|
String schemaDirectory = SchemaConfigManager.getSchemaDirectoryPath();
|
|
String identifier;
|
Entry authNEntry = conn.getAuthenticationInfo().getAuthenticationEntry();
|
if (authNEntry == null)
|
{
|
identifier = "null";
|
}
|
else
|
{
|
identifier = authNEntry.getName().toString();
|
identifier = identifier.replace(',', '-');
|
identifier = identifier.replace(' ', '-');
|
identifier = identifier.replace('=', '-');
|
}
|
|
String[] fileLines =
|
{
|
"dn: cn=schema",
|
"objectClass: top",
|
"objectClass: ldapSubentry",
|
"objectClass: subschema",
|
"attributeTypes: ( " + identifier.toLowerCase() + "-oid " +
|
"NAME '" + identifier + "' )"
|
};
|
|
File validFile = new File(schemaDirectory, "05-" + identifier + ".ldif");
|
BufferedWriter writer = new BufferedWriter(new FileWriter(validFile));
|
for (String line : fileLines)
|
{
|
writer.write(line);
|
writer.newLine();
|
}
|
writer.close();
|
|
}
|
|
/**
|
* Tests to ensure that the use of the Directory Server will properly respect
|
* the PROXIED_AUTH privilege for add, delete, modify and modify DN requests
|
* that contain the proxied auth v1 control.
|
*
|
* @param conn The client connection to use to perform the
|
* operation.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the PROXIED_AUTH privilege and therefore
|
* the operation should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testProxyAuthV1Write(JmxClientConnection conn, boolean hasPrivilege) throws Exception
|
{
|
// We can't trust the value of hasPrivilege because root users don't get
|
// proxy privileges by default. So make the determination based on the
|
// privileges the user actually has.
|
boolean hasProxyPrivilege = conn.hasPrivilege(Privilege.PROXIED_AUTH, null);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=ProxyV1 Test,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: ProxyV1 Test",
|
"givenName: ProxyV1",
|
"sn: Test");
|
|
ArrayList<Control> controls = new ArrayList<>(1);
|
controls.add(new ProxiedAuthV1Control(
|
DN.valueOf("cn=PWReset Target,o=test")));
|
|
|
// Try to add the entry. If this fails with the proxy control, then add it
|
// with a root connection so we can do other things with it.
|
AddOperationBasis addOperation =
|
new AddOperationBasis(conn, conn
|
.nextOperationID(), conn.nextMessageID(), controls, e.getName(), e
|
.getObjectClasses(), e.getUserAttributes(), e
|
.getOperationalAttributes());
|
addOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(addOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
TestCaseUtils.addEntry(e);
|
}
|
|
|
// Try to modify the entry to add a description.
|
ArrayList<Modification> mods = new ArrayList<>(1);
|
mods.add(new Modification(ModificationType.REPLACE,
|
Attributes.create("description", "foo")));
|
|
ModifyOperationBasis modifyOperation = new ModifyOperationBasis(conn,
|
conn.nextOperationID(), conn.nextMessageID(), controls, e.getName(),
|
mods);
|
modifyOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(modifyOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
}
|
|
|
// Try to rename the entry.
|
ModifyDNOperationBasis modifyDNOperation =
|
new ModifyDNOperationBasis(conn, conn.nextOperationID(),
|
conn.nextMessageID(), controls, e.getName(),
|
RDN.decode("cn=Proxy V1 Test"), true, null);
|
modifyDNOperation.run();
|
|
DN newEntryDN;
|
if (hasProxyPrivilege)
|
{
|
assertEquals(modifyDNOperation.getResultCode(), ResultCode.SUCCESS);
|
newEntryDN = modifyDNOperation.getNewDN();
|
}
|
else
|
{
|
assertEquals(modifyDNOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
newEntryDN = e.getName();
|
}
|
|
|
// Try to delete the operation. If this fails, then delete it with a root
|
// connection so it gets cleaned up.
|
DeleteOperationBasis deleteOperation =
|
new DeleteOperationBasis(conn,
|
conn.nextOperationID(), conn.nextMessageID(), controls, newEntryDN);
|
deleteOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(deleteOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
|
InternalClientConnection rootConnection =
|
InternalClientConnection.getRootConnection();
|
DeleteOperation delOp = rootConnection.processDelete(newEntryDN);
|
assertEquals(delOp.getResultCode(), ResultCode.SUCCESS);
|
}
|
}
|
|
|
|
/**
|
* Tests to ensure that the use of the Directory Server will properly respect
|
* the PROXIED_AUTH privilege for search and compare requests that contain the
|
* proxied auth v1 control.
|
*
|
* @param conn The client connection to use to perform the
|
* operation.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the PROXIED_AUTH privilege and therefore
|
* the operation should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testProxyAuthV1Read(JmxClientConnection conn, boolean hasPrivilege) throws Exception
|
{
|
// We can't trust the value of hasPrivilege because root users don't get
|
// proxy privileges by default. So make the determination based on the
|
// privileges the user actually has.
|
boolean hasProxyPrivilege = conn.hasPrivilege(Privilege.PROXIED_AUTH, null);
|
|
DN targetDN = DN.valueOf("cn=PWReset Target,o=test");
|
ArrayList<Control> controls = new ArrayList<>(1);
|
controls.add(new ProxiedAuthV1Control(targetDN));
|
|
|
// Test a compare operation against the PWReset Target user.
|
CompareOperationBasis compareOperation =
|
new CompareOperationBasis(conn, conn.nextOperationID(),
|
conn.nextMessageID(), controls, targetDN,
|
DirectoryServer.getAttributeType("cn", true),
|
ByteString.valueOf("PWReset Target"));
|
compareOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(compareOperation.getResultCode(), ResultCode.COMPARE_TRUE);
|
}
|
else
|
{
|
assertEquals(compareOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
}
|
|
|
// Test a search operation against the PWReset Target user.
|
SearchRequest request = newSearchRequest(targetDN, SearchScope.BASE_OBJECT).addControl(controls);
|
InternalSearchOperation searchOperation = new InternalSearchOperation(
|
conn, conn.nextOperationID(), conn.nextMessageID(), request, null);
|
searchOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(searchOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(searchOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
}
|
}
|
|
/**
|
* Tests to ensure that the use of the Directory Server will properly respect
|
* the PROXIED_AUTH privilege for add, delete, modify and modify DN requests
|
* that contain the proxied auth v2 control.
|
*
|
* @param conn The client connection to use to perform the
|
* operation.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the PROXIED_AUTH privilege and therefore
|
* the operation should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testProxyAuthV2Write(JmxClientConnection conn, boolean hasPrivilege) throws Exception
|
{
|
// We can't trust the value of hasPrivilege because root users don't get
|
// proxy privileges by default. So make the determination based on the
|
// privileges the user actually has.
|
boolean hasProxyPrivilege = conn.hasPrivilege(Privilege.PROXIED_AUTH, null);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=ProxyV2 Test,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: ProxyV2 Test",
|
"givenName: ProxyV2",
|
"sn: Test");
|
|
ArrayList<Control> controls = new ArrayList<>(1);
|
controls.add(new ProxiedAuthV2Control(
|
ByteString.valueOf("dn:cn=PWReset Target,o=test")));
|
|
|
// Try to add the entry. If this fails with the proxy control, then add it
|
// with a root connection so we can do other things with it.
|
DN authDN = conn.getAuthenticationInfo().getAuthenticationDN();
|
AddOperationBasis addOperation =
|
new AddOperationBasis(conn, conn
|
.nextOperationID(), conn.nextMessageID(), controls, e.getName(), e
|
.getObjectClasses(), e.getUserAttributes(), e
|
.getOperationalAttributes());
|
addOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS,
|
"Unexpected add failure for user " + authDN);
|
}
|
else
|
{
|
assertEquals(addOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED,
|
"Unexpected add success for user " + authDN);
|
TestCaseUtils.addEntry(e);
|
}
|
|
|
// Try to modify the entry to add a description.
|
ArrayList<Modification> mods = new ArrayList<>(1);
|
mods.add(new Modification(ModificationType.REPLACE,
|
Attributes.create("description", "foo")));
|
|
ModifyOperationBasis modifyOperation =
|
new ModifyOperationBasis(conn,
|
conn.nextOperationID(), conn.nextMessageID(), controls, e.getName(),
|
mods);
|
modifyOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS,
|
"Unexpected mod failure for user " + authDN);
|
}
|
else
|
{
|
assertEquals(modifyOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED,
|
"Unexpected mod success for user " + authDN);
|
}
|
|
|
// Try to rename the entry.
|
ModifyDNOperationBasis modifyDNOperation =
|
new ModifyDNOperationBasis(conn, conn.nextOperationID(),
|
conn.nextMessageID(), controls, e.getName(),
|
RDN.decode("cn=Proxy V2 Test"), true, null);
|
modifyDNOperation.run();
|
|
DN newEntryDN;
|
if (hasProxyPrivilege)
|
{
|
assertEquals(modifyDNOperation.getResultCode(), ResultCode.SUCCESS,
|
"Unexpected moddn failure for user " + authDN);
|
newEntryDN = modifyDNOperation.getNewDN();
|
}
|
else
|
{
|
assertEquals(modifyDNOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED,
|
"Unexpected moddn success for user " + authDN);
|
newEntryDN = e.getName();
|
}
|
|
|
// Try to delete the operation. If this fails, then delete it with a root
|
// connection so it gets cleaned up.
|
DeleteOperationBasis deleteOperation =
|
new DeleteOperationBasis(conn,
|
conn.nextOperationID(), conn.nextMessageID(), controls, newEntryDN);
|
deleteOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS,
|
"Unexpected delete failure for user " + authDN);
|
}
|
else
|
{
|
assertEquals(deleteOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED,
|
"Unexpected delete success for user " + authDN);
|
|
InternalClientConnection rootConnection =
|
InternalClientConnection.getRootConnection();
|
DeleteOperation delOp = rootConnection.processDelete(newEntryDN);
|
assertEquals(delOp.getResultCode(), ResultCode.SUCCESS);
|
}
|
}
|
|
|
|
/**
|
* Tests to ensure that the use of the Directory Server will properly respect
|
* the PROXIED_AUTH privilege for search and compare requests that contain the
|
* proxied auth v2 control.
|
*
|
* @param conn The client connection to use to perform the
|
* operation.
|
* @param hasPrivilege Indicates whether the authenticated user is expected
|
* to have the PROXIED_AUTH privilege and therefore
|
* the operation should succeed.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test(dataProvider = "testdata")
|
public void testProxyAuthV2Read(JmxClientConnection conn, boolean hasPrivilege) throws Exception
|
{
|
// We can't trust the value of hasPrivilege because root users don't get
|
// proxy privileges by default. So make the determination based on the
|
// privileges the user actually has.
|
boolean hasProxyPrivilege = conn.hasPrivilege(Privilege.PROXIED_AUTH, null);
|
|
DN targetDN = DN.valueOf("cn=PWReset Target,o=test");
|
ArrayList<Control> controls = new ArrayList<>(1);
|
controls.add(new ProxiedAuthV2Control(ByteString.valueOf("dn:" + targetDN)));
|
|
|
// Test a compare operation against the PWReset Target user.
|
CompareOperationBasis compareOperation =
|
new CompareOperationBasis(conn, conn.nextOperationID(),
|
conn.nextMessageID(), controls, targetDN,
|
DirectoryServer.getAttributeType("cn", true),
|
ByteString.valueOf("PWReset Target"));
|
compareOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(compareOperation.getResultCode(), ResultCode.COMPARE_TRUE);
|
}
|
else
|
{
|
assertEquals(compareOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
}
|
|
|
// Test a search operation against the PWReset Target user.
|
SearchRequest request = newSearchRequest(targetDN, SearchScope.BASE_OBJECT).addControl(controls);
|
InternalSearchOperation searchOperation = new InternalSearchOperation(
|
conn, conn.nextOperationID(), conn.nextMessageID(), request, null);
|
searchOperation.run();
|
|
if (hasProxyPrivilege)
|
{
|
assertEquals(searchOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
else
|
{
|
assertEquals(searchOperation.getResultCode(),
|
ResultCode.AUTHORIZATION_DENIED);
|
}
|
}
|
|
|
/**
|
* Tests the ability to update the set of privileges for a user on the fly
|
* and have them take effect immediately.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test
|
public void testUpdateUserPrivileges() throws Exception
|
{
|
InternalClientConnection rootConnection = getRootConnection();
|
|
final String dnStr = "cn=Test User,o=test";
|
final DN dn = DN.valueOf(dnStr);
|
Entry testEntry = TestCaseUtils.addEntry(
|
"dn: " + dnStr,
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Test User",
|
"givenName: Test",
|
"sn: User",
|
"userPassword: password");
|
|
AuthenticationInfo authInfo = new AuthenticationInfo(testEntry, false);
|
JmxConnectionHandler jmxCtx = getJmxConnectionHandler();
|
JmxClientConnection testConnection =
|
new JmxClientConnection(jmxCtx,authInfo);
|
|
|
// Make sure the user starts out without any privileges.
|
for (Privilege p : Privilege.values())
|
{
|
assertFalse(testConnection.hasPrivilege(p, null));
|
}
|
|
|
// Modify the user entry to add the JMX_READ privilege and verify that
|
// the client connection reflects that.
|
ArrayList<Modification> mods = new ArrayList<>();
|
mods.add(new Modification(ModificationType.ADD,
|
Attributes.create("ds-privilege-name", "jmx-read")));
|
ModifyOperation modifyOperation = rootConnection.processModify(dn, mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
assertTrue(testConnection.hasPrivilege(Privilege.JMX_READ, null));
|
|
|
// Take the privilege away from the user and verify that it is recognized
|
// immediately.
|
mods.clear();
|
mods.add(new Modification(ModificationType.DELETE,
|
Attributes.create("ds-privilege-name", "jmx-read")));
|
modifyOperation = rootConnection.processModify(dn, mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
assertFalse(testConnection.hasPrivilege(Privilege.JMX_READ, null));
|
|
DeleteOperation deleteOperation = rootConnection.processDelete(dn);
|
assertEquals(deleteOperation.getResultCode(), ResultCode.SUCCESS);
|
}
|
|
|
|
/**
|
* Tests the ability to update the set of root privileges and have them take
|
* effect immediately for new root connections.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test
|
public void testUpdateRootPrivileges()
|
throws Exception
|
{
|
// Make sure that a root connection doesn't have the proxied auth
|
// privilege.
|
DN unprivRootDN = DN.valueOf("cn=Unprivileged Root,cn=Root DNs,cn=config");
|
Entry unprivRootEntry = DirectoryServer.getEntry(unprivRootDN);
|
AuthenticationInfo authInfo = new AuthenticationInfo(unprivRootEntry, true);
|
JmxConnectionHandler jmxCtx = getJmxConnectionHandler();
|
JmxClientConnection unprivRootConn =
|
new JmxClientConnection(jmxCtx,authInfo);
|
assertFalse(unprivRootConn.hasPrivilege(Privilege.PROXIED_AUTH, null));
|
|
|
// Update the set of root privileges to include proxied auth.
|
InternalClientConnection conn = getRootConnection();
|
|
ArrayList<Modification> mods = new ArrayList<>();
|
mods.add(new Modification(ModificationType.ADD,
|
Attributes.create("ds-cfg-default-root-privilege-name",
|
"proxied-auth")));
|
ModifyOperation modifyOperation =
|
conn.processModify(DN.valueOf("cn=Root DNs,cn=config"), mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
// Get a new root connection and verify that it now has proxied auth.
|
unprivRootEntry = DirectoryServer.getEntry(unprivRootDN);
|
authInfo = new AuthenticationInfo(unprivRootEntry, true);
|
unprivRootConn = new JmxClientConnection(jmxCtx,authInfo);
|
assertTrue(unprivRootConn.hasPrivilege(Privilege.PROXIED_AUTH, null));
|
|
|
// Update the set of root privileges to revoke proxied auth.
|
mods.clear();
|
mods.add(new Modification(ModificationType.DELETE,
|
Attributes.create("ds-cfg-default-root-privilege-name",
|
"proxied-auth")));
|
modifyOperation =
|
conn.processModify(DN.valueOf("cn=Root DNs,cn=config"), mods);
|
assertEquals(modifyOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
// Get a new root connection and verify that it no longer has proxied auth.
|
unprivRootEntry = DirectoryServer.getEntry(unprivRootDN);
|
authInfo = new AuthenticationInfo(unprivRootEntry, true);
|
unprivRootConn = new JmxClientConnection(jmxCtx,authInfo);
|
assertFalse(unprivRootConn.hasPrivilege(Privilege.PROXIED_AUTH, null));
|
}
|
|
|
|
/**
|
* Retrieves the specified task from the server, waiting for it to finish all
|
* the running its going to do before returning.
|
*
|
* @param taskEntryDN The DN of the entry for the task to retrieve.
|
*
|
* @return The requested task entry.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
private Task getCompletedTask(DN taskEntryDN) throws Exception
|
{
|
TaskBackend taskBackend =
|
(TaskBackend) DirectoryServer.getBackend(DN.valueOf("cn=tasks"));
|
Task task = taskBackend.getScheduledTask(taskEntryDN);
|
if (task == null)
|
{
|
long stopWaitingTime = System.currentTimeMillis() + 10000L;
|
while (task == null && System.currentTimeMillis() < stopWaitingTime)
|
{
|
Thread.sleep(10);
|
task = taskBackend.getScheduledTask(taskEntryDN);
|
}
|
}
|
|
assertNotNull(task, "There is no such task " + taskEntryDN);
|
if (! TaskState.isDone(task.getTaskState()))
|
{
|
long stopWaitingTime = System.currentTimeMillis() + 20000L;
|
while (!TaskState.isDone(task.getTaskState())
|
&& System.currentTimeMillis() < stopWaitingTime)
|
{
|
Thread.sleep(10);
|
}
|
}
|
|
assertTrue(TaskState.isDone(task.getTaskState()),
|
"Task " + taskEntryDN + " did not complete in a timely manner.");
|
return task;
|
}
|
}
|