/* * JBoss, Home of Professional Open Source. * Copyright 2015 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * Licensed 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.wildfly.security.x500; import static org.wildfly.security._private.ElytronMessages.log; import static org.wildfly.security.asn1.ASN1.*; import java.security.Principal; import java.util.Arrays; import java.util.HashSet; import java.util.Set; import javax.security.auth.x500.X500Principal; import org.wildfly.common.Assert; import org.wildfly.security.asn1.ASN1Decoder; import org.wildfly.security.asn1.DERDecoder; import sun.security.x509.X500Name; /** * A utility class for easily accessing details of an {@link X500Principal}. * * @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ public final class X500PrincipalUtil { private static final String[] NO_STRINGS = new String[0]; private static final boolean HAS_X500_NAME; static { boolean hasX500Name = false; try { Class.forName("sun.security.x509.X500Name", true, X500PrincipalUtil.class.getClassLoader()); hasX500Name = true; } catch (Throwable t) {} HAS_X500_NAME = hasX500Name; } private X500PrincipalUtil() { } /** * Get all the values of the attribute with the given OID in the given principal. This includes occurrences within * multi-valued RDNs. * * @param principal the principal to examine * @param oid the OID whose values are to be returned * @return the list of values associated with the OID */ public static String[] getAttributeValues(X500Principal principal, String oid) { return getAttributeValues(principal, oid, false); } /** * Get all the values of the attribute with the given OID in the given principal. This includes occurrences within * multi-valued RDNs. * * @param principal the principal to examine * @param oid the OID whose values are to be returned * @param reverse {@code true} if the values in the returned list should be in reverse order * @return the list of values associated with the OID */ public static String[] getAttributeValues(X500Principal principal, String oid, boolean reverse) { final ASN1Decoder decoder = new DERDecoder(principal.getEncoded()); String[] strings = NO_STRINGS; int len = 0; decoder.startSequence(); while (decoder.hasNextElement()) { decoder.startSet(); while (decoder.hasNextElement()) { decoder.startSequence(); // first item is the attribute String testOid = decoder.decodeObjectIdentifier(); if (oid.equals(testOid)) { // second item is the value switch (decoder.peekType()) { case IA5_STRING_TYPE: { if (strings.length == len) { strings = Arrays.copyOf(strings, Math.max(2, strings.length) * 2); } strings[len++] = decoder.decodeIA5String(); break; } case PRINTABLE_STRING_TYPE: { if (strings.length == len) { strings = Arrays.copyOf(strings, Math.max(2, strings.length) * 2); } strings[len++] = decoder.decodePrintableString(); break; } default: { decoder.skipElement(); break; } } } else { decoder.skipElement(); } decoder.endSequence(); } decoder.endSet(); } decoder.endSequence(); if (decoder.hasNextElement()) { throw log.unexpectedTrailingGarbageInX500principal(); } String[] result = len == 0 ? NO_STRINGS : new String[len]; if (! reverse) { // The attribute values will be in the same order they appear in the string representation of the X.500 principal for (int i = 0; i < len; i++) { result[len - i - 1] = strings[i]; } } else { // The attribute values will be in reverse order for (int i = 0; i < len; i++) { result[i] = strings[i]; } } return result; } /** * Determine if the given principal contains all of the attributes specified by the given OIDs. * This includes occurrences within multi-valued RDNs. * * @param principal the principal to examine * @param oids the OIDs of the attributes that must be present in the given principal (must not be {@code null}, * cannot have {@code null} elements) * @return {@code true} if the given principal contains all of the attributes specified by the given OIDs, * {@code false} otherwise */ public static boolean containsAllAttributes(X500Principal principal, String... oids) { Assert.checkNotNullParam("principal", principal); Assert.checkNotNullParam("oids", oids); final Set<String> requiredAttributes = new HashSet<>(Arrays.asList(oids)); final ASN1Decoder decoder = new DERDecoder(principal.getEncoded()); decoder.startSequence(); while (decoder.hasNextElement() && ! requiredAttributes.isEmpty()) { decoder.startSet(); while (decoder.hasNextElement() && ! requiredAttributes.isEmpty()) { decoder.startSequence(); // first item is the attribute String testOid = decoder.decodeObjectIdentifier(); requiredAttributes.remove(testOid); // skip over the attribute value decoder.skipElement(); decoder.endSequence(); } decoder.endSet(); } decoder.endSequence(); if (decoder.hasNextElement()) { throw log.unexpectedTrailingGarbageInX500principal(); } return requiredAttributes.isEmpty(); } /** * Attempt to convert the given principal to an X.500 principal. * * @param principal the original principal * @return the X.500 principal or {@code null} if the principal can not be converted. */ public static X500Principal asX500Principal(Principal principal) { if (principal instanceof X500Principal) { return (X500Principal) principal; } if (HAS_X500_NAME && principal instanceof X500Name) { return ((X500Name) principal).asX500Principal(); } return null; } }