This example demonstrates basic command security and user authentication in a client application backed by a secured Geode cluster. It also demonstrates use of secure sockets (SSL) between all members and between a client and a server. This example assumes that Java is installed.
Geode security is based on Apache Shiro. Permissions are defined by
- the resource accessed (
DATAandCLUSTER) - the operation performed (
READ,WRITE, orMANAGE) - the target for this resource operation (typically a region name)
- the key for the target (e.g., the key of the region's key-value pair)
A single permission is represented by a :-separated string, e.g., DATA:READ:region1:myKey.
Permissions need not be fully specified.
Abridged permissions are hierarchical.
A permission of CLUSTER implies CLUSTER:READ, CLUSTER:WRITE, and CLUSTER:MANAGE,
for all target regions and all key values.
Using wildcard annotation, a permission of CLUSTER is equivalent to CLUSTER:*:*:*.
In this example, four users with varying permissions attempt to read and write data in two regions.
- The
superUseruser has full permissions and may read and write to all regions. - The
dataReaderuser hasDATA:READpermission, granting read access to all regions. - The
dataWriteruser hasDATA:WRITEpermission, granting write access to all regions. - The
region1dataAdminhas permissionsDATA:READ:region1andDATA:WRITE:region1, granting read and write access only to/region1.
For more information on what permission is required for a given operation, refer to the documentation.
Two interfaces must be implemented to secure a Geode cluster: AuthInitialize
and SecurityManager.
Your implementation of org.apache.geode.security.AuthInitialize should handle the interaction
with any existing security infrastructure (e.g., ldap). In this example, we provide a trivial
implementation in org.apache.geode_examples.clientSecurity.ExampleAuthInit.
These credentials are then given to your implementation
of org.apache.geode.security.SecurityManager
to authenticate the user (i.e., to log in).
The security manager also handles authorization of the authenticated user
for particular operations.
How permissions are assigned to users is also determined by the security manager.
In this example,
we group permissions by role, and assign each user one or more roles in a JSON file.
This file is located at src/main/resources/example_security.json.
-
Set directory
geode-examples/clientSecurityto be the current working directory. Each step in this example specifies paths relative to that directory. -
Build the example
$ ../gradlew build -
Start a secure cluster consisting of one locator with two servers with two regions. Refer to
scripts/start.gfsh. When starting a secure cluster, you must specify a security manager that implements authorization. In this example, we use the security managerorg.apache.geode.examples.clientSecurity.ExampleSecurityManager. This security manager reads a JSON file that defines which roles are granted which permissions, as well as each user's username, password, and roles. The JSON is present insrc/main/resources/example_security.json. You can execute thescripts/start.gfshscript with the command:$ ../gradlew start -
Run the example. Each user will attempt to put data to
/region1and/region2, and then read data from/region1and/region2. Unauthorized reads and writes throw exceptions caused byNotAuthorizedException, which we catch and print in this example.$ ../gradlew run -
Stop the cluster using the script
scripts/stop.gfsh.
You can run this script with the command:$ ../gradlew stop
-
Implement
org.apache.geode.security.AuthInitializeto pass user credentials from any existing security infrastructure. -
Implement
org.apache.geode.security.SecurityManagerto handle user authentication and operation authorization. -
Specify the
SecurityManagerby thesecurity-managerproperty of all locator and server property files. An unsecured member or a member secured by a different security manager will not be allowed to join the cluster. -
If additional properties are required by your implementation of the security manager, these may be defined in your locator or server property files. For instance, our implementation also requires
security-jsonto be defined.