1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/* ***** 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
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,
ADD_MODULE_FAILED_STATUS_ERR,
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\".\n",
"ERROR: Failed to add module \"%s\". Probable cause : \"%s\".\n",
"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 <enter>' to abort, or <enter> to continue: ",
"\nAborting...\n"
};
#endif /* MODUTIL_ERROR_H */
|