blob: 7978501ae3d6e462f98b5f7971dcc2087350ac06 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.kerby.kerberos.kerb.admin.server.kadmin;
import org.apache.kerby.kerberos.kerb.KrbException;
import org.apache.kerby.kerberos.kerb.identity.backend.BackendConfig;
import org.apache.kerby.kerberos.kerb.server.KdcConfig;
import org.apache.kerby.kerberos.kerb.transport.TransportPair;
import java.io.File;
import java.io.IOException;
import java.net.InetSocketAddress;
/**
* Admin Server utilities.
*/
public final class AdminServerUtil {
/**
* Get adminServer configuration
* @param confDir configuration directory
* @return adminServer configuration
* @throws KrbException e.
*/
public static AdminServerConfig getAdminServerConfig(File confDir) throws KrbException {
File adminServerConfFile = new File(confDir, "adminServer.conf");
if (adminServerConfFile.exists()) {
AdminServerConfig adminServerConfig = new AdminServerConfig();
try {
adminServerConfig.addKrb5Config(adminServerConfFile);
} catch (IOException e) {
throw new KrbException("Can not load the adminServer configuration file "
+ adminServerConfFile.getAbsolutePath());
}
return adminServerConfig;
}
return null;
}
/**
* Get kdc configuration
* @param confDir configuration directory
* @return kdc configuration
* @throws KrbException e.
*/
public static KdcConfig getKdcConfig(File confDir) throws KrbException {
File kdcConfFile = new File(confDir, "kdc.conf");
if (kdcConfFile.exists()) {
KdcConfig kdcConfig = new KdcConfig();
try {
kdcConfig.addKrb5Config(kdcConfFile);
} catch (IOException e) {
throw new KrbException("Can not load the kdc configuration file "
+ kdcConfFile.getAbsolutePath());
}
return kdcConfig;
}
return null;
}
/**
* Get backend configuration
* @param confDir configuration directory
* @return backend configuration
* @throws KrbException e.
*/
public static BackendConfig getBackendConfig(File confDir) throws KrbException {
File backendConfigFile = new File(confDir, "backend.conf");
if (backendConfigFile.exists()) {
BackendConfig backendConfig = new BackendConfig();
try {
backendConfig.addIniConfig(backendConfigFile);
} catch (IOException e) {
throw new KrbException("Can not load the backend configuration file "
+ backendConfigFile.getAbsolutePath());
}
return backendConfig;
}
return null;
}
/**
* Get KDC network transport addresses according to KDC setting.
* @param setting kdc setting
* @return UDP and TCP addresses pair
* @throws KrbException e
*/
public static TransportPair getTransportPair(
AdminServerSetting setting) throws KrbException {
TransportPair result = new TransportPair();
int tcpPort = setting.checkGetAdminTcpPort();
if (tcpPort > 0) {
result.tcpAddress = new InetSocketAddress(
setting.getAdminHost(), tcpPort);
}
int udpPort = setting.checkGetAdminUdpPort();
if (udpPort > 0) {
result.udpAddress = new InetSocketAddress(
setting.getAdminHost(), udpPort);
}
return result;
}
/**
* Fix principal name.
*
* @param principal The principal name
* @return The fixed principal
*/
public static String fixPrincipal(String principal, AdminServerSetting setting) {
if (!principal.contains("@")) {
principal += "@" + setting.getKdcRealm();
}
return principal;
}
}