source: josm/trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java@ 8291

Last change on this file since 8291 was 8291, checked in by Don-vip, 9 years ago

fix squid:RedundantThrowsDeclarationCheck + consistent Javadoc for exceptions

  • Property svn:eol-style set to native
File size: 9.4 KB
Line 
1/*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25package org.openstreetmap.josm.io.remotecontrol;
26
27import java.io.IOException;
28import java.util.Locale;
29
30import sun.security.util.DerOutputStream;
31import sun.security.x509.GeneralNameInterface;
32
33/**
34 * This class implements the DNSName as required by the GeneralNames
35 * ASN.1 object.
36 * <p>
37 * [RFC2459] When the subjectAltName extension contains a domain name service
38 * label, the domain name MUST be stored in the dNSName (an IA5String).
39 * The name MUST be in the "preferred name syntax," as specified by RFC
40 * 1034 [RFC 1034]. Note that while upper and lower case letters are
41 * allowed in domain names, no signifigance is attached to the case. In
42 * addition, while the string " " is a legal domain name, subjectAltName
43 * extensions with a dNSName " " are not permitted. Finally, the use of
44 * the DNS representation for Internet mail addresses (wpolk.nist.gov
45 * instead of wpolk@nist.gov) is not permitted; such identities are to
46 * be encoded as rfc822Name.
47 *
48 * This class has been copied from OpenJDK7u repository and modified
49 * in order to fix Java bug 8016345:
50 * https://bugs.openjdk.java.net/browse/JDK-8016345
51 *
52 * It can be deleted after a migration to a Java release fixing this bug.
53 * <p>
54 * @author Amit Kapoor
55 * @author Hemma Prafullchandra
56 * @author JOSM developers
57 * @since 7347
58 */
59public class DNSName implements GeneralNameInterface {
60 private final String name;
61
62 private static final String alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
63 private static final String digitsAndHyphen = "0123456789-";
64 private static final String alphaDigitsAndHyphen = alpha + digitsAndHyphen;
65
66 /**
67 * Create the DNSName object with the specified name.
68 *
69 * @param name the DNSName.
70 * @throws IOException if the name is not a valid DNSName subjectAltName
71 */
72 public DNSName(String name) throws IOException {
73 if (name == null || name.length() == 0)
74 throw new IOException("DNS name must not be null");
75 if (name.indexOf(' ') != -1)
76 throw new IOException("DNS names or NameConstraints with blank components are not permitted");
77 if (name.charAt(0) == '.' || name.charAt(name.length() -1) == '.')
78 throw new IOException("DNS names or NameConstraints may not begin or end with a .");
79 //Name will consist of label components separated by "."
80 //startIndex is the index of the first character of a component
81 //endIndex is the index of the last character of a component plus 1
82 for (int endIndex,startIndex=0; startIndex < name.length(); startIndex = endIndex+1) {
83 endIndex = name.indexOf('.', startIndex);
84 if (endIndex < 0) {
85 endIndex = name.length();
86 }
87 if ((endIndex-startIndex) < 1)
88 throw new IOException("DNSName SubjectAltNames with empty components are not permitted");
89
90 //nonStartIndex: index for characters in the component beyond the first one
91 for (int nonStartIndex=startIndex+1; nonStartIndex < endIndex; nonStartIndex++) {
92 char x = name.charAt(nonStartIndex);
93 if ((alphaDigitsAndHyphen).indexOf(x) < 0)
94 throw new IOException("DNSName components must consist of letters, digits, and hyphens");
95 }
96 }
97 this.name = name;
98 }
99
100 /**
101 * Return the type of the GeneralName.
102 */
103 @Override
104 public int getType() {
105 return GeneralNameInterface.NAME_DNS;
106 }
107
108 /**
109 * Return the actual name value of the GeneralName.
110 * @return the actual name value of the GeneralName
111 */
112 public String getName() {
113 return name;
114 }
115
116 /**
117 * Encode the DNS name into the DerOutputStream.
118 *
119 * @param out the DER stream to encode the DNSName to.
120 * @throws IOException on encoding errors.
121 */
122 @Override
123 public void encode(DerOutputStream out) throws IOException {
124 out.putIA5String(name);
125 }
126
127 /**
128 * Convert the name into user readable string.
129 */
130 @Override
131 public String toString() {
132 return "DNSName: " + name;
133 }
134
135 /**
136 * Compares this name with another, for equality.
137 *
138 * @return true iff the names are equivalent
139 * according to RFC2459.
140 */
141 @Override
142 public boolean equals(Object obj) {
143 if (this == obj)
144 return true;
145
146 if (!(obj instanceof DNSName))
147 return false;
148
149 DNSName other = (DNSName)obj;
150
151 // RFC2459 mandates that these names are
152 // not case-sensitive
153 return name.equalsIgnoreCase(other.name);
154 }
155
156 /**
157 * Returns the hash code value for this object.
158 *
159 * @return a hash code value for this object.
160 */
161 @Override
162 public int hashCode() {
163 return name.toUpperCase().hashCode();
164 }
165
166 /**
167 * Return type of constraint inputName places on this name:<ul>
168 * <li>NAME_DIFF_TYPE = -1: input name is different type from name (i.e. does not constrain).
169 * <li>NAME_MATCH = 0: input name matches name.
170 * <li>NAME_NARROWS = 1: input name narrows name (is lower in the naming subtree)
171 * <li>NAME_WIDENS = 2: input name widens name (is higher in the naming subtree)
172 * <li>NAME_SAME_TYPE = 3: input name does not match or narrow name, but is same type.
173 * </ul>. These results are used in checking NameConstraints during
174 * certification path verification.
175 * <p>
176 * RFC2459: DNS name restrictions are expressed as foo.bar.com. Any subdomain
177 * satisfies the name constraint. For example, www.foo.bar.com would
178 * satisfy the constraint but bigfoo.bar.com would not.
179 * <p>
180 * draft-ietf-pkix-new-part1-00.txt: DNS name restrictions are expressed as foo.bar.com.
181 * Any DNS name that
182 * can be constructed by simply adding to the left hand side of the name
183 * satisfies the name constraint. For example, www.foo.bar.com would
184 * satisfy the constraint but foo1.bar.com would not.
185 * <p>
186 * RFC1034: By convention, domain names can be stored with arbitrary case, but
187 * domain name comparisons for all present domain functions are done in a
188 * case-insensitive manner, assuming an ASCII character set, and a high
189 * order zero bit.
190 * <p>
191 * @param inputName to be checked for being constrained
192 * @return constraint type above
193 * @throws UnsupportedOperationException if name is not exact match, but narrowing and widening are
194 * not supported for this name type.
195 */
196 @Override
197 public int constrains(GeneralNameInterface inputName) {
198 int constraintType;
199 if (inputName == null)
200 constraintType = NAME_DIFF_TYPE;
201 else if (inputName.getType() != NAME_DNS)
202 constraintType = NAME_DIFF_TYPE;
203 else {
204 String inName =
205 (((DNSName)inputName).getName()).toLowerCase(Locale.ENGLISH);
206 String thisName = name.toLowerCase(Locale.ENGLISH);
207 if (inName.equals(thisName))
208 constraintType = NAME_MATCH;
209 else if (thisName.endsWith(inName)) {
210 int inNdx = thisName.lastIndexOf(inName);
211 if (thisName.charAt(inNdx-1) == '.' )
212 constraintType = NAME_WIDENS;
213 else
214 constraintType = NAME_SAME_TYPE;
215 } else if (inName.endsWith(thisName)) {
216 int ndx = inName.lastIndexOf(thisName);
217 if (inName.charAt(ndx-1) == '.' )
218 constraintType = NAME_NARROWS;
219 else
220 constraintType = NAME_SAME_TYPE;
221 } else {
222 constraintType = NAME_SAME_TYPE;
223 }
224 }
225 return constraintType;
226 }
227
228 /**
229 * Return subtree depth of this name for purposes of determining
230 * NameConstraints minimum and maximum bounds and for calculating
231 * path lengths in name subtrees.
232 *
233 * @return distance of name from root
234 * @throws UnsupportedOperationException if not supported for this name type
235 */
236 @Override
237 public int subtreeDepth() {
238 String subtree=name;
239 int i=1;
240
241 /* count dots */
242 for (; subtree.lastIndexOf('.') >= 0; i++) {
243 subtree=subtree.substring(0,subtree.lastIndexOf('.'));
244 }
245
246 return i;
247 }
248}
Note: See TracBrowser for help on using the repository browser.