-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from pierresouchay/dev
Added automatic detection of REALM in SPN needed for Cross Domain authentication.
- Loading branch information
Showing
5 changed files
with
466 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
src/main/java/com/microsoft/sqlserver/jdbc/dns/DNSKerberosLocator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Microsoft JDBC Driver for SQL Server | ||
* | ||
* Copyright(c) Microsoft Corporation All rights reserved. | ||
* | ||
* This program is made available under the terms of the MIT License. See the LICENSE file in the project root for more information. | ||
*/ | ||
package com.microsoft.sqlserver.jdbc.dns; | ||
|
||
import java.util.Set; | ||
|
||
import javax.naming.NameNotFoundException; | ||
import javax.naming.NamingException; | ||
|
||
public final class DNSKerberosLocator { | ||
|
||
private DNSKerberosLocator() { | ||
} | ||
|
||
/** | ||
* Tells whether a realm is valid. | ||
* | ||
* @param realmName | ||
* the realm to test | ||
* @return true if realm is valid, false otherwise | ||
* @throws NamingException | ||
* if DNS failed, so realm existence cannot be determined | ||
*/ | ||
public static boolean isRealmValid(String realmName) throws NamingException { | ||
if (realmName == null || realmName.length() < 2) { | ||
return false; | ||
} | ||
if (realmName.startsWith(".")) { | ||
realmName = realmName.substring(1); | ||
} | ||
try { | ||
Set<DNSRecordSRV> records = DNSUtilities.findSrvRecords("_kerberos._udp." + realmName); | ||
return !records.isEmpty(); | ||
} | ||
catch (NameNotFoundException wrongDomainException) { | ||
return false; | ||
} | ||
} | ||
} |
Oops, something went wrong.