michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: /* michael@0: * this file maps PKCS11 Errors into SECErrors michael@0: * This is an information reducing process, since most errors are reflected michael@0: * back to the user (the user doesn't care about invalid flags, or active michael@0: * operations). If any of these errors need more detail in the upper layers michael@0: * which call PK11 library functions, we can add more SEC_ERROR_XXX functions michael@0: * and change there mappings here. michael@0: * michael@0: * Some PKCS11 errors are mapped to SEC_ERROR_LIBRARY_FAILURE intentionally michael@0: * because they indicate that there is a bug in the library (either NSS or michael@0: * the token). michael@0: */ michael@0: #include "pkcs11t.h" michael@0: #include "pk11func.h" michael@0: #include "secerr.h" michael@0: #include "prerror.h" michael@0: michael@0: #ifdef PK11_ERROR_USE_ARRAY michael@0: michael@0: /* michael@0: * build a static array of entries... michael@0: */ michael@0: static struct { michael@0: CK_RV pk11_error; michael@0: int sec_error; michael@0: } pk11_error_map = { michael@0: #define MAPERROR(x,y) {x, y}, michael@0: michael@0: #else michael@0: michael@0: /* the default is to use a big switch statement */ michael@0: int michael@0: PK11_MapError(CK_RV rv) { michael@0: michael@0: switch (rv) { michael@0: #define MAPERROR(x,y) case x: return y; michael@0: michael@0: #endif michael@0: michael@0: /* the guts mapping */ michael@0: MAPERROR(CKR_OK, 0) michael@0: MAPERROR(CKR_CANCEL, SEC_ERROR_IO) michael@0: MAPERROR(CKR_HOST_MEMORY, SEC_ERROR_NO_MEMORY) michael@0: MAPERROR(CKR_SLOT_ID_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_ARGUMENTS_BAD, SEC_ERROR_INVALID_ARGS) michael@0: MAPERROR(CKR_ATTRIBUTE_READ_ONLY, SEC_ERROR_READ_ONLY) michael@0: MAPERROR(CKR_ATTRIBUTE_SENSITIVE, SEC_ERROR_IO) /* XX SENSITIVE */ michael@0: MAPERROR(CKR_ATTRIBUTE_TYPE_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_ATTRIBUTE_VALUE_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_BUFFER_TOO_SMALL, SEC_ERROR_OUTPUT_LEN) michael@0: MAPERROR(CKR_DATA_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_DATA_LEN_RANGE, SEC_ERROR_INPUT_LEN) michael@0: MAPERROR(CKR_DEVICE_ERROR, SEC_ERROR_PKCS11_DEVICE_ERROR) michael@0: MAPERROR(CKR_DEVICE_MEMORY, SEC_ERROR_NO_MEMORY) michael@0: MAPERROR(CKR_DEVICE_REMOVED, SEC_ERROR_NO_TOKEN) michael@0: MAPERROR(CKR_DOMAIN_PARAMS_INVALID, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_ENCRYPTED_DATA_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_ENCRYPTED_DATA_LEN_RANGE, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_FUNCTION_CANCELED, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_FUNCTION_FAILED, SEC_ERROR_PKCS11_FUNCTION_FAILED) michael@0: MAPERROR(CKR_FUNCTION_NOT_PARALLEL, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_FUNCTION_NOT_SUPPORTED, PR_NOT_IMPLEMENTED_ERROR) michael@0: MAPERROR(CKR_GENERAL_ERROR, SEC_ERROR_PKCS11_GENERAL_ERROR) michael@0: MAPERROR(CKR_KEY_HANDLE_INVALID, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_KEY_SIZE_RANGE, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_KEY_TYPE_INCONSISTENT, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_MECHANISM_INVALID, SEC_ERROR_INVALID_ALGORITHM) michael@0: MAPERROR(CKR_MECHANISM_PARAM_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_NO_EVENT, SEC_ERROR_NO_EVENT) michael@0: MAPERROR(CKR_OBJECT_HANDLE_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_OPERATION_ACTIVE, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_OPERATION_NOT_INITIALIZED,SEC_ERROR_LIBRARY_FAILURE ) michael@0: MAPERROR(CKR_PIN_INCORRECT, SEC_ERROR_BAD_PASSWORD) michael@0: MAPERROR(CKR_PIN_INVALID, SEC_ERROR_INVALID_PASSWORD) michael@0: MAPERROR(CKR_PIN_LEN_RANGE, SEC_ERROR_INVALID_PASSWORD) michael@0: MAPERROR(CKR_PIN_EXPIRED, SEC_ERROR_EXPIRED_PASSWORD) michael@0: MAPERROR(CKR_PIN_LOCKED, SEC_ERROR_LOCKED_PASSWORD) michael@0: MAPERROR(CKR_SESSION_CLOSED, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_SESSION_COUNT, SEC_ERROR_NO_MEMORY) /* XXXX? */ michael@0: MAPERROR(CKR_SESSION_HANDLE_INVALID, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_SESSION_PARALLEL_NOT_SUPPORTED, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_SESSION_READ_ONLY, SEC_ERROR_READ_ONLY) michael@0: MAPERROR(CKR_SIGNATURE_INVALID, SEC_ERROR_BAD_SIGNATURE) michael@0: MAPERROR(CKR_SIGNATURE_LEN_RANGE, SEC_ERROR_BAD_SIGNATURE) michael@0: MAPERROR(CKR_TEMPLATE_INCOMPLETE, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_TEMPLATE_INCONSISTENT, SEC_ERROR_BAD_DATA) michael@0: MAPERROR(CKR_TOKEN_NOT_PRESENT, SEC_ERROR_NO_TOKEN) michael@0: MAPERROR(CKR_TOKEN_NOT_RECOGNIZED, SEC_ERROR_IO) michael@0: MAPERROR(CKR_TOKEN_WRITE_PROTECTED, SEC_ERROR_READ_ONLY) michael@0: MAPERROR(CKR_UNWRAPPING_KEY_HANDLE_INVALID, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_UNWRAPPING_KEY_SIZE_RANGE, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_UNWRAPPING_KEY_TYPE_INCONSISTENT, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_USER_ALREADY_LOGGED_IN, 0) michael@0: MAPERROR(CKR_USER_NOT_LOGGED_IN, SEC_ERROR_TOKEN_NOT_LOGGED_IN) michael@0: MAPERROR(CKR_USER_PIN_NOT_INITIALIZED, SEC_ERROR_NO_TOKEN) michael@0: MAPERROR(CKR_USER_TYPE_INVALID, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_WRAPPED_KEY_INVALID, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_WRAPPED_KEY_LEN_RANGE, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_WRAPPING_KEY_HANDLE_INVALID, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_WRAPPING_KEY_SIZE_RANGE, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_WRAPPING_KEY_TYPE_INCONSISTENT, SEC_ERROR_INVALID_KEY) michael@0: MAPERROR(CKR_VENDOR_DEFINED, SEC_ERROR_LIBRARY_FAILURE) michael@0: MAPERROR(CKR_NETSCAPE_CERTDB_FAILED, SEC_ERROR_BAD_DATABASE) michael@0: MAPERROR(CKR_NETSCAPE_KEYDB_FAILED, SEC_ERROR_BAD_DATABASE) michael@0: MAPERROR(CKR_CANT_LOCK, SEC_ERROR_INCOMPATIBLE_PKCS11) michael@0: michael@0: #ifdef PK11_ERROR_USE_ARRAY michael@0: }; michael@0: michael@0: int michael@0: PK11_MapError(CK_RV rv) { michael@0: int size = sizeof(pk11_error_map)/sizeof(pk11_error_map[0]); michael@0: michael@0: for (i=0; i < size; i++) { michael@0: if (pk11_error_map[i].pk11_error == rv) { michael@0: return pk11_error_map[i].sec_error; michael@0: } michael@0: } michael@0: return SEC_ERROR_UNKNOWN_PKCS11_ERROR; michael@0: } michael@0: michael@0: michael@0: #else michael@0: michael@0: default: michael@0: break; michael@0: } michael@0: return SEC_ERROR_UNKNOWN_PKCS11_ERROR; michael@0: } michael@0: michael@0: michael@0: #endif