Security in NetKernel is based on allowing or disallowing requests
entry into an address space by using the URI Gatekeeper.
The gatekeeper acts as a control point between two address spaces.
It is very easy to turn the various zones managed by the gatekeeper on or off facilitating easy development
and then full security when a system is in production.
The operation of the URI GateKeeper is straight forward.
Requests sent to it have their URI matched against a regular expression to
see if they are in a particular access control zone.
If they are they are routed to an access controller
for examination.
The access controller returns a valid or
not valid response.
If valid, the original request is re-issued into the module's address space.
If not valid then the URI Gatekeeper returns the login resource
as the response to the original request.
For example, in the image below a module's URI address space has the URI Gatekeeper as an overlay.
For simplicity we show only one access control zone.
- A request is made for a resource whose URI matches the access zone definition.
- The URIGateKeeper issues a request to the Access Controller for this zone.
- The Access Controller response indicates the request is either valid or invalid.
- If the request is valid the URI Gatekeeper re-issues the request into the module's address space.
- If the request is not valid the URI Gatekeeper returns the login resource to the original request.
Services
NetKernel provides the URI GateKeeper
in the ext_xsecurity
module.
The most straight forward approach to use the gatekeeper
is to route all
requests to the gatekeeper with a rewrite rule such as:
<rule>
<match>(.*)</match>
<to>active:gk+uri@$1</to>
</rule>
The URI Gatekeeper requests its configuration information from the
resource ffcpl:/etc/GateKeeperPolicy.xml
.
Configuration
The resource
ffcpl:/etc/GateKeeperPolicy.xml
specifies the gatekeeper security configuration and
references the Access Controller that define the security policy for each zone.
<GateKeeperPolicy>
<zone>
<match>.*/secured/(?!login).*</match>
<isValidURI>active:dpml+operand@ffcpl:/secured/sessionvalidator.idoc</isValidURI>
<loginURI>ffcpl:/secured/login</loginURI>
</zone>
</GateKeeperPolicy>
The policy specifies a zone as follows
- match Specifies a regular expression used to match the URI of each request.
- isValidURI The URI of the Access Controller.
- loginURI The URI of the login resource.
Access Controller Request
When the URI Gatekeeper issues its request to the Access Controller it will attach
all arguments from the original request which are not already included in
the isValidURI
element.
The access controller must return a boolean resource which is true if the request is authorized.