Migrate Java 2 security policy

 

Overview

Previous WAS releases

WebSphere Application Server uses the Java 2 security manager in the server run time to prevent enterprise applications from calling the System.exit() and the System.setSecurityManager() methods. These two Java application programming interfaces (API) have undesirable consequences if called by enterprise applications. The System.exit() API, for example, causes the Java virtual machine (application server process) to exit prematurely, which is an undesirable operation for an application server.

To support Java 2 security properly, all the server run time must be marked as privileged (with doPrivileged() API calls inserted in the correct places), and identify the default permission sets or policy. Application code is not privileged and subject to the permissions defined in the policy files. The doPrivileged instrumentation is important and necessary to support Java 2 security. Without it, the application code must be granted the permissions required by the server run time. This is due to the design and algorithm used by Java 2 security to enforce permission checks. Please refer to the Java 2 security check permission algorithm.

The following two permissions are enforced by the WebSphere Java 2 security manager (hard coded):

Application code is denied access to these permissions regardless of what is in the Java 2 security policy. However, the server run time is granted these permissions. All the other permission checks are not enforced.

Only two permissions are supported:

However, not all the product server run time is properly marked as privileged. You must grant the application code all the other permissions besides the two listed previously or the enterprise application can potentially fail to run. This Java 2 security policy for enterprise applications is liberal.

What changed

Java 2 Security is fully supported in WAS v6.x, which means all permissions are enforced. The default Java 2 security policy for enterprise application is the recommended permission set defined by the Java 2 Platform, Enterprise Edition (J2EE) V1.4 specification. Refer to the install_root/profiles/profile/config/cells/cell/nodes/node/app.policy file for the default Java 2 security policy granted to enterprise applications. This is a much more stringent policy compared to previous releases.

All policy is declarative. The product security manager honors all policy declared in the policy files. There is an exception to this rule: enterprise applications are denied access to permissions declared in the install_root/profiles/profile/config/cells/cell/filter.policy file.

Note: The default Java 2 security policy for enterprise applications is much more stringent and all permissions are enforced in WebSphere Application Server v6.x. It might fail because the application code does not have the necessary permissions granted where system resources (such as file I/O for example) can be programmatically accessed and are now subject to the permission checking.

In application code, do not use the setSecurityManager permission to set a security manager. When an application uses the setSecurityManager permission, there is a conflict with the internal security manager within WebSphere Application Server. If set a security manager in an application for RMI purposes, you also must enable the Enforce Java 2 Security option on the Global security settings page within the WebSphere Application Server administrative console. WAS then registers a security manager. The application code can verify that this security manager is registered by using System.getSecurityManager() application programming interface (API).

Migrating system properties

The following system properties are used in previous releases in relation to Java 2 security:

  • java.security.policy. The absolute path of the policy file (action required). It contains both system permissions (permissions granted to the Java Virtual Machine (JVM) and the product server run time) and enterprise application permissions. Migrate the Java 2 security policy of the enterprise application to WAS v6.x. For Java 2 security policy migration, see the steps for migrating Java 2 security policy.

  • enableJava2Security. Used to enable Java 2 security enforcement (no action required). This is deprecated; a flag in the WebSphere configuration application programming interface (API) is used to control whether to enabled Java 2 security. Enable this option through the administrative console.

  • was.home. Expanded to the installation directory of the WAS (action might be required). This is deprecated; superseded by ${user.install.root} and ${was.install.root} properties. If the directory contains instance specific data then ${user.install.root} is used; otherwise ${was.install.root} is used. Use these properties interchangeably for the WAS or the Network Deployment environments. See the steps for migrating Java 2 security policy.

Migrating the Java 2 Security Policy

There is no easy way of migrating the Java policy file to WebSphere Application Server v6.x automatically because there is a mixture of system permissions and application permissions in the same policy file. Manually copy the Java 2 security policy for enterprise applications to a was.policy or app.policy file. However, migrating the Java 2 security policy to a was.policy file is preferable because symbols or relative codebase is used instead of absolute codebase. There are many advantages to this process. The permissions defined in was.policy should only be granted to the specific enterprise application, while permissions in app.policy apply to all the enterprise applications running on the node where app.policy belongs. Refer to the Java 2 security policy files article for more details on policy management.

The following example illustrates the migration of a Java 2 security policy from a previous release. The contents include the Java 2 security policy file (the default is install_rootprofiles profile/properties/java.policy) for the app1.ear enterprise application and the system permissions (permissions granted to the JVM and product server run time). Default permissions are omitted for clarity:

// For product Samples
grant codeBase "file:${install_root}/installedApps/app1.ear/-" {
permission java.security.SecurityPermission "printIdentity";
permission java.io.FilePermission "${install_root}${/}temp${/}somefile.txt",
"read";
};

For clarity of illustration, all the permissions are migrated as the application level permissions in this example. However, one can grant permissions at a more granular level at the component level (Web, enterprise beans, connector or utility JAR component level) or one can grant permissions to a particular component.

 

Procedure

  1. Ensure that Java 2 security is disabled on the application server.

  2. Create a new was.policy file (if one is not present) or update the was.policy for migrated applications in the configuration repository in (profiles/profileconfig/cells/cell/applications/app.ear/deployments/app/META-INF/was.policy) with the following contents:

    grant codeBase "file:${application}" {
    permission java.security.SecurityPermission "printIdentity";
    permission java.io.FilePermission "
    ${user.install.root}${/}temp${/}somefile.txt", "read";
    };

    The third and fourth lines in the previous code sample are one continuous line, but extended beyond the width of the page.

  3. Use an assembly tool to attach was.policy to the EAR file. You also can use an assembly tool to validate the contents of was.policy. For more information, see Configuring was.policy.

  4. Validate that the enterprise application does not require additional permissions to the migrated Java 2 Security permissions and the default permissions set declared in the ${was.install.root}profiles/profile/config/cells/cell/nodes/node/app.policy file. This requires code review, code inspection, application documentation review, and sandbox testing of migrated enterprise applications with Java 2 security enabled in a pre-production environment. Refer to developer kit APIs protected by Java 2 security for information about which APIs are protected by Java 2 security. If you use third party libraries, consult the vendor documentation for APIs that are protected by Java 2 security. Verify that the application is granted all the required permissions, or it might fail to run when Java 2 security is enabled.

  5. Perform pre-production testing of the migrated enterprise application with Java 2 security enabled. Hint: Enable trace for the WebSphere Application Server Java 2 security manager in the pre-production testing environment (with trace string: com.ibm.ws.security.core.SecurityManager=all=enabled). This can be helpful in debugging the AccessControlException exception thrown when an application is not granted the required permission or some system code is not properly marked as privileged. The trace dumps the stack trace and permissions granted to the classes on the call stack when the exception is thrown. For more information, see Access control exception.

    Note: Because the Java 2 security policy is much more stringent compared with previous releases, it is strongly advised that the administrator or deployer review their enterprise applications to see if extra permissions are required before enabling Java 2 security. If the enterprise applications are not granted the required permissions, they fail to run.


 

Related Tasks


Configuring was.policy
Assembly tools