9876 Move crypto2pkcs11_error_number to libcryptoutil
[unleashed.git] / usr / src / lib / pkcs11 / pkcs11_kernel / common / kernelGlobal.h
blob8cad200b837b7366722591bf0068f1b340f57fe3
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 * Copyright 2018, Joyent, Inc.
27 #ifndef _KERNELGLOBAL_H
28 #define _KERNELGLOBAL_H
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
34 #include <sys/crypto/common.h>
35 #include <security/cryptoki.h>
36 #include <security/pkcs11t.h>
37 #include <cryptoutil.h>
38 #include "kernelObject.h"
40 typedef struct kmh_elem {
41 CK_MECHANISM_TYPE type;
42 crypto_mech_type_t kmech; /* kCF mech number */
43 struct kmh_elem *knext; /* Next in hash chain */
44 } kmh_elem_t;
46 extern kmh_elem_t **kernel_mechhash;
47 extern boolean_t kernel_initialized;
48 extern int kernel_fd;
50 #define KMECH_HASHTABLE_SIZE 67
52 #define CRYPTO_DEVICE "/dev/crypto"
54 /* CK_INFO: Information about cryptoki */
55 #define CRYPTOKI_VERSION_MAJOR 2
56 #define CRYPTOKI_VERSION_MINOR 40
57 #define MANUFACTURER_ID "Sun Microsystems, Inc. "
58 #define LIBRARY_DESCRIPTION "Sun Crypto pkcs11_kernel "
59 #define LIBRARY_VERSION_MAJOR 1
60 #define LIBRARY_VERSION_MINOR 1
63 /* CK_SLOT_INFO: Information about our slot */
64 #define SLOT_DESCRIPTION "Sun Crypto pkcs11_kernel " \
65 " "
66 #define HARDWARE_VERSION_MAJOR 0
67 #define HARDWARE_VERSION_MINOR 0
68 #define FIRMWARE_VERSION_MAJOR 0
69 #define FIRMWARE_VERSION_MINOR 0
71 #define INPLACE_MECHANISM(m) ((m) == CKM_DES_ECB || (m) == CKM_DES_CBC || \
72 (m) == CKM_DES3_ECB || (m) == CKM_DES3_CBC || (m) == CKM_AES_ECB || \
73 (m) == CKM_AES_CBC || (m) == CKM_RC4 || (m) == CKM_BLOWFISH_CBC)
75 CK_RV kernel_mech(CK_MECHANISM_TYPE, crypto_mech_type_t *);
76 unsigned char *get_symmetric_key_value(kernel_object_t *);
77 CK_RV get_rsa_public_key(kernel_object_t *, crypto_key_t *);
78 CK_RV get_rsa_private_key(kernel_object_t *, crypto_key_t *);
79 CK_RV get_dsa_public_key(kernel_object_t *, crypto_key_t *);
80 CK_RV get_dsa_private_key(kernel_object_t *, crypto_key_t *);
81 CK_RV get_ec_public_key(kernel_object_t *, crypto_key_t *);
82 CK_RV get_ec_private_key(kernel_object_t *, crypto_key_t *);
83 void free_key_attributes(crypto_key_t *);
84 void get_ulong_attr_from_template(CK_ULONG *, CK_ATTRIBUTE_PTR);
85 CK_RV process_object_attributes(CK_ATTRIBUTE_PTR, CK_ULONG, caddr_t *,
86 CK_BBOOL *);
87 CK_RV get_object_attributes(CK_ATTRIBUTE_PTR, CK_ULONG, caddr_t);
88 void free_object_attributes(caddr_t, CK_ULONG);
89 CK_RV get_cka_private_value(kernel_session_t *, crypto_object_id_t,
90 CK_BBOOL *);
91 CK_RV process_found_objects(kernel_session_t *, CK_OBJECT_HANDLE *,
92 CK_ULONG *, crypto_object_find_update_t);
93 CK_RV get_mechanism_info(kernel_slot_t *, CK_MECHANISM_TYPE,
94 CK_MECHANISM_INFO_PTR, uint32_t *);
95 CK_RV kernel_decrypt_init(kernel_session_t *, kernel_object_t *,
96 CK_MECHANISM_PTR);
97 CK_RV kernel_decrypt(kernel_session_t *, CK_BYTE_PTR, CK_ULONG, CK_BYTE_PTR,
98 CK_ULONG_PTR);
99 CK_RV kernel_add_extra_attr(CK_ATTRIBUTE_PTR, kernel_object_t *);
101 #ifdef __cplusplus
103 #endif
105 #endif /* _KERNELGLOBAL_H */