summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java281
1 files changed, 281 insertions, 0 deletions
diff --git a/pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java b/pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java
new file mode 100644
index 000000000..cf66e9d76
--- /dev/null
+++ b/pki/base/common/src/com/netscape/cms/crl/CMSIssuerAlternativeNameExtension.java
@@ -0,0 +1,281 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2007 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+package com.netscape.cms.crl;
+
+
+import java.io.*;
+import java.util.*;
+import java.math.BigInteger;
+import netscape.security.x509.PKIXExtensions;
+import netscape.security.x509.CRLExtensions;
+import netscape.security.x509.Extension;
+import netscape.security.x509.X500Name;
+import netscape.security.x509.URIName;
+import netscape.security.x509.OIDName;
+import netscape.security.x509.DNSName;
+import netscape.security.x509.RFC822Name;
+import netscape.security.x509.EDIPartyName;
+import netscape.security.x509.IPAddressName;
+import netscape.security.x509.GeneralName;
+import netscape.security.x509.GeneralNames;
+import netscape.security.x509.IssuerAlternativeNameExtension;
+import netscape.security.util.DerValue;
+import netscape.security.util.ObjectIdentifier;
+import com.netscape.certsrv.ca.*;
+import com.netscape.certsrv.base.IConfigStore;
+import com.netscape.certsrv.base.IExtendedPluginInfo;
+import com.netscape.certsrv.base.EBaseException;
+import com.netscape.certsrv.base.EPropertyNotFound;
+import com.netscape.certsrv.common.NameValuePairs;
+import com.netscape.certsrv.dbs.crldb.*;
+import com.netscape.certsrv.logging.*;
+import com.netscape.certsrv.apps.*;
+
+
+/**
+ * This represents a issuer alternative name extension.
+ *
+ * @version $Revision$, $Date$
+ */
+public class CMSIssuerAlternativeNameExtension
+ implements ICMSCRLExtension, IExtendedPluginInfo {
+ private static final String PROP_RFC822_NAME = "rfc822Name";
+ private static final String PROP_DNS_NAME = "dNSName";
+ private static final String PROP_DIR_NAME = "directoryName";
+ private static final String PROP_EDI_NAME = "ediPartyName";
+ private static final String PROP_URI_NAME = "URI";
+ private static final String PROP_IP_NAME = "iPAddress";
+ private static final String PROP_OID_NAME = "OID";
+ private static final String PROP_OTHER_NAME = "otherName";
+
+ private ILogger mLogger = CMS.getLogger();
+
+ public CMSIssuerAlternativeNameExtension() {
+ }
+
+ public Extension setCRLExtensionCriticality(Extension ext,
+ boolean critical) {
+ IssuerAlternativeNameExtension issuerAltNameExt = null;
+ GeneralNames names = null;
+
+ try {
+ names = (GeneralNames) ((IssuerAlternativeNameExtension) ext).get(IssuerAlternativeNameExtension.ISSUER_NAME);
+ issuerAltNameExt = new IssuerAlternativeNameExtension(Boolean.valueOf(critical), names);
+ } catch (IOException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_ALT_NAME_EXT", e.toString()));
+ }
+ return issuerAltNameExt;
+ }
+
+ public Extension getCRLExtension(IConfigStore config,
+ Object ip,
+ boolean critical) {
+ ICRLIssuingPoint crlIssuingPoint = (ICRLIssuingPoint) ip;
+ IssuerAlternativeNameExtension issuerAltNameExt = null;
+ int numNames = 0;
+
+ try {
+ numNames = config.getInteger("numNames", 0);
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_INVALID_NUM_NAMES", e.toString()));
+ }
+ if (numNames > 0) {
+ GeneralNames names = new GeneralNames();
+
+ for (int i = 0; i < numNames; i++) {
+ String nameType = null;
+
+ try {
+ nameType = config.getString("nameType" + i);
+ } catch (EPropertyNotFound e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_INVALID_TYPE", Integer.toString(i), e.toString()));
+ }
+
+ if (nameType != null && nameType.length() > 0) {
+ String name = null;
+
+ try {
+ name = config.getString("name" + i);
+ } catch (EPropertyNotFound e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_INVALID_TYPE", Integer.toString(i), e.toString()));
+ }
+
+ if (name != null && name.length() > 0) {
+ if (nameType.equalsIgnoreCase(PROP_DIR_NAME)) {
+ try {
+ X500Name dirName = new X500Name(name);
+
+ names.addElement(dirName);
+ } catch (IOException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_500NAME", e.toString()));
+ }
+ } else if (nameType.equalsIgnoreCase(PROP_RFC822_NAME)) {
+ RFC822Name rfc822Name = new RFC822Name(name);
+
+ names.addElement(rfc822Name);
+ } else if (nameType.equalsIgnoreCase(PROP_DNS_NAME)) {
+ DNSName dnsName = new DNSName(name);
+
+ names.addElement(dnsName);
+ } else if (nameType.equalsIgnoreCase(PROP_EDI_NAME)) {
+ EDIPartyName ediName = new EDIPartyName(name);
+
+ names.addElement(ediName);
+ } else if (nameType.equalsIgnoreCase(PROP_URI_NAME)) {
+ URIName uriName = new URIName(name);
+
+ names.addElement(uriName);
+ } else if (nameType.equalsIgnoreCase(PROP_IP_NAME)) {
+ IPAddressName ipName = new IPAddressName(name);
+
+ names.addElement(ipName);
+ } else if (nameType.equalsIgnoreCase(PROP_OID_NAME)) {
+ ObjectIdentifier oid = new ObjectIdentifier(name);
+ OIDName oidNmae = new OIDName(oid);
+
+ names.addElement(oidNmae);
+ } else if (nameType.equalsIgnoreCase(PROP_OTHER_NAME)) {
+
+ try {
+ byte[] val = com.netscape.osutil.OSUtil.AtoB(name);
+ DerValue derVal = new DerValue(new ByteArrayInputStream(val));
+ GeneralName generalName = new GeneralName(derVal);
+
+ names.addElement(generalName);
+ } catch (IOException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_INVALID_OTHER_NAME", e.toString()));
+ }
+ } else {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_INVALID_TYPE", nameType, ""));
+ }
+ }
+ }
+ }
+
+ if (names.size() > 0) {
+ try {
+ issuerAltNameExt = new IssuerAlternativeNameExtension(
+ Boolean.valueOf(critical), names);
+ } catch (IOException e) {
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_ISSUER_ALT_NAME_EXT", e.toString()));
+ }
+ }
+ }
+
+ return issuerAltNameExt;
+ }
+
+ public String getCRLExtOID() {
+ return PKIXExtensions.IssuerAlternativeName_Id.toString();
+ }
+
+ public void getConfigParams(IConfigStore config, NameValuePairs nvp) {
+ int numNames = 0;
+
+ try {
+ numNames = config.getInteger("numNames", 0);
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, "Invalid numNames property for CRL " +
+ "IssuerAlternativeName extension - " + e);
+ }
+ nvp.add("numNames", String.valueOf(numNames));
+
+ for (int i = 0; i < numNames; i++) {
+ String nameType = null;
+
+ try {
+ nameType = config.getString("nameType" + i);
+ } catch (EPropertyNotFound e) {
+ log(ILogger.LL_FAILURE, "Undefined nameType" + i + " property for " +
+ "CRL IssuerAlternativeName extension - " + e);
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, "Invalid nameType" + i + " property for " +
+ "CRL IssuerAlternativeName extension - " + e);
+ }
+
+ if (nameType != null && nameType.length() > 0) {
+ nvp.add("nameType" + i, nameType);
+ } else {
+ nvp.add("nameType" + i, "");
+ }
+
+ String name = null;
+
+ try {
+ name = config.getString("name" + i);
+ } catch (EPropertyNotFound e) {
+ log(ILogger.LL_FAILURE, "Undefined name" + i + " property for " +
+ "CRL IssuerAlternativeName extension - " + e);
+ } catch (EBaseException e) {
+ log(ILogger.LL_FAILURE, "Invalid name" + i + " property for " +
+ "CRL IssuerAlternativeName extension - " + e);
+ }
+
+ if (name != null && name.length() > 0) {
+ nvp.add("name" + i, name);
+ } else {
+ nvp.add("name" + i, "");
+ }
+ }
+
+ if (numNames < 3) {
+ for (int i = numNames; i < 3; i++) {
+ nvp.add("nameType" + i, "");
+ nvp.add("name" + i, "");
+ }
+ }
+ }
+
+ public String[] getExtendedPluginInfo(Locale locale) {
+ String[] params = {
+ //"type;choice(CRLExtension,CRLEntryExtension);"+
+ //"CRL Extension type. This field is not editable.",
+ "enable;boolean;Check to enable Issuer Alternative Name CRL extension.",
+ "critical;boolean;Set criticality for Issuer Alternative Name CRL extension.",
+ "numNames;number;Set number of alternative names for the CRL issuer.",
+ "nameType0;choice(" + PROP_RFC822_NAME + "," + PROP_DIR_NAME + "," + PROP_DNS_NAME + "," +
+ PROP_EDI_NAME + "," + PROP_URI_NAME + "," + PROP_IP_NAME + "," + PROP_OID_NAME + "," +
+ PROP_OTHER_NAME + ");Select Issuer Alternative Name type.",
+ "name0;string;Enter Issuer Alternative Name corresponding to the selected name type.",
+ "nameType1;choice(" + PROP_RFC822_NAME + "," + PROP_DIR_NAME + "," + PROP_DNS_NAME + "," +
+ PROP_EDI_NAME + "," + PROP_URI_NAME + "," + PROP_IP_NAME + "," + PROP_OID_NAME + "," +
+ PROP_OTHER_NAME + ");Select Issuer Alternative Name type.",
+ "name1;string;Enter Issuer Alternative Name corresponding to the selected name type.",
+ "nameType2;choice(" + PROP_RFC822_NAME + "," + PROP_DIR_NAME + "," + PROP_DNS_NAME + "," +
+ PROP_EDI_NAME + "," + PROP_URI_NAME + "," + PROP_IP_NAME + "," + PROP_OID_NAME + "," +
+ PROP_OTHER_NAME + ");Select Issuer Alternative Name type.",
+ "name2;string;Enter Issuer Alternative Name corresponding to the selected name type.",
+ IExtendedPluginInfo.HELP_TOKEN +
+ ";configuration-ca-edit-crlextension-issueralternativename",
+ IExtendedPluginInfo.HELP_TEXT +
+ ";The issuer alternative names extension allows additional" +
+ " identities to be associated with the issuer of the CRL."
+ };
+
+ return params;
+ }
+
+ private void log(int level, String msg) {
+ mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_CA, level,
+ "CMSIssuerAlternativeNameExtension - " + msg);
+ }
+}