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
|
<!--
SPDX-FileCopyrightText: 2006 Istituto Nazionale di Fisica Nucleare
SPDX-License-Identifier: Apache-2.0
-->
# VOMS Java API

Java client APIs for the Virtual Organization Membership Service (VOMS).
The VOMS API can be used for
- validating attribute certifcates (ACs) inside a proxy and reading the attributes (VOSM FQANs or VOMS generic attributes)
- contacting a VOMS service in order to get an AC and for creating proxy certificates that contains an AC
## Installing
If using Maven, add the dependencies to your pom file
```bash
<dependency>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
<version>${voms-api-java-version}</version>
</dependency>
```
### Configure logging
VOMS Java API does not rely on logging anymore to provide information to the API user.
The API now provides listeners that receive interesting events related to VOMS attribute
certificate parsing and validation and interactions with remote VOMS servers.
## Getting started
### Validation
With version 3.0 of the API, the validation interface changes significantly.
In order to validate VOMS attributes one has to do the following:
```java
/* certificate chain may come either from loading (and validating)
using BouncyCastle or from an authenticated HTTPS session */
X509Certificate[] theChain = ...;
VOMSACValidator validator = VOMSValidators.newValidator();
List<VOMSAttribute> vomsAttrs = validator.validate(theChain);
```
The VOMSAttribute interface provides access to all VOMS
attributes (i.e., FQANs and Generic attributes):
```java
if (vomsAttrs.size() > 0) {
VOMSAttribute va = vomsAttrs.get(0);
List<String> fqans = va.getFQANs();
for (String f: fqans)
System.out.println(f);
List<VOMSGenericAttribute> gas = va.getGenericAttributes();
for (VOMSGenericAttribute g: gas)
System.out.println(g);
}
```
#### Getting more information about the validation outcome
The API just described returns a possibly empty list of validated VOMS attributes.
In order to get more information on the validation outcome (e.g. error messages etc. ) you now have
two possibilities:
- register a `ValidationResultListener` on the validator and separate your error handling logic from
the main flow of your code
- use the `validateWithResult` method
#### Setting a ValidationResultListener
The interface of a ValidationResultListener is defined as follows:
```java
void notifyValidationResult(VOMSValidationResult result)
```
The VOMSValidationResult class provides info on the outcome of VOMS validation:
```java
VOMSValidationResult{
boolean isValid();
List<VOMSValidationErrorMessage> getValidationErrors();
VOMSAttribute getAttributes();
}
```
You can register a ValidationResultListener at VOMSACValidator creation time:
```java
VOMSACValidator validator = VOMSValidators.newValidator(new ValidationResultListener() {
public void notifyValidationResult(VOMSValidationResult result) {
// Your code here
...
}});
```
or later with the `setValidationResultListener(ValidationResultListener l)` method.
### Using the `validateWithResult` method
```java
List<VOMSValidationResult> results = validator.validateWithResult(theChain);
for(VOMSValidationResult r: results){
if ( r.isValid() ){
VOMSAttribute attrs = r.getAttributes();
...
}else{
// error handling code
}
}
```
### Requesting a VOMS AC from a server and creating a proxy out of it
In order to request a VOMS AC from a VOMS server you start by providing your
own credentials. To parse your credentials (certificate + private key) you will use
the
```java
UserCredentials.loadCredentials(char[] keyPassword);
```
method. This methods looks for PEM or PKCS12 credentials in standard localtions
and returns a CANL X509Credential.
```java
/* Load user's credentials */
X509Credential cred = UserCredentials.loadCredentials("passphrase".toCharArray());
```
To request an AC from a VOMS service, one has to create a VOMSACRequest in order to set
options for the requested AC, like its lifetime, the VO name or the requested VOMS fqans.
The VOMSACService requires that you pass in a CANL `X509CerChainValidatorExt` object
that will be used to setup the SSL connection and perform certificate validation.
You can easily build one with the `CertificateValidatorBuilder` VOMS helper class:
```java
X509CertChainValidatorExt validator = CertificateValidatorBuilder.buildCertificateValidator();
VOMSACService service = new DefaultVOMSACService.Builder(validator).build();
DefaultVOMSACRequest request = new DefaultVOMSACRequest.Builder("atlas").lifetime(10).build();
AttributeCertificate attributeCertificate = service.getVOMSAttributeCertificate(cred, request);
```
Creating a proxy containing the VOMS AC just obtained is trivial with the help of CANL
proxy generation utilities:
```java
ProxyCertificateOptions proxyOptions = new ProxyCertificateOptions(cred.getCertificateChain());
proxyOptions.setAttributeCertificates(new AttributeCertificate[] {attributeCertificate});
ProxyCertificate proxyCert = ProxyGenerator.generate(proxyOptions, cred.getKey());
```
The proxy can then be saved to an output stream in PEM format using the
```java
CredentialsUtils.saveCredentials(OutputStream os, X509Credential uc)
```
method, as shown in the following example:
```java
OutputStream os = new FileOutputStream("/tmp/savedProxy");
CredentialsUtils.saveCredentials(os, proxyCert.getCredential());
```
### Migrating from VOMS API Java v. 2.x
In order to use the new API update your pom.xml with the right dependencies (in case
you use maven).
```bash
<dependency>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
<version>3.0.0</version>
</dependency>
```
or install the VOMS API 3.0 packages (rpms or debs).
With the API v. 2.0.9 the following approach would be used to validate a VOMS AC:
```java
/* 2.0.x API packages */
import org.glite.voms.VOMSAttribute;
import org.glite.voms.VOMSValidator;
...
// Validated certificate chain */
X509Certificate[] certchain = ...;
VOMSValidator validator = new VOMSValidator(certchain);
validator.validate();
List<VOMSAttribute> attrs = validator.getVOMSAttributes();
for (VOMSAttribute a : attrs)
// Do something with the attribute
...
```
With version 3.0 the name of the packages to import has changed:
```java
/* 3.0.x API packages */
import org.italiangrid.voms.test.VOMSAttribute;
import org.italiangrid.voms.test.VOMSValidators;
import org.italiangrid.voms.test.ac.VOMSACValidator;
// The VOMSACValidator interface provides access to VOMS AC validation logic.
// In order to obtain a validator use the VOMSValidators factory
VOMSACValidator validator = VOMSValidators.newValidator();
// An X.509 certcain obtained somehow
X509Certificate[] certChain = ...;
// Use the validate method to obtain a list of VOMSAttribute objects
List<VOMSAttribute> attrs = validator.validate(certChain);
for (VOMSAttribute a : attrs){
// Do something with the attribute
...
}
// Shutdown the validator. This should be called only when you're sure that
// you will not need the validator anymore.
validator.shutdown();
```
## Documentation
More details on the new APIs can be found in the [Javadoc](http://italiangrid.github.com/voms-api-java/javadocs/3.x/index.html).
## License
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this project 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.
|