Skip to content

Commit

Permalink
8251155: HostIdentifier fails to canonicalize hostnames starting with…
Browse files Browse the repository at this point in the history
… digits

Reviewed-by: sspitsyn, redestad
  • Loading branch information
DamonFool committed Aug 5, 2020
1 parent 9e6782d commit 5585e6f
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -111,6 +111,11 @@ private URI canonicalize(String uriString) throws URISyntaxException {
return new URI(uriString);
}

if (Character.isDigit(uriString.charAt(0))) {
// may be hostname or hostname:port since it starts with digits
uriString = "//" + uriString;
}

URI u = new URI(uriString);

if (u.isAbsolute()) {
Expand Down
46 changes: 46 additions & 0 deletions test/jdk/sun/tools/jps/TestJpsHostName.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/*
* Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

import jdk.test.lib.process.OutputAnalyzer;

/*
* @test
* @bug 8251155
* @summary Test host names starting with digits
* @library /test/lib
* @build JpsHelper
* @run driver TestJpsHostName
*/
public class TestJpsHostName {

public static void main(String[] args) throws Throwable {
testJpsHostName("12345");
testJpsHostName("12345:37266");
}

private static void testJpsHostName(String hostname) throws Exception {
OutputAnalyzer output = JpsHelper.jps(hostname);
output.shouldNotContain("Malformed Host Identifier: " + hostname);
}

}

0 comments on commit 5585e6f

Please sign in to comment.