/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* or http://forgerock.org/license/CDDLv1.0.html.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2010 Sun Microsystems, Inc.
* Portions Copyright 2011 profiq s.r.o.
* Portions Copyright 2011-2015 ForgeRock AS
*/
package org.opends.server.tools;
import static org.forgerock.util.Utils.*;
import static org.opends.messages.AdminToolMessages.*;
import static org.opends.messages.QuickSetupMessages.*;
import static org.opends.messages.ToolMessages.*;
import static org.opends.messages.UtilityMessages.*;
import static com.forgerock.opendj.cli.Utils.*;
import static com.forgerock.opendj.util.OperatingSystem.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintStream;
import java.security.KeyStoreException;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import javax.naming.ldap.LdapName;
import org.forgerock.i18n.LocalizableMessage;
import org.forgerock.i18n.LocalizableMessageDescriptor.Arg0;
import org.forgerock.i18n.LocalizableMessageDescriptor.Arg1;
import org.forgerock.i18n.slf4j.LocalizedLogger;
import org.forgerock.opendj.config.ManagedObjectDefinition;
import org.forgerock.opendj.server.config.client.BackendCfgClient;
import org.forgerock.opendj.server.config.server.BackendCfg;
import org.opends.messages.QuickSetupMessages;
import org.opends.messages.ToolMessages;
import org.opends.quicksetup.ApplicationException;
import org.opends.quicksetup.Constants;
import org.opends.quicksetup.CurrentInstallStatus;
import org.opends.quicksetup.Installation;
import org.opends.quicksetup.LicenseFile;
import org.opends.quicksetup.QuickSetupLog;
import org.opends.quicksetup.SecurityOptions;
import org.opends.quicksetup.UserData;
import org.opends.quicksetup.UserDataException;
import org.opends.quicksetup.event.ProgressUpdateEvent;
import org.opends.quicksetup.event.ProgressUpdateListener;
import org.opends.quicksetup.installer.NewSuffixOptions;
import org.opends.quicksetup.installer.offline.OfflineInstaller;
import org.opends.quicksetup.util.IncompatibleVersionException;
import org.opends.quicksetup.util.PlainTextProgressMessageFormatter;
import org.opends.quicksetup.util.Utils;
import org.opends.server.types.InitializationException;
import org.opends.server.types.NullOutputStream;
import org.opends.server.util.CertificateManager;
import org.opends.server.util.SetupUtils;
import org.opends.server.util.StaticUtils;
import com.forgerock.opendj.cli.ArgumentException;
import com.forgerock.opendj.cli.ClientException;
import com.forgerock.opendj.cli.ConsoleApplication;
import com.forgerock.opendj.cli.IntegerArgument;
import com.forgerock.opendj.cli.Menu;
import com.forgerock.opendj.cli.MenuBuilder;
import com.forgerock.opendj.cli.MenuResult;
import com.forgerock.opendj.cli.StringArgument;
/**
* This class provides a very simple mechanism for installing the OpenDS
* Directory Service. It performs the following tasks:
*
*
Checks if the server is already installed and running
*
Ask the user what base DN should be used for the data
*
Ask the user whether to create the base entry, or to import LDIF
*
Ask the user for the administration port and make sure it's available
*
*
Ask the user for the LDAP port and make sure it's available
*
Ask the user for the default root DN and password
*
Ask the user to enable SSL or not and for the type of certificate that
* the server must use
*
Ask the user if they want to start the server when done installing
*
*/
public class InstallDS extends ConsoleApplication
{
private final PlainTextProgressMessageFormatter formatter = new PlainTextProgressMessageFormatter();
/** Prefix for log files. */
public static final String TMP_FILE_PREFIX = "opendj-setup-";
/** Suffix for log files. */
public static final String LOG_FILE_SUFFIX = ".log";
/**
* The enumeration containing the different return codes that the command-line
* can have.
*/
private enum InstallReturnCode
{
SUCCESSFUL(0),
/** We did no have an error but the setup was not executed (displayed version or usage). */
SUCCESSFUL_NOP(0),
/** Unexpected error (potential bug). */
ERROR_UNEXPECTED(1),
/** Cannot parse arguments or data provided by user is not valid. */
ERROR_USER_DATA(2),
/** Error server already installed. */
ERROR_SERVER_ALREADY_INSTALLED(3),
/** Error initializing server. */
ERROR_INITIALIZING_SERVER(4),
/** The user failed providing password (for the keystore for instance). */
ERROR_PASSWORD_LIMIT(5),
/** The user cancelled the setup. */
ERROR_USER_CANCELLED(6),
/** The user doesn't accept the license. */
ERROR_LICENSE_NOT_ACCEPTED(7),
/** Incompatible java version. */
JAVA_VERSION_INCOMPATIBLE(8);
private int returnCode;
private InstallReturnCode(int returnCode)
{
this.returnCode = returnCode;
}
/**
* Get the corresponding return code value.
*
* @return The corresponding return code value.
*/
public int getReturnCode()
{
return returnCode;
}
}
/**
* Enumeration describing the different answer that the user can provide when
* we ask to finalize the setup. Note that the code associated correspond to
* the order in the confirmation menu that is displayed at the end of the
* setup in interactive mode.
*/
private enum ConfirmCode
{
CONTINUE(1),
PROVIDE_INFORMATION_AGAIN(2),
PRINT_EQUIVALENT_COMMAND_LINE(3),
CANCEL(3);
private int returnCode;
private ConfirmCode(int returnCode)
{
this.returnCode = returnCode;
}
/**
* Get the corresponding return code value.
*
* @return The corresponding return code value.
*/
public int getReturnCode()
{
return returnCode;
}
}
/**
* The maximum number of times that we should ask the user to provide the
* password to access to a keystore.
*/
public static final int LIMIT_KEYSTORE_PASSWORD_PROMPT = 7;
private final BackendTypeHelper backendTypeHelper = new BackendTypeHelper();
/** Different variables we use when the user decides to provide data again. */
private NewSuffixOptions.Type lastResetPopulateOption;
private ManagedObjectDefinition extends BackendCfgClient, ? extends BackendCfg> lastResetBackendType;
private String lastResetImportFile;
private String lastResetRejectedFile;
private String lastResetSkippedFile;
private Integer lastResetNumEntries;
private Boolean lastResetEnableSSL;
private Boolean lastResetEnableStartTLS;
private SecurityOptions.CertificateType lastResetCertType;
private String lastResetKeyStorePath;
private Boolean lastResetEnableWindowsService;
private Boolean lastResetStartServer;
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
/** The argument parser. */
private InstallDSArgumentParser argParser;
/**
* Constructor for the InstallDS object.
*
* @param out
* the print stream to use for standard output.
* @param err
* the print stream to use for standard error.
* @param in
* the input stream to use for standard input.
*/
public InstallDS(PrintStream out, PrintStream err, InputStream in)
{
super(out, err);
}
/**
* The main method for the InstallDS CLI tool.
*
* @param args
* the command-line arguments provided to this program.
*/
public static void main(String[] args)
{
final int retCode = mainCLI(args, System.out, System.err, System.in);
System.exit(retCode);
}
/**
* Parses the provided command-line arguments and uses that information to run
* the setup tool.
*
* @param args
* the command-line arguments provided to this program.
* @return The error code.
*/
public static int mainCLI(String[] args)
{
return mainCLI(args, System.out, System.err, System.in);
}
/**
* Parses the provided command-line arguments and uses that information to run
* the setup tool.
*
* @param args
* The command-line arguments provided to this program.
* @param outStream
* The output stream to use for standard output, or null
* if standard output is not needed.
* @param errStream
* The output stream to use for standard error, or null
* if standard error is not needed.
* @param inStream
* The input stream to use for standard input.
* @return The error code.
*/
public static int mainCLI(String[] args, OutputStream outStream, OutputStream errStream, InputStream inStream)
{
final PrintStream out = NullOutputStream.wrapOrNullStream(outStream);
System.setProperty(Constants.CLI_JAVA_PROPERTY, "true");
final PrintStream err = NullOutputStream.wrapOrNullStream(errStream);
try {
QuickSetupLog.initLogFileHandler(
QuickSetupLog.isInitialized() ? null :
File.createTempFile(TMP_FILE_PREFIX, LOG_FILE_SUFFIX));
} catch (final Throwable t) {
System.err.println("Unable to initialize log");
t.printStackTrace();
}
final InstallDS install = new InstallDS(out, err, inStream);
return install.execute(args);
}
/**
* Parses the provided command-line arguments and uses that information to run
* the setup CLI.
*
* @param args
* the command-line arguments provided to this program.
* @return the return code (SUCCESSFUL, USER_DATA_ERROR or BUG).
*/
public int execute(String[] args)
{
argParser = new InstallDSArgumentParser(InstallDS.class.getName());
try
{
argParser.initializeArguments();
}
catch (final ArgumentException ae)
{
println(ToolMessages.ERR_CANNOT_INITIALIZE_ARGS.get(ae.getMessage()));
return InstallReturnCode.ERROR_UNEXPECTED.getReturnCode();
}
// Validate user provided data
try
{
argParser.parseArguments(args);
}
catch (final ArgumentException ae)
{
println(ERR_ERROR_PARSING_ARGS.get(ae.getMessage()));
println();
println(LocalizableMessage.raw(argParser.getUsage()));
return InstallReturnCode.ERROR_USER_DATA.getReturnCode();
}
if (argParser.testOnlyArg.isPresent() && !testJVM())
{
return InstallReturnCode.JAVA_VERSION_INCOMPATIBLE.getReturnCode();
}
if (argParser.usageOrVersionDisplayed() || argParser.testOnlyArg.isPresent())
{
return InstallReturnCode.SUCCESSFUL_NOP.getReturnCode();
}
try
{
checkInstallStatus();
}
catch (final InitializationException ie)
{
println(ie.getMessageObject());
return InstallReturnCode.ERROR_SERVER_ALREADY_INSTALLED.getReturnCode();
}
if (!checkLicense())
{
return InstallReturnCode.ERROR_LICENSE_NOT_ACCEPTED.getReturnCode();
}
final UserData uData = new UserData();
InstallReturnCode fillUserDataRC;
try
{
fillUserDataRC = fillUserData(uData, args);
if (fillUserDataRC != InstallReturnCode.SUCCESSFUL)
{
return fillUserDataRC.getReturnCode();
}
}
catch (final UserDataException e)
{
return printAndReturnErrorCode(e.getMessageObject()).getReturnCode();
}
System.setProperty(Constants.CLI_JAVA_PROPERTY, "true");
final OfflineInstaller installer = new OfflineInstaller();
installer.setUserData(uData);
installer.setProgressMessageFormatter(formatter);
installer.addProgressUpdateListener(
new ProgressUpdateListener() {
@Override
public void progressUpdate(ProgressUpdateEvent ev) {
if (ev.getNewLogs() != null)
{
print(ev.getNewLogs());
}
}
});
println();
installer.run();
printStatusCommand();
final ApplicationException ue = installer.getRunError();
if (ue != null)
{
return ue.getType().getReturnCode();
}
return InstallReturnCode.SUCCESSFUL.getReturnCode();
}
private InstallReturnCode fillUserData(UserData uData, String[] args) throws UserDataException
{
if (!isInteractive())
{
initializeUserDataWithParser(uData);
return InstallReturnCode.SUCCESSFUL;
}
boolean userApproved = false;
while (!userApproved)
{
try
{
promptIfRequired(uData);
}
catch (final ClientException ce)
{
return printAndReturnErrorCode(ce.getMessageObject());
}
boolean promptAgain = true;
printSummary(uData);
while (isInteractive() && promptAgain)
{
promptAgain = false;
final ConfirmCode confirm = askForConfirmation();
switch (confirm)
{
case CONTINUE:
userApproved = true;
break;
case CANCEL:
logger.debug(LocalizableMessage.raw("User cancelled setup."));
return InstallReturnCode.ERROR_USER_CANCELLED;
case PRINT_EQUIVALENT_COMMAND_LINE:
printEquivalentCommandLine(uData);
promptAgain = true;
break;
case PROVIDE_INFORMATION_AGAIN:
// Reset the arguments
try
{
resetArguments(uData);
argParser.parseArguments(args);
}
catch (final Throwable t)
{
logger.warn(LocalizableMessage.raw("Error resetting arg parser: "+t, t));
}
userApproved = false;
}
}
}
return InstallReturnCode.SUCCESSFUL;
}
private boolean testJVM()
{
// Delete the log file that does not contain any information. The test only
// mode is called several times by the setup script and if we do not remove
// it we have a lot of empty log files.
try
{
QuickSetupLog.getLogFile().deleteOnExit();
}
catch (final Throwable t)
{
logger.warn(LocalizableMessage.raw("Error while trying to update the contents of "
+ "the set-java-home file in test only mode: " + t, t));
}
try
{
Utils.checkJavaVersion();
return true;
}
catch (final IncompatibleVersionException ive)
{
println(ive.getMessageObject());
return false;
}
}
private boolean checkLicense()
{
if (!LicenseFile.exists()) {
return true;
}
println(LocalizableMessage.raw(LicenseFile.getText()));
// If the user asks for acceptLicense, license is displayed
// and automatically accepted.
if (!argParser.acceptLicense.isPresent())
{
final String yes = INFO_LICENSE_CLI_ACCEPT_YES.get().toString();
final String no = INFO_LICENSE_CLI_ACCEPT_NO.get().toString();
final String yesShort = INFO_PROMPT_YES_FIRST_LETTER_ANSWER.get().toString();
final String noShort = INFO_PROMPT_NO_FIRST_LETTER_ANSWER.get().toString();
println(QuickSetupMessages.INFO_LICENSE_DETAILS_CLI_LABEL.get());
final BufferedReader in = new BufferedReader(new InputStreamReader(getInputStream()));
// No-prompt arg automatically rejects the license.
if (!argParser.noPromptArg.isPresent())
{
while (true)
{
print(INFO_LICENSE_CLI_ACCEPT_QUESTION.get(yes, no, no));
try
{
final String response = in.readLine();
if (response == null
|| response.equalsIgnoreCase(no)
|| response.equalsIgnoreCase(noShort)
|| response.length() == 0)
{
return false;
}
else if (response.equalsIgnoreCase(yes)
|| response.equalsIgnoreCase(yesShort))
{
LicenseFile.setApproval(true);
break;
}
println(QuickSetupMessages.INFO_LICENSE_CLI_ACCEPT_INVALID_RESPONSE.get());
}
catch (final IOException e)
{
println(QuickSetupMessages.INFO_LICENSE_CLI_ACCEPT_INVALID_RESPONSE.get());
}
}
}
else
{
return false;
}
}
else
{
print(INFO_LICENSE_ACCEPT.get());
print(INFO_PROMPT_YES_COMPLETE_ANSWER.get());
LicenseFile.setApproval(true);
}
return true;
}
private void printStatusCommand()
{
// Use this instead a call to Installation to avoid to launch a new JVM just to retrieve a path.
final String binariesRelativePath = isWindows() ? Installation.WINDOWS_BINARIES_PATH_RELATIVE
: Installation.UNIX_BINARIES_PATH_RELATIVE;
final String statusCliFileName = isWindows() ? Installation.WINDOWS_STATUSCLI_FILE_NAME
: Installation.UNIX_STATUSCLI_FILE_NAME;
final String binDir = Utils.getPath(Utils.getInstallPathFromClasspath(), binariesRelativePath);
final String cmd = Utils.getPath(binDir, statusCliFileName);
println();
println(INFO_INSTALLDS_STATUS_COMMAND_LINE.get(cmd));
println();
}
private InstallReturnCode printAndReturnErrorCode(LocalizableMessage message)
{
println(message);
if (StaticUtils.hasDescriptor(message, ERR_INSTALLDS_TOO_MANY_KEYSTORE_PASSWORD_TRIES))
{
return InstallReturnCode.ERROR_PASSWORD_LIMIT;
}
return InstallReturnCode.ERROR_USER_DATA;
}
/**
* Checks if the server is installed or not.
*
* @throws InitializationException
* if the server is already installed and configured or if the user
* did not accept to overwrite the existing databases.
*/
private void checkInstallStatus() throws InitializationException
{
final CurrentInstallStatus installStatus = new CurrentInstallStatus();
if (installStatus.canOverwriteCurrentInstall())
{
if (isInteractive())
{
println(installStatus.getInstallationMsg());
try
{
if (!confirmAction(INFO_CLI_DO_YOU_WANT_TO_CONTINUE.get(), true))
{
throw new InitializationException(LocalizableMessage.EMPTY);
}
}
catch (final ClientException ce)
{
logger.error(LocalizableMessage.raw("Unexpected error: "+ce, ce));
throw new InitializationException(LocalizableMessage.EMPTY, ce);
}
}
else
{
println(installStatus.getInstallationMsg());
}
}
else if (installStatus.isInstalled())
{
throw new InitializationException(installStatus.getInstallationMsg());
}
}
/** {@inheritDoc} */
@Override
public boolean isQuiet()
{
return argParser.quietArg.isPresent();
}
/** {@inheritDoc} */
@Override
public boolean isInteractive()
{
return !argParser.noPromptArg.isPresent();
}
/** {@inheritDoc} */
@Override
public boolean isMenuDrivenMode() {
return true;
}
/** {@inheritDoc} */
@Override
public boolean isScriptFriendly() {
return false;
}
/** {@inheritDoc} */
@Override
public boolean isAdvancedMode() {
return false;
}
/** {@inheritDoc} */
@Override
public boolean isVerbose() {
return argParser.verboseArg.isPresent();
}
/**
* This method updates the contents of a UserData object with what the user
* specified in the command-line. It assumes that it is being called in no
* prompt mode.
*
* @param uData
* the UserData object.
* @throws UserDataException
* if something went wrong checking the data.
*/
private void initializeUserDataWithParser(UserData uData) throws UserDataException
{
uData.setQuiet(isQuiet());
uData.setVerbose(isVerbose());
uData.setConnectTimeout(getConnectTimeout());
final List errorMessages = new LinkedList<>();
setBackendType(uData, errorMessages);
final List baseDNs = checkBaseDNs(errorMessages);
setDirectoryManagerData(uData, errorMessages);
setPorts(uData, errorMessages);
setImportData(baseDNs, uData, errorMessages);
setSecurityData(uData, errorMessages);
if (!errorMessages.isEmpty())
{
throw new UserDataException(null,
Utils.getMessageFromCollection(errorMessages, formatter.getLineBreak().toString()));
}
}
private void setBackendType(final UserData uData, final List errorMessages)
{
final String filledBackendType = argParser.backendTypeArg.getValue();
final ManagedObjectDefinition extends BackendCfgClient, ? extends BackendCfg> backend =
backendTypeHelper.retrieveBackendTypeFromName(filledBackendType);
if (backend != null)
{
uData.setBackendType(backend);
}
else
{
errorMessages.add(
ERR_INSTALLDS_NO_SUCH_BACKEND_TYPE.get(filledBackendType, backendTypeHelper.getPrintableBackendTypeNames()));
}
}
private List checkBaseDNs(List errorMessages)
{
final List baseDNs = argParser.baseDNArg.getValues();
if (baseDNs.isEmpty() && argParser.baseDNArg.getDefaultValue() != null)
{
baseDNs.add(argParser.baseDNArg.getDefaultValue());
}
for (final String baseDN : baseDNs)
{
checkBaseDN(baseDN, errorMessages);
}
return baseDNs;
}
private void setDirectoryManagerData(UserData uData, List errorMessages)
{
final String dmDN = argParser.directoryManagerDNArg.getValue();
if (dmDN.trim().length() == 0)
{
errorMessages.add(ERR_INSTALLDS_EMPTY_DN_RESPONSE.get());
}
checkBaseDN(dmDN, errorMessages);
uData.setDirectoryManagerDn(argParser.directoryManagerDNArg.getValue());
// Check the validity of the directory manager password
if (argParser.getDirectoryManagerPassword().isEmpty()) {
errorMessages.add(INFO_EMPTY_PWD.get());
}
uData.setDirectoryManagerPwd(argParser.getDirectoryManagerPassword());
}
private void checkBaseDN(String baseDN, List errorMessages)
{
try
{
new LdapName(baseDN);
}
catch (final Exception e)
{
errorMessages.add(ERR_INSTALLDS_CANNOT_PARSE_DN.get(baseDN, e.getMessage()));
}
}
private void setPorts(UserData uData, List errorMessages)
{
try
{
final int ldapPort = argParser.ldapPortArg.getIntValue();
uData.setServerPort(ldapPort);
final int adminConnectorPort = argParser.adminConnectorPortArg.getIntValue();
uData.setAdminConnectorPort(adminConnectorPort);
if (!argParser.skipPortCheckArg.isPresent())
{
checkCanUsePort(ldapPort, errorMessages);
checkCanUsePort(adminConnectorPort, errorMessages);
}
if (argParser.jmxPortArg.isPresent())
{
final int jmxPort = argParser.jmxPortArg.getIntValue();
uData.setServerJMXPort(jmxPort);
if (!argParser.skipPortCheckArg.isPresent())
{
checkCanUsePort(jmxPort, errorMessages);
}
}
}
catch (final ArgumentException ae)
{
errorMessages.add(ae.getMessageObject());
}
}
private void setImportData(List baseDNs, UserData uData, List errorMessages)
{
NewSuffixOptions dataOptions;
if (argParser.importLDIFArg.isPresent())
{
// Check that the files exist
final List nonExistingFiles = new LinkedList<>();
for (final String file : argParser.importLDIFArg.getValues())
{
if (!Utils.fileExists(file))
{
nonExistingFiles.add(file);
}
}
if (!nonExistingFiles.isEmpty())
{
errorMessages.add(ERR_INSTALLDS_NO_SUCH_LDIF_FILE.get(joinAsString(", ", nonExistingFiles)));
}
final String rejectedFile = argParser.rejectedImportFileArg.getValue();
if (rejectedFile != null && !canWrite(rejectedFile))
{
errorMessages.add(ERR_INSTALLDS_CANNOT_WRITE_REJECTED.get(rejectedFile));
}
final String skippedFile = argParser.skippedImportFileArg.getValue();
if (skippedFile != null && !canWrite(skippedFile))
{
errorMessages.add(ERR_INSTALLDS_CANNOT_WRITE_SKIPPED.get(skippedFile));
}
dataOptions = NewSuffixOptions.createImportFromLDIF(baseDNs, argParser.importLDIFArg.getValues(),
rejectedFile, skippedFile);
}
else if (argParser.addBaseEntryArg.isPresent())
{
dataOptions = NewSuffixOptions.createBaseEntry(baseDNs);
}
else if (argParser.sampleDataArg.isPresent())
{
dataOptions = NewSuffixOptions.createAutomaticallyGenerated(baseDNs,
Integer.valueOf(argParser.sampleDataArg.getValue()));
}
else
{
dataOptions = NewSuffixOptions.createEmpty(baseDNs);
}
uData.setNewSuffixOptions(dataOptions);
}
private void setSecurityData(UserData uData, List errorMessages)
{
final boolean enableSSL = argParser.ldapsPortArg.isPresent();
int sslPort = -1;
try
{
sslPort = enableSSL ? argParser.ldapsPortArg.getIntValue() : -1;
}
catch (final ArgumentException ae)
{
errorMessages.add(ae.getMessageObject());
}
if (enableSSL && !argParser.skipPortCheckArg.isPresent())
{
checkCanUsePort(sslPort, errorMessages);
}
checkCertificate(sslPort, enableSSL, uData, errorMessages);
uData.setEnableWindowsService(argParser.enableWindowsServiceArg.isPresent());
uData.setStartServer(!argParser.doNotStartArg.isPresent());
}
private void checkCertificate(int sslPort, boolean enableSSL, UserData uData, List errorMessages)
{
final LinkedList keystoreAliases = new LinkedList<>();
uData.setHostName(argParser.hostNameArg.getValue());
final boolean enableStartTLS = argParser.enableStartTLSArg.isPresent();
final String pwd = argParser.getKeyStorePassword();
SecurityOptions.CertificateType certType = null;
String pathToCertificat = null;
if (argParser.generateSelfSignedCertificateArg.isPresent())
{
certType = SecurityOptions.CertificateType.SELF_SIGNED_CERTIFICATE;
}
else if (argParser.useJavaKeyStoreArg.isPresent())
{
certType = SecurityOptions.CertificateType.JKS;
pathToCertificat = argParser.useJavaKeyStoreArg.getValue();
}
else if (argParser.useJCEKSArg.isPresent())
{
certType = SecurityOptions.CertificateType.JCEKS;
pathToCertificat = argParser.useJCEKSArg.getValue();
}
else if (argParser.usePkcs11Arg.isPresent())
{
certType = SecurityOptions.CertificateType.PKCS11;
pathToCertificat = argParser.usePkcs11Arg.getValue();
}
else if (argParser.usePkcs12Arg.isPresent())
{
certType = SecurityOptions.CertificateType.PKCS12;
pathToCertificat = argParser.usePkcs12Arg.getValue();
}
else
{
certType = SecurityOptions.CertificateType.NO_CERTIFICATE;
}
String certNickname = argParser.certNicknameArg.getValue();
if (pathToCertificat != null)
{
checkCertificateInKeystore(certType, pathToCertificat, pwd, certNickname, errorMessages, keystoreAliases);
if (certNickname == null && !keystoreAliases.isEmpty())
{
certNickname = keystoreAliases.getFirst();
}
}
final SecurityOptions securityOptions = SecurityOptions.createOptionsForCertificatType(
certType, pathToCertificat, pwd, enableSSL, enableStartTLS, sslPort, certNickname);
uData.setSecurityOptions(securityOptions);
}
private void checkCanUsePort(int port, List errorMessages)
{
if (!SetupUtils.canUseAsPort(port))
{
errorMessages.add(getCannotBindErrorMessage(port));
}
}
private LocalizableMessage getCannotBindErrorMessage(int port)
{
if (SetupUtils.isPrivilegedPort(port))
{
return ERR_INSTALLDS_CANNOT_BIND_TO_PRIVILEGED_PORT.get(port);
}
return ERR_INSTALLDS_CANNOT_BIND_TO_PORT.get(port);
}
/**
* This method updates the contents of a UserData object with what the user
* specified in the command-line. If the user did not provide explicitly some
* data or if the provided data is not valid, it prompts the user to provide
* it.
*
* @param uData
* the UserData object to be updated.
* @throws UserDataException
* if the user did not manage to provide the keystore password after
* a certain number of tries.
* @throws ClientException
* if something went wrong when reading inputs.
*/
private void promptIfRequired(UserData uData) throws UserDataException, ClientException
{
uData.setQuiet(isQuiet());
uData.setVerbose(isVerbose());
uData.setConnectTimeout(getConnectTimeout());
promptIfRequiredForDirectoryManager(uData);
promptIfRequiredForPortData(uData);
uData.setNewSuffixOptions(promptIfRequiredForImportData(uData));
uData.setSecurityOptions(promptIfRequiredForSecurityData(uData));
uData.setEnableWindowsService(promptIfRequiredForWindowsService());
uData.setStartServer(promptIfRequiredForStartServer());
}
/**
* This method updates the contents of a UserData object with what the user
* specified in the command-line for the Directory Manager parameters. If the
* user did not provide explicitly some data or if the provided data is not
* valid, it prompts the user to provide it.
*
* @param uData
* the UserData object to be updated.
* @throws UserDataException
* if something went wrong checking the data.
* @throws ClientException
* if something went wrong checking passwords.
*/
private void promptIfRequiredForDirectoryManager(UserData uData) throws UserDataException, ClientException
{
final LinkedList dns = promptIfRequiredForDNs(
argParser.directoryManagerDNArg, INFO_INSTALLDS_PROMPT_ROOT_DN.get(), true);
uData.setDirectoryManagerDn(dns.getFirst());
int nTries = 0;
String pwd = argParser.getDirectoryManagerPassword();
while (pwd == null)
{
if (nTries >= CONFIRMATION_MAX_TRIES)
{
throw new UserDataException(null, ERR_TRIES_LIMIT_REACHED.get(CONFIRMATION_MAX_TRIES));
}
// Prompt for password and confirm.
char[] pwd1 = readPassword(INFO_INSTALLDS_PROMPT_ROOT_PASSWORD.get());
while (pwd1 == null || pwd1.length == 0)
{
println();
println(INFO_EMPTY_PWD.get());
println();
pwd1 = readPassword(INFO_INSTALLDS_PROMPT_ROOT_PASSWORD.get());
}
final char[] pwd2 = readPassword(INFO_INSTALLDS_PROMPT_CONFIRM_ROOT_PASSWORD.get());
if (Arrays.equals(pwd1, pwd2))
{
pwd = String.valueOf(pwd1);
}
else
{
println();
println(ERR_INSTALLDS_PASSWORDS_DONT_MATCH.get());
}
nTries++;
}
uData.setDirectoryManagerPwd(pwd);
}
/**
* This method returns a list of DNs. It checks that the provided list of DNs
* actually contain some values. If no valid values are found it prompts the
* user to provide a valid DN.
*
* @param arg
* the Argument that the user provided to specify the DNs.
* @param promptMsg
* the prompt message to be displayed.
* @param includeLineBreak
* whether to include a line break before the first prompt or not.
* @return a list of valid DNs.
* @throws UserDataException
* if something went wrong checking the data.
*/
private LinkedList promptIfRequiredForDNs(StringArgument arg,
LocalizableMessage promptMsg, boolean includeLineBreak) throws UserDataException
{
final LinkedList dns = new LinkedList<>();
boolean usedProvided = false;
boolean firstPrompt = true;
int nTries = 0;
while (dns.isEmpty())
{
if (nTries >= CONFIRMATION_MAX_TRIES)
{
throw new UserDataException(null, ERR_TRIES_LIMIT_REACHED.get(CONFIRMATION_MAX_TRIES));
}
boolean prompted = false;
if (usedProvided || !arg.isPresent())
{
if (firstPrompt && includeLineBreak)
{
println();
}
try
{
final String dn = readInput(promptMsg, arg.getDefaultValue());
firstPrompt = false;
dns.add(dn);
prompted = true;
}
catch (final ClientException ce)
{
logger.warn(LocalizableMessage.raw("Error reading input: "+ce, ce));
}
}
else
{
dns.addAll(arg.getValues());
usedProvided = true;
}
final List toRemove = new LinkedList<>();
for (final String dn : dns)
{
try
{
new LdapName(dn);
if (dn.trim().length() == 0)
{
toRemove.add(dn);
println(ERR_INSTALLDS_EMPTY_DN_RESPONSE.get());
}
}
catch (final Exception e)
{
toRemove.add(dn);
final LocalizableMessage message = prompted ? ERR_INSTALLDS_INVALID_DN_RESPONSE.get() :
ERR_INSTALLDS_CANNOT_PARSE_DN.get(dn, e.getMessage());
println(message);
}
}
if (!toRemove.isEmpty())
{
println();
}
dns.removeAll(toRemove);
nTries++;
}
return dns;
}
/**
* This method updates the contents of a UserData object with what the user
* specified in the command-line for the administration connector, LDAP and
* JMX port parameters. If the user did not provide explicitly some data or
* if the provided data is not valid, it prompts the user to provide it.
* Note: this method does not update nor check the LDAPS port.
*
* @param uData
* the UserData object to be updated.
*/
private void promptIfRequiredForPortData(UserData uData)
{
uData.setHostName(promptForHostNameIfRequired());
final List usedPorts = new LinkedList<>();
// Determine the LDAP port number.
final int ldapPort = promptIfRequiredForPortData(argParser.ldapPortArg,
INFO_INSTALLDS_PROMPT_LDAPPORT.get(), usedPorts, true);
uData.setServerPort(ldapPort);
usedPorts.add(ldapPort);
// Determine the Admin Connector port number.
final int adminConnectorPort = promptIfRequiredForPortData(argParser.adminConnectorPortArg,
INFO_INSTALLDS_PROMPT_ADMINCONNECTORPORT.get(), usedPorts, true);
uData.setAdminConnectorPort(adminConnectorPort);
usedPorts.add(adminConnectorPort);
if (argParser.jmxPortArg.isPresent())
{
final int jmxPort = promptIfRequiredForPortData(argParser.jmxPortArg,
INFO_INSTALLDS_PROMPT_JMXPORT.get(), usedPorts, true);
uData.setServerJMXPort(jmxPort);
}
else
{
uData.setServerJMXPort(-1);
}
}
/**
* This method returns a valid port value. It checks that the provided
* argument contains a valid port. If a valid port is not found it prompts the
* user to provide a valid port.
*
* @param portArg
* the Argument that the user provided to specify the port.
* @param promptMsg
* the prompt message to be displayed.
* @param usedPorts
* the list of ports the user provided before for other connection
* handlers.
* @param includeLineBreak
* whether to include a line break before the first prompt or not.
* @return a valid port number.
*/
private int promptIfRequiredForPortData(IntegerArgument portArg, LocalizableMessage promptMsg,
Collection usedPorts, boolean includeLineBreak)
{
int portNumber = -1;
boolean usedProvided = false;
boolean firstPrompt = true;
while (portNumber == -1)
{
try
{
boolean prompted = false;
if (usedProvided || !portArg.isPresent())
{
int defaultValue = -1;
if (portArg.getDefaultValue() != null)
{
defaultValue = Integer.parseInt(portArg.getDefaultValue());
}
if (firstPrompt && includeLineBreak)
{
println();
}
portNumber = -1;
while (portNumber == -1)
{
try
{
portNumber = readPort(promptMsg, defaultValue);
}
catch (final ClientException ce)
{
portNumber = -1;
logger.warn(LocalizableMessage.raw("Error reading input: "+ce, ce));
}
}
prompted = true;
firstPrompt = false;
}
else
{
portNumber = portArg.getIntValue();
usedProvided = true;
}
if (!argParser.skipPortCheckArg.isPresent() && !SetupUtils.canUseAsPort(portNumber))
{
final LocalizableMessage message = getCannotBindErrorMessage(portNumber);
if (prompted || includeLineBreak)
{
println();
}
println(message);
if (!SetupUtils.isPrivilegedPort(portNumber))
{
println();
}
portNumber = -1;
}
if (portNumber != -1 && usedPorts.contains(portNumber))
{
println(ERR_CONFIGDS_PORT_ALREADY_SPECIFIED.get(portNumber));
println();
portNumber = -1;
}
}
catch (final ArgumentException ae)
{
println(ae.getMessageObject());
}
}
return portNumber;
}
/**
* This method returns what the user specified in the command-line for the
* base DN and data import parameters. If the user did not provide explicitly
* some data or if the provided data is not valid, it prompts the user to
* provide it.
*
* @param uData
* The UserData object to be updated.
* @return the NewSuffixOptions telling how to import data
* @throws UserDataException
* if something went wrong checking the data.
*/
private NewSuffixOptions promptIfRequiredForImportData(final UserData uData) throws UserDataException
{
boolean prompt = true;
if (!argParser.baseDNArg.isPresent())
{
println();
try
{
prompt = confirmAction(INFO_INSTALLDS_PROVIDE_BASE_DN_PROMPT.get(), true);
}
catch (final ClientException ce)
{
prompt = true;
logger.warn(LocalizableMessage.raw("Error reading input: " + ce, ce));
}
}
if (!prompt)
{
return NewSuffixOptions.createEmpty(new LinkedList());
}
uData.setBackendType(getOrPromptForBackendType());
// Add default value for base DN on first prompt
if (argParser.baseDNArg.getDefaultValue() == null)
{
argParser.baseDNArg.setDefaultValue(Installation.DEFAULT_INTERACTIVE_BASE_DN);
}
// Check the validity of the base DNs
final List baseDNs = promptIfRequiredForDNs(argParser.baseDNArg, INFO_INSTALLDS_PROMPT_BASEDN.get(), true);
return promptIfRequiredForDataOptions(baseDNs);
}
private ManagedObjectDefinition extends BackendCfgClient, ? extends BackendCfg> getOrPromptForBackendType()
{
if (argParser.backendTypeArg.isPresent())
{
final ManagedObjectDefinition extends BackendCfgClient, ? extends BackendCfg> backend =
backendTypeHelper.retrieveBackendTypeFromName(argParser.backendTypeArg.getValue().toLowerCase());
if ( backend != null)
{
return backend;
}
println();
println(ERR_INSTALLDS_NO_SUCH_BACKEND_TYPE.get(
argParser.backendTypeArg.getValue(), backendTypeHelper.getPrintableBackendTypeNames()));
}
int backendTypeIndex = 1;
try
{
final MenuResult m = getBackendTypeMenu().run();
if (m.isSuccess())
{
backendTypeIndex = m.getValue();
}
}
catch (final ClientException ce)
{
logger.warn(LocalizableMessage.raw("Error reading input: " + ce, ce));
}
return backendTypeHelper.getBackendTypes().get(backendTypeIndex - 1);
}
private Menu getBackendTypeMenu()
{
final MenuBuilder builder = new MenuBuilder<>(this);
builder.setPrompt(INFO_INSTALLDS_PROMPT_BACKEND_TYPE.get());
int index = 1;
for (final ManagedObjectDefinition, ?> backendType : backendTypeHelper.getBackendTypes())
{
builder.addNumberedOption(backendType.getUserFriendlyName(), MenuResult.success(index++));
}
final int printableIndex = getPromptedBackendTypeIndex();
builder.setDefault(LocalizableMessage.raw(Integer.toString(printableIndex)), MenuResult.success(printableIndex));
return builder.toMenu();
}
private int getPromptedBackendTypeIndex()
{
if (lastResetBackendType != null)
{
return backendTypeHelper.getBackendTypes().indexOf(lastResetBackendType) + 1;
}
return 1;
}
private NewSuffixOptions promptIfRequiredForDataOptions(List baseDNs)
{
NewSuffixOptions dataOptions;
if (argParser.importLDIFArg.isPresent())
{
// Check that the files exist
final List nonExistingFiles = new LinkedList<>();
final List importLDIFFiles = new LinkedList<>();
for (final String file : argParser.importLDIFArg.getValues())
{
if (!Utils.fileExists(file))
{
nonExistingFiles.add(file);
}
else
{
importLDIFFiles.add(file);
}
}
if (!nonExistingFiles.isEmpty())
{
println();
println(ERR_INSTALLDS_NO_SUCH_LDIF_FILE.get(joinAsString(", ", nonExistingFiles)));
}
readImportLdifFile(importLDIFFiles, lastResetImportFile);
String rejectedFile = readValidFilePath(argParser.rejectedImportFileArg, lastResetRejectedFile,
ERR_INSTALLDS_CANNOT_WRITE_REJECTED, INFO_INSTALLDS_PROMPT_REJECTED_FILE);
String skippedFile = readValidFilePath(argParser.skippedImportFileArg, lastResetSkippedFile,
ERR_INSTALLDS_CANNOT_WRITE_SKIPPED, INFO_INSTALLDS_PROMPT_SKIPPED_FILE);
dataOptions = NewSuffixOptions.createImportFromLDIF(baseDNs,
importLDIFFiles, rejectedFile, skippedFile);
}
else if (argParser.addBaseEntryArg.isPresent())
{
dataOptions = NewSuffixOptions.createBaseEntry(baseDNs);
}
else if (argParser.sampleDataArg.isPresent())
{
int numUsers;
try
{
numUsers = argParser.sampleDataArg.getIntValue();
}
catch (final ArgumentException ae)
{
println();
println(ae.getMessageObject());
final LocalizableMessage message = INFO_INSTALLDS_PROMPT_NUM_ENTRIES.get();
numUsers = promptForInteger(message, 2000, 0, Integer.MAX_VALUE);
}
dataOptions = NewSuffixOptions.createAutomaticallyGenerated(baseDNs, numUsers);
}
else
{
final int POPULATE_TYPE_LEAVE_EMPTY = 1;
final int POPULATE_TYPE_BASE_ONLY = 2;
final int POPULATE_TYPE_IMPORT_FROM_LDIF = 3;
final int POPULATE_TYPE_GENERATE_SAMPLE_DATA = 4;
final int[] indexes = {POPULATE_TYPE_LEAVE_EMPTY, POPULATE_TYPE_BASE_ONLY,
POPULATE_TYPE_IMPORT_FROM_LDIF, POPULATE_TYPE_GENERATE_SAMPLE_DATA};
final LocalizableMessage[] msgs = new LocalizableMessage[] {
INFO_INSTALLDS_POPULATE_OPTION_LEAVE_EMPTY.get(),
INFO_INSTALLDS_POPULATE_OPTION_BASE_ONLY.get(),
INFO_INSTALLDS_POPULATE_OPTION_IMPORT_LDIF.get(),
INFO_INSTALLDS_POPULATE_OPTION_GENERATE_SAMPLE.get()
};
final MenuBuilder builder = new MenuBuilder<>(this);
builder.setPrompt(INFO_INSTALLDS_HEADER_POPULATE_TYPE.get());
for (int i=0; i menu = builder.toMenu();
int populateType;
try
{
final MenuResult m = menu.run();
if (m.isSuccess())
{
populateType = m.getValue();
}
else
{
// Should never happen.
throw new RuntimeException();
}
}
catch (final ClientException ce)
{
populateType = POPULATE_TYPE_BASE_ONLY;
logger.warn(LocalizableMessage.raw("Error reading input: "+ce, ce));
}
if (populateType == POPULATE_TYPE_IMPORT_FROM_LDIF)
{
final List importLDIFFiles = new LinkedList<>();
readImportLdifFile(importLDIFFiles, null);
String rejectedFile = readValidFilePath(argParser.rejectedImportFileArg, null,
ERR_INSTALLDS_CANNOT_WRITE_REJECTED, INFO_INSTALLDS_PROMPT_REJECTED_FILE);
String skippedFile = readValidFilePath(argParser.skippedImportFileArg, null,
ERR_INSTALLDS_CANNOT_WRITE_SKIPPED, INFO_INSTALLDS_PROMPT_SKIPPED_FILE);
dataOptions = NewSuffixOptions.createImportFromLDIF(baseDNs,
importLDIFFiles, rejectedFile, skippedFile);
}
else if (populateType == POPULATE_TYPE_GENERATE_SAMPLE_DATA)
{
final LocalizableMessage message = INFO_INSTALLDS_PROMPT_NUM_ENTRIES.get();
int defaultValue = lastResetNumEntries != null ? lastResetNumEntries : 2000;
final int numUsers = promptForInteger(message, defaultValue, 0, Integer.MAX_VALUE);
dataOptions = NewSuffixOptions.createAutomaticallyGenerated(baseDNs, numUsers);
}
else if (populateType == POPULATE_TYPE_LEAVE_EMPTY)
{
dataOptions = NewSuffixOptions.createEmpty(baseDNs);
}
else if (populateType == POPULATE_TYPE_BASE_ONLY)
{
dataOptions = NewSuffixOptions.createBaseEntry(baseDNs);
}
else
{
throw new IllegalStateException("Unexpected populateType: " + populateType);
}
}
return dataOptions;
}
private void readImportLdifFile(final List importLDIFFiles, String defaultValue)
{
while (importLDIFFiles.isEmpty())
{
println();
try
{
final String path = readInput(INFO_INSTALLDS_PROMPT_IMPORT_FILE.get(), defaultValue);
if (Utils.fileExists(path))
{
importLDIFFiles.add(path);
}
else
{
println();
println(ERR_INSTALLDS_NO_SUCH_LDIF_FILE.get(path));
}
}
catch (final ClientException ce)
{
logger.warn(LocalizableMessage.raw("Error reading input: "+ce, ce));
}
}
}
private String readValidFilePath(StringArgument arg, String defaultValue, Arg1