1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  * Copyright 2018, Joyent, Inc.
25  */
26 
27 #ifndef _KERNELGLOBAL_H
28 #define	_KERNELGLOBAL_H
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
34 #include <sys/crypto/common.h>
35 #include <security/cryptoki.h>
36 #include <security/pkcs11t.h>
37 #include <cryptoutil.h>
38 #include "kernelObject.h"
39 
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;
45 
46 extern kmh_elem_t **kernel_mechhash;
47 extern boolean_t kernel_initialized;
48 extern int kernel_fd;
49 
50 #define	KMECH_HASHTABLE_SIZE	67
51 
52 #define	CRYPTO_DEVICE		"/dev/crypto"
53 
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
61 
62 
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
70 
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)
74 
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 *);
100 
101 void p11_to_kernel_ccm_params(const CK_CCM_PARAMS *, CK_AES_CCM_PARAMS *);
102 
103 #ifdef	__cplusplus
104 }
105 #endif
106 
107 #endif /* _KERNELGLOBAL_H */
108