/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is the Netscape security libraries. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1994-2000 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef MODUTIL_ERROR_H #define MODUTIL_ERROR_H /* * The values of these enumerated constants are immutable and must not be * changed. */ typedef enum { NO_ERR=0, INVALID_USAGE_ERR, UNEXPECTED_ARG_ERR, UNKNOWN_OPTION_ERR, MULTIPLE_COMMAND_ERR, OPTION_NEEDS_ARG_ERR, DUPLICATE_OPTION_ERR, MISSING_PARAM_ERR, INVALID_FIPS_ARG, NO_COMMAND_ERR, NO_DBDIR_ERR, FIPS_SWITCH_FAILED_ERR, FIPS_ALREADY_ON_ERR, FIPS_ALREADY_OFF_ERR, FILE_ALREADY_EXISTS_ERR, FILE_DOESNT_EXIST_ERR, FILE_NOT_READABLE_ERR, FILE_NOT_WRITEABLE_ERR, DIR_DOESNT_EXIST_ERR, DIR_NOT_READABLE_ERR, DIR_NOT_WRITEABLE_ERR, INVALID_CONSTANT_ERR, ADD_MODULE_FAILED_ERR, UNUSED_ERR, /* reserved for future use */ OUT_OF_MEM_ERR, DELETE_INTERNAL_ERR, DELETE_FAILED_ERR, NO_LIST_LOCK_ERR, NO_MODULE_LIST_ERR, NO_SUCH_MODULE_ERR, MOD_INFO_ERR, SLOT_INFO_ERR, TOKEN_INFO_ERR, NO_SUCH_TOKEN_ERR, CHANGEPW_FAILED_ERR, BAD_PW_ERR, DB_ACCESS_ERR, AUTHENTICATION_FAILED_ERR, NO_SUCH_SLOT_ERR, ENABLE_FAILED_ERR, UPDATE_MOD_FAILED_ERR, DEFAULT_FAILED_ERR, UNDEFAULT_FAILED_ERR, STDIN_READ_ERR, UNSPECIFIED_ERR, NOCERTDB_MISUSE_ERR, NSS_INITIALIZE_FAILED_ERR, LAST_ERR /* must be last */ } Error; #define SUCCESS NO_ERR /* !!! Should move this into its own .c and un-static it. */ static char *errStrings[] = { "Operation completed successfully.\n", "ERROR: Invalid command line.\n", "ERROR: Not expecting argument \"%s\".\n", "ERROR: Unknown option: %s.\n", "ERROR: %s: multiple commands are not allowed on the command line.\n", "ERROR: %s: option needs an argument.\n", "ERROR: %s: option cannot be given more than once.\n", "ERROR: Command \"%s\" requires parameter \"%s\".\n", "ERROR: Argument to -fips must be \"true\" or \"false\".\n", "ERROR: No command was specified.\n", "ERROR: Cannot determine database directory: use the -dbdir option.\n", "ERROR: Unable to switch FIPS modes.\n", "FIPS mode already enabled.\n", "FIPS mode already disabled.\n", "ERROR: File \"%s\" already exists.\n", "ERROR: File \"%s\" does not exist.\n", "ERROR: File \"%s\" is not readable.\n", "ERROR: File \"%s\" is not writeable.\n", "ERROR: Directory \"%s\" does not exist.\n", "ERROR: Directory \"%s\" is not readable.\n", "ERROR: Directory \"%s\" is not writeable.\n", "\"%s\" is not a recognized value.\n", "ERROR: Failed to add module \"%s\". Probable cause : \"%s\".\n", "Unused error string", "ERROR: Out of memory.\n", "ERROR: Cannot delete internal module.\n", "ERROR: Failed to delete module \"%s\".\n", "ERROR: Unable to obtain lock on module list.\n", "ERROR: Unable to obtain module list.\n", "ERROR: Module \"%s\" not found in database.\n", "ERROR: Unable to get information about module \"%s\".\n", "ERROR: Unable to get information about slot \"%s\".\n", "ERROR: Unable to get information about token \"%s\".\n", "ERROR: Token \"%s\" not found.\n", "ERROR: Unable to change password on token \"%s\".\n", "ERROR: Incorrect password.\n", "ERROR: Unable to access database \"%s\".\n", "ERROR: Unable to authenticate to token \"%s\".\n", "ERROR: Slot \"%s\" not found.\n", "ERROR: Failed to %s slot \"%s\".\n", "ERROR: Failed to update module \"%s\".\n", "ERROR: Failed to change defaults.\n", "ERROR: Failed to change default.\n", "ERROR: Unable to read from standard input.\n", "ERROR: Unknown error occurred.\n", "ERROR: -nocertdb option can only be used with the -jar command.\n" "ERROR: NSS_Initialize() failed.\n" }; typedef enum { FIPS_ENABLED_MSG=0, FIPS_DISABLED_MSG, USING_DBDIR_MSG, CREATING_DB_MSG, ADD_MODULE_SUCCESS_MSG, DELETE_SUCCESS_MSG, CHANGEPW_SUCCESS_MSG, BAD_PW_MSG, PW_MATCH_MSG, DONE_MSG, ENABLE_SUCCESS_MSG, DEFAULT_SUCCESS_MSG, UNDEFAULT_SUCCESS_MSG, BROWSER_RUNNING_MSG, ABORTING_MSG, LAST_MSG /* must be last */ } Message; static char *msgStrings[] = { "FIPS mode enabled.\n", "FIPS mode disabled.\n", "Using database directory %s...\n", "Creating \"%s\"...", "Module \"%s\" added to database.\n", "Module \"%s\" deleted from database.\n", "Token \"%s\" password changed successfully.\n", "Incorrect password, try again...\n", "Passwords do not match, try again...\n", "done.\n", "Slot \"%s\" %s.\n", "Successfully changed defaults.\n", "Successfully changed defaults.\n", "\nWARNING: Performing this operation while the browser is running could cause" "\ncorruption of your security databases. If the browser is currently running," "\nyou should exit browser before continuing this operation. Type " "\n'q ' to abort, or to continue: ", "\nAborting...\n" }; #endif /* MODUTIL_ERROR_H */