1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.derbynet.SecureServerTest
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.derbyTesting.functionTests.tests.derbynet;
import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.ArrayList;
import java.util.Arrays;
import junit.framework.Test;
import org.apache.derby.drda.NetworkServerControl;
import org.apache.derbyTesting.functionTests.util.PrivilegedFileOpsForTests;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.ClassLoaderTestSetup;
import org.apache.derbyTesting.junit.Derby;
import org.apache.derbyTesting.junit.NetworkServerTestSetup;
import org.apache.derbyTesting.junit.SecurityManagerSetup;
import org.apache.derbyTesting.junit.SpawnedProcess;
import org.apache.derbyTesting.junit.SupportFilesSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* This Junit test class tests whether the server comes up under a security
* manager as expected.
*/
public class SecureServerTest extends BaseJDBCTestCase
{
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTANTS
//
///////////////////////////////////////////////////////////////////////////////////
// basic properties file which tests that properties are picked up from derby.properties
private static final String BASIC = "functionTests/tests/derbynet/SecureServerTest.derby.properties";
private static final String SST_USER_NAME="MARY";
private static final String SST_PASSWORD = "marypwd";
private static final String HOSTW = "0.0.0.0";
private static final String ALTW = "0.00.000.0";
private static final String IPV6W = "::";
///////////////////////////////////////////////////////////////////////////////////
//
// INNER CLASSES
//
///////////////////////////////////////////////////////////////////////////////////
/**
* <p>
* Possible outcomes for the experiment of bringing up the server.
* </p>
*/
public static final class Outcome
{
private boolean _serverShouldComeUp;
private String _expectedServerOutput;
public Outcome
(
boolean serverShouldComeUp,
String expectedServerOutput
)
{
_serverShouldComeUp = serverShouldComeUp;
_expectedServerOutput = expectedServerOutput;
}
public boolean serverShouldComeUp() { return _serverShouldComeUp; }
public String expectedServerOutput() { return _expectedServerOutput; }
}
///////////////////////////////////////////////////////////////////////////////////
//
// STATE
//
///////////////////////////////////////////////////////////////////////////////////
private static final Outcome RUNNING_SECURITY_NOT_BOOTED = new Outcome( true, "" );
private static final Outcome RUNNING_SECURITY_BOOTED = new Outcome( true, serverBootedOK() );
/** Reference to the enclosing NetworkServerTestSetup. */
private NetworkServerTestSetup nsTestSetup;
// startup state
private boolean _unsecureSet;
private boolean _authenticationRequired;
private String _customDerbyProperties;
private String _wildCardHost;
// expected outcomes
private Outcome _outcome;
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTRUCTORS
//
///////////////////////////////////////////////////////////////////////////////////
public SecureServerTest
(
boolean unsecureSet,
boolean authenticationRequired,
String customDerbyProperties,
String wildCardHost,
Outcome outcome
)
{
super( "testServerStartup" );
_unsecureSet = unsecureSet;
_authenticationRequired = authenticationRequired;
_customDerbyProperties = customDerbyProperties;
_wildCardHost = wildCardHost;
_outcome = outcome;
}
public SecureServerTest(String fixture) {
super(fixture);
}
///////////////////////////////////////////////////////////////////////////////////
//
// JUnit MACHINERY
//
///////////////////////////////////////////////////////////////////////////////////
/**
* Tests to run.
*/
public static Test suite()
{
//NetworkServerTestSetup.setWaitTime( 10000L );
BaseTestSuite suite = new BaseTestSuite("SecureServerTest");
// Server booting requires that we run from the jar files
if ( !TestConfiguration.loadingFromJars() ) { return suite; }
// Need derbynet.jar in the classpath!
if (!Derby.hasServer())
return suite;
// O = Overriden
// A = Authenticated
// C = Custom properties
// W = Wildcard host
//
// .addTest( decorateTest( O, A, C, W, Outcome ) );
//
suite.addTest( decorateTest( false, false, null, null, RUNNING_SECURITY_BOOTED ) );
suite.addTest( decorateTest( false, false, BASIC, null, RUNNING_SECURITY_BOOTED ) );
suite.addTest( decorateTest( false, true, null, null, RUNNING_SECURITY_BOOTED ) );
suite.addTest( decorateTest( false, true, null, HOSTW, RUNNING_SECURITY_BOOTED ) );
suite.addTest( decorateTest( false, true, null, ALTW, RUNNING_SECURITY_BOOTED ) );
// this wildcard port is rejected by the server right now
//suite.addTest( decorateTest( false, true, null, IPV6W, RUNNING_SECURITY_BOOTED ) );
suite.addTest( makeDerby6619Test() );
return suite;
}
///////////////////////////////////////////////////////////////////////////////////
//
// TEST DECORATION
//
///////////////////////////////////////////////////////////////////////////////////
/**
* <p>
* Compose the required decorators to bring up the server in the correct
* configuration.
* </p>
*/
private static Test decorateTest
(
boolean unsecureSet,
boolean authenticationRequired,
String customDerbyProperties,
String wildCardHost,
Outcome outcome
)
{
SecureServerTest secureServerTest = new SecureServerTest
(
unsecureSet,
authenticationRequired,
customDerbyProperties,
wildCardHost,
outcome
);
String[] startupProperties = getStartupProperties( authenticationRequired, customDerbyProperties );
String[] startupArgs = getStartupArgs( unsecureSet, wildCardHost );
NetworkServerTestSetup networkServerTestSetup =
new NetworkServerTestSetup
(
secureServerTest,
startupProperties,
startupArgs,
secureServerTest._outcome.serverShouldComeUp()
);
secureServerTest.nsTestSetup = networkServerTestSetup;
Test testSetup =
SecurityManagerSetup.noSecurityManager(networkServerTestSetup);
// if using the custom derby.properties, copy the custom properties to a visible place
if ( customDerbyProperties != null )
{
testSetup = new SupportFilesSetup
(
testSetup,
null,
new String[] { "functionTests/tests/derbynet/SecureServerTest.derby.properties" },
null,
new String[] { "derby.properties" }
);
}
Test test = TestConfiguration.defaultServerDecorator( testSetup );
// DERBY-2109: add support for user credentials
test = TestConfiguration.changeUserDecorator( test,
SST_USER_NAME,
SST_PASSWORD );
return test;
}
/**
* <p>
* Return an array of startup args suitable for booting a server.
* </p>
*/
private static String[] getStartupArgs( boolean setUnsecureOption, String wildCardHost )
{
ArrayList<String> list = new ArrayList<String>();
if ( setUnsecureOption )
{
list.add( "-noSecurityManager" );
}
if ( wildCardHost != null )
{
list.add( NetworkServerTestSetup.HOST_OPTION );
list.add( wildCardHost );
}
return list.toArray(new String[list.size()]);
}
/**
* <p>
* Return a set of startup properties suitable for SystemPropertyTestSetup.
* </p>
*/
private static String[] getStartupProperties( boolean authenticationRequired, String customDerbyProperties )
{
ArrayList<String> list = new ArrayList<String>();
if ( authenticationRequired )
{
list.add( "derby.connection.requireAuthentication=true" );
list.add( "derby.authentication.provider=BUILTIN" );
list.add( "derby.user." + SST_USER_NAME + "=" + SST_PASSWORD );
}
if ( customDerbyProperties != null )
{
list.add( "derby.system.home=extinout" );
}
return list.toArray(new String[list.size()]);
}
// Policy which lacks the permission to set the context class loader.
final static String POLICY6619 =
"org/apache/derbyTesting/functionTests/" +
"tests/derbynet/SecureServerTest.policy";
private static Test makeDerby6619Test() {
Test t = new SecureServerTest("test6619");
t = TestConfiguration.clientServerDecorator(t);
t = new SecurityManagerSetup(t, POLICY6619);
t = new ClassLoaderTestSetup(t);
return t;
}
///////////////////////////////////////////////////////////////////////////////////
//
// JUnit TESTS
//
///////////////////////////////////////////////////////////////////////////////////
public void test6619() throws Exception {
NetworkServerControl nsc =
NetworkServerTestSetup.getNetworkServerControl();
NetworkServerTestSetup.waitForServerStart(nsc);
// non standard class loader, so expect to see the warning on derby.log
assertWarningDerby6619("derby.system.home", true);
}
/**
* Verify if the server came up and if so, was a security manager installed.
*/
public void testServerStartup()
throws Exception
{
String myName = toString();
boolean serverCameUp = serverCameUp();
String serverOutput = getServerOutput();
boolean outputOK = ( serverOutput.indexOf( _outcome.expectedServerOutput() ) >= 0 );
assertEquals( myName + ": serverCameUp = " + serverCameUp, _outcome.serverShouldComeUp(), serverCameUp );
assertWarningDerby6619("user.dir", false); // standard class loader
if (!(runsWithEmma() || runsWithJaCoCo())) {
// With Emma we run without the security manager, so we can't
// assert on seeing it.
assertTrue( myName + "\nExpected: " +
_outcome.expectedServerOutput() +
"\nBut saw: " + serverOutput , outputOK );
}
//
// make sure that the default policy lets us connect to the server if the hostname was
// wildcarded (DERBY-2811)
//
if ( _authenticationRequired && ( _wildCardHost != null ) ) { connectToServer(); }
//
// make sure that we can run sysinfo and turn on tracing (DERBY-3086)
//
runsysinfo();
enableTracing();
setTraceDirectory();
disableTracing();
}
private void disableTracing() throws Exception {
String traceOffOutput = runServerCommand(
new String[] { "trace", "off" });
println( "Output for trace off command:\n\n" + traceOffOutput );
if ( traceOffOutput.indexOf( "Trace turned off for all sessions." ) < 0 )
{ fail( "Failed to turn trace off:\n\n:" + traceOffOutput ); }
}
private void setTraceDirectory() throws Exception {
String traceDirectoryOutput = runServerCommand(
new String[] { "tracedirectory", "trace" });
println( "Output for tracedirectory trace command:\n\n" + traceDirectoryOutput );
if ( traceDirectoryOutput.indexOf( "Trace directory changed to trace." ) < 0 )
{ fail( "Unexpected output in setting trace directory:" + traceDirectoryOutput ); }
String pingOutput = runServerCommand( new String[] { "ping" } );
if (pingOutput.indexOf("Connection obtained for host:") < 0)
{ fail ("Failed ping after changing trace directory: " + pingOutput);}
assertTrue("directory trace does not exist",
PrivilegedFileOpsForTests.exists(new File("trace")));
}
private void connectToServer()
throws Exception
{
final TestConfiguration config = getTestConfiguration();
String url
= ( "jdbc:derby://localhost:" + config.getPort()
+ "/" + "wombat;create=true"
+ ";user=" + config.getUserName()
+ ";password=" + config.getUserPassword() );
println( "XXX in connectToServer(). url = " + url );
// just try to get a connection
Class.forName( "org.apache.derby.jdbc.ClientDriver" );
Connection conn = DriverManager.getConnection( url );
assertNotNull( "Connection should not be null...", conn );
conn.close();
}
private void runsysinfo()
throws Exception
{
String sysinfoOutput = runServerCommand(
new String[] { "sysinfo" } );
if ( sysinfoOutput.indexOf( "Security Exception:" ) > -1 )
{ fail( "Security exceptions in sysinfo output:\n\n:" + sysinfoOutput ); }
}
private void enableTracing()
throws Exception
{
String traceOnOutput = runServerCommand(
new String[] { "trace", "on" } );
println( "Output for trace on command:\n\n" + traceOnOutput );
if ( traceOnOutput.indexOf( "Trace turned on for all sessions." ) < 0 )
{ fail( "Security exceptions in output of trace enabling command:\n\n:" + traceOnOutput ); }
}
///////////////////////////////////////////////////////////////////////////////////
//
// Object OVERLOADS
//
///////////////////////////////////////////////////////////////////////////////////
public String toString()
{
StringBuilder buffer = new StringBuilder();
buffer.append( "SecureServerTest( " );
buffer.append( "Opened = " ); buffer.append( _unsecureSet);
buffer.append( ", Authenticated= " ); buffer.append( _authenticationRequired );
buffer.append( ", CustomDerbyProperties= " ); buffer.append( _customDerbyProperties );
buffer.append( ", WildCardHost= " ); buffer.append( _wildCardHost );
buffer.append( " )" );
return buffer.toString();
}
///////////////////////////////////////////////////////////////////////////////////
//
// MINIONS
//
///////////////////////////////////////////////////////////////////////////////////
/**
* <p>
* Run a NetworkServerControl command.
* </p>
*/
private String runServerCommand( String[] commandSpecifics )
throws Exception
{
String portNumber = Integer.toString( getTestConfiguration().getPort() );
ArrayList<String> cmdList = new ArrayList<String>();
cmdList.add("-Demma.verbosity.level=silent");
cmdList.add("org.apache.derby.drda.NetworkServerControl");
cmdList.add("-p");
cmdList.add(portNumber);
cmdList.addAll(Arrays.asList(commandSpecifics));
String[] cmd = (String[]) cmdList.toArray(commandSpecifics);
Process serverProcess = execJavaCmd(cmd);
SpawnedProcess spawned = new SpawnedProcess(serverProcess,
cmdList.toString());
// Ensure it completes without failures.
assertEquals(0, spawned.complete());
return spawned.getFullServerOutput();
}
private String getServerOutput()
throws Exception
{
return nsTestSetup.getServerProcess().getNextServerOutput();
}
private static String serverBootedOK()
{
return "Security manager installed using the Basic server security policy.";
}
private boolean serverCameUp()
throws Exception
{
return NetworkServerTestSetup.pingForServerUp(
NetworkServerTestSetup.getNetworkServerControl(),
nsTestSetup.getServerProcess().getProcess(), true);
}
final String[] expected6619 =
new String[]{
"WARNING: cannot set the context class loader due to a " +
"security exception:",
"This may lead to class loader leak"};
private void assertWarningDerby6619(String logLocation, boolean expected)
throws IOException {
final String logFileName =
getSystemProperty(logLocation) + File.separator + "derby.log";
if (DerbyNetAutoStartTest.checkLog(logFileName, expected6619)) {
if (!expected) {
fail("Expected no warning on derby.log cf DERBY-6619");
}
} else {
if (expected) {
fail("Expected warning on derby.log cf DERBY-6619");
}
}
}
}
|