xref: /titanic_51/usr/src/lib/libcryptoutil/common/cryptoutil.h (revision ccd81fdda071e031209c777983199d191c35b0a2)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
599ebb4caSwyllys  * Common Development and Distribution License (the "License").
699ebb4caSwyllys  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
20*ccd81fddSJan Pechanec  *
21*ccd81fddSJan Pechanec  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
227c478bd9Sstevel@tonic-gate  */
237c478bd9Sstevel@tonic-gate 
247c478bd9Sstevel@tonic-gate #ifndef _CRYPTOUTIL_H
257c478bd9Sstevel@tonic-gate #define	_CRYPTOUTIL_H
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifdef __cplusplus
287c478bd9Sstevel@tonic-gate extern "C" {
297c478bd9Sstevel@tonic-gate #endif
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #include <sys/types.h>
327c478bd9Sstevel@tonic-gate #include <syslog.h>
337c478bd9Sstevel@tonic-gate #include <security/cryptoki.h>
347c478bd9Sstevel@tonic-gate #include <sys/param.h>
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #define	LOG_STDERR	-1
377c478bd9Sstevel@tonic-gate #define	SUCCESS		0
387c478bd9Sstevel@tonic-gate #define	FAILURE		1
397c478bd9Sstevel@tonic-gate #define	MECH_ID_HEX_LEN	11	/* length of mechanism id in hex form */
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #define	_PATH_PKCS11_CONF	"/etc/crypto/pkcs11.conf"
42b5a2d845SHai-May Chao #define	_PATH_KCF_CONF		"/etc/crypto/kcf.conf"
437c478bd9Sstevel@tonic-gate #define	_PATH_KCFD_LOCK		"/var/run/kcfd.lock"
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /* $ISA substitution for parsing pkcs11.conf data */
467c478bd9Sstevel@tonic-gate #define	PKCS11_ISA	"/$ISA/"
477c478bd9Sstevel@tonic-gate #if defined(_LP64)
487c478bd9Sstevel@tonic-gate #define	PKCS11_ISA_DIR	"/64/"
497c478bd9Sstevel@tonic-gate #else	/* !_LP64 */
507c478bd9Sstevel@tonic-gate #define	PKCS11_ISA_DIR	"/"
517c478bd9Sstevel@tonic-gate #endif
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate /* keywords and delimiters for parsing configuration files */
547c478bd9Sstevel@tonic-gate #define	SEP_COLON	":"
557c478bd9Sstevel@tonic-gate #define	SEP_SEMICOLON	";"
567c478bd9Sstevel@tonic-gate #define	SEP_EQUAL	"="
577c478bd9Sstevel@tonic-gate #define	SEP_COMMA	","
587c478bd9Sstevel@tonic-gate #define	METASLOT_KEYWORD	"metaslot"
59b5a2d845SHai-May Chao #define	FIPS_KEYWORD	"fips-140"
607c478bd9Sstevel@tonic-gate #define	EF_DISABLED	"disabledlist="
617c478bd9Sstevel@tonic-gate #define	EF_ENABLED	"enabledlist="
627c478bd9Sstevel@tonic-gate #define	EF_NORANDOM	"NO_RANDOM"
637c478bd9Sstevel@tonic-gate #define	METASLOT_TOKEN	"metaslot_token="
647c478bd9Sstevel@tonic-gate #define	METASLOT_SLOT	"metaslot_slot="
657c478bd9Sstevel@tonic-gate #define	METASLOT_STATUS	"metaslot_status="
66b5a2d845SHai-May Chao #define	EF_FIPS_STATUS	"fips_status="
677c478bd9Sstevel@tonic-gate #define	METASLOT_AUTO_KEY_MIGRATE	"metaslot_auto_key_migrate="
68b5a2d845SHai-May Chao #define	ENABLED_KEYWORD		"enabled"
69b5a2d845SHai-May Chao #define	DISABLED_KEYWORD	"disabled"
707c478bd9Sstevel@tonic-gate #define	SLOT_DESCRIPTION_SIZE	64
717c478bd9Sstevel@tonic-gate #define	TOKEN_LABEL_SIZE	32
721c9bd843Sdinak #define	TOKEN_MANUFACTURER_SIZE	32
731c9bd843Sdinak #define	TOKEN_SERIAL_SIZE	16
74b5a2d845SHai-May Chao #define	CRYPTO_FIPS_MODE_DISABLED	0
75b5a2d845SHai-May Chao #define	CRYPTO_FIPS_MODE_ENABLED	1
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate /*
787c478bd9Sstevel@tonic-gate  * Define the following softtoken values that are used by softtoken
797c478bd9Sstevel@tonic-gate  * library, cryptoadm and pktool command.
807c478bd9Sstevel@tonic-gate  */
817c478bd9Sstevel@tonic-gate #define	SOFT_SLOT_DESCRIPTION	\
827c478bd9Sstevel@tonic-gate 			"Sun Crypto Softtoken            " \
837c478bd9Sstevel@tonic-gate 			"                                "
847c478bd9Sstevel@tonic-gate #define	SOFT_TOKEN_LABEL	"Sun Software PKCS#11 softtoken  "
857c478bd9Sstevel@tonic-gate #define	SOFT_TOKEN_SERIAL	"                "
867c478bd9Sstevel@tonic-gate #define	SOFT_MANUFACTURER_ID	"Sun Microsystems, Inc.          "
877c478bd9Sstevel@tonic-gate #define	SOFT_DEFAULT_PIN	"changeme"
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate typedef char libname_t[MAXPATHLEN];
907c478bd9Sstevel@tonic-gate typedef char midstr_t[MECH_ID_HEX_LEN];
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate typedef struct umechlist {
937c478bd9Sstevel@tonic-gate 	midstr_t		name;	/* mechanism name in hex form */
947c478bd9Sstevel@tonic-gate 	struct umechlist	*next;
957c478bd9Sstevel@tonic-gate } umechlist_t;
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate typedef struct uentry {
987c478bd9Sstevel@tonic-gate 	libname_t	name;
997c478bd9Sstevel@tonic-gate 	boolean_t	flag_norandom; /* TRUE if random is disabled */
1007c478bd9Sstevel@tonic-gate 	boolean_t	flag_enabledlist; /* TRUE if an enabledlist */
1017c478bd9Sstevel@tonic-gate 	umechlist_t	*policylist; /* disabledlist or enabledlist */
1027c478bd9Sstevel@tonic-gate 	boolean_t	flag_metaslot_enabled; /* TRUE if metaslot's enabled */
1037c478bd9Sstevel@tonic-gate 	boolean_t	flag_metaslot_auto_key_migrate;
1047c478bd9Sstevel@tonic-gate 	CK_UTF8CHAR	metaslot_ks_slot[SLOT_DESCRIPTION_SIZE + 1];
1057c478bd9Sstevel@tonic-gate 	CK_UTF8CHAR	metaslot_ks_token[TOKEN_LABEL_SIZE + 1];
1067c478bd9Sstevel@tonic-gate 	int 		count;
107d616ad8eSHai-May Chao 	boolean_t	flag_fips_enabled;
1087c478bd9Sstevel@tonic-gate } uentry_t;
1097c478bd9Sstevel@tonic-gate 
1107c478bd9Sstevel@tonic-gate typedef struct uentrylist {
1117c478bd9Sstevel@tonic-gate 	uentry_t	*puent;
1127c478bd9Sstevel@tonic-gate 	struct uentrylist	*next;
1137c478bd9Sstevel@tonic-gate } uentrylist_t;
1147c478bd9Sstevel@tonic-gate 
115*ccd81fddSJan Pechanec /* Return codes for pkcs11_parse_uri() */
116*ccd81fddSJan Pechanec #define	PK11_URI_OK		0
117*ccd81fddSJan Pechanec #define	PK11_URI_INVALID	1
118*ccd81fddSJan Pechanec #define	PK11_MALLOC_ERROR	2
119*ccd81fddSJan Pechanec #define	PK11_URI_VALUE_OVERFLOW	3
120*ccd81fddSJan Pechanec #define	PK11_NOT_PKCS11_URI	4
121*ccd81fddSJan Pechanec 
122*ccd81fddSJan Pechanec /*
123*ccd81fddSJan Pechanec  * There is no limit for the attribute length in the spec. 256 bytes should be
124*ccd81fddSJan Pechanec  * enough for the object name.
125*ccd81fddSJan Pechanec  */
126*ccd81fddSJan Pechanec #define	PK11_MAX_OBJECT_LEN		256
127*ccd81fddSJan Pechanec /*
128*ccd81fddSJan Pechanec  * CKA_ID is of type "byte array" which can be of arbitrary length. 256 bytes
129*ccd81fddSJan Pechanec  * should be sufficient though.
130*ccd81fddSJan Pechanec  */
131*ccd81fddSJan Pechanec #define	PK11_MAX_ID_LEN			256
132*ccd81fddSJan Pechanec 
133*ccd81fddSJan Pechanec /* Structure for the PKCS#11 URI. */
134*ccd81fddSJan Pechanec typedef struct pkcs11_uri_t {
135*ccd81fddSJan Pechanec 	/* CKA_LABEL attribute to the C_FindObjectsInit function. */
136*ccd81fddSJan Pechanec 	CK_UTF8CHAR_PTR	object;
137*ccd81fddSJan Pechanec 	/*
138*ccd81fddSJan Pechanec 	 * CKA_CLASS attribute to the C_FindObjectsInit function. The
139*ccd81fddSJan Pechanec 	 * "objecttype" URI attribute can have a value one of "private",
140*ccd81fddSJan Pechanec 	 * "public", "cert", "secretkey", and "data". The "objecttype" field can
141*ccd81fddSJan Pechanec 	 * have a value of CKO_PUBLIC_KEY, CKO_PRIVATE_KEY, CKO_CERTIFICATE,
142*ccd81fddSJan Pechanec 	 * CKO_SECRET_KEY, and CKO_DATA. This attribute cannot be empty in the
143*ccd81fddSJan Pechanec 	 * URI.
144*ccd81fddSJan Pechanec 	 */
145*ccd81fddSJan Pechanec 	CK_ULONG	objecttype;
146*ccd81fddSJan Pechanec 	/* CKO_DATA is 0 so we need this flag. Not part of the URI itself. */
147*ccd81fddSJan Pechanec 	boolean_t	objecttype_present;
148*ccd81fddSJan Pechanec 	/*
149*ccd81fddSJan Pechanec 	 * Token, manufufacturer, serial and model are of fixed size length in
150*ccd81fddSJan Pechanec 	 * the specification. We allocate memory on the fly to distinguish
151*ccd81fddSJan Pechanec 	 * between an attribute not present and an empty value. We check for
152*ccd81fddSJan Pechanec 	 * overflows. We always terminate the string with '\0' even when that is
153*ccd81fddSJan Pechanec 	 * not used in the PKCS#11's CK_TOKEN_INFO structure (fields are padded
154*ccd81fddSJan Pechanec 	 * with spaces).
155*ccd81fddSJan Pechanec 	 */
156*ccd81fddSJan Pechanec 	/* Token label from CK_TOKEN_INFO. */
157*ccd81fddSJan Pechanec 	CK_UTF8CHAR_PTR	token;
158*ccd81fddSJan Pechanec 	/* ManufacturerID from CK_TOKEN_INFO. */
159*ccd81fddSJan Pechanec 	CK_UTF8CHAR_PTR	manuf;
160*ccd81fddSJan Pechanec 	/* SerialNumber from CK_TOKEN_INFO. */
161*ccd81fddSJan Pechanec 	CK_CHAR_PTR	serial;
162*ccd81fddSJan Pechanec 	/* Model from CK_TOKEN_INFO. */
163*ccd81fddSJan Pechanec 	CK_UTF8CHAR_PTR	model;
164*ccd81fddSJan Pechanec 	/* This is a byte array, we need a length parameter as well. */
165*ccd81fddSJan Pechanec 	CK_BYTE_PTR	id;
166*ccd81fddSJan Pechanec 	int		id_len;
167*ccd81fddSJan Pechanec 	/*
168*ccd81fddSJan Pechanec 	 * Location of the file with a token PIN. Application can overload this,
169*ccd81fddSJan Pechanec 	 * eg. "/bin/askpass|" may mean to read the PIN from a command. However,
170*ccd81fddSJan Pechanec 	 * the pkcs11_parse_uri() function does not interpret this field in any
171*ccd81fddSJan Pechanec 	 * way.
172*ccd81fddSJan Pechanec 	 */
173*ccd81fddSJan Pechanec 	char		*pinfile;
174*ccd81fddSJan Pechanec } pkcs11_uri_t;
175*ccd81fddSJan Pechanec 
1767c478bd9Sstevel@tonic-gate extern void cryptodebug(const char *fmt, ...);
1777c478bd9Sstevel@tonic-gate extern void cryptoerror(int priority, const char *fmt, ...);
1787c478bd9Sstevel@tonic-gate extern void cryptodebug_init(const char *prefix);
179a7e661a2SAnthony Scarpino extern void cryptoerror_off();
180a7e661a2SAnthony Scarpino extern void cryptoerror_on();
1817c478bd9Sstevel@tonic-gate 
1822321aa36Sda73024 extern const char *pkcs11_mech2str(CK_MECHANISM_TYPE mech);
1837c478bd9Sstevel@tonic-gate extern CK_RV pkcs11_str2mech(char *mech_str, CK_MECHANISM_TYPE_PTR mech);
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate extern int get_pkcs11conf_info(uentrylist_t **);
1867c478bd9Sstevel@tonic-gate extern umechlist_t *create_umech(char *);
1877c478bd9Sstevel@tonic-gate extern void free_umechlist(umechlist_t *);
1887c478bd9Sstevel@tonic-gate extern void free_uentrylist(uentrylist_t *);
1897c478bd9Sstevel@tonic-gate extern void free_uentry(uentry_t *);
19099ebb4caSwyllys extern uentry_t *getent_uef(char *);
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate extern void tohexstr(uchar_t *bytes, size_t blen, char *hexstr, size_t hexlen);
193a7e661a2SAnthony Scarpino extern int hexstr_to_bytes(char *hexstr, size_t hexlen, uchar_t **bytes,
194a7e661a2SAnthony Scarpino     size_t *blen);
1957c478bd9Sstevel@tonic-gate extern CK_RV pkcs11_mech2keytype(CK_MECHANISM_TYPE mech_type,
1967c478bd9Sstevel@tonic-gate     CK_KEY_TYPE *ktype);
19726ff1ce9Sdinak extern CK_RV pkcs11_mech2keygen(CK_MECHANISM_TYPE mech_type,
19826ff1ce9Sdinak     CK_MECHANISM_TYPE *gen_mech);
1997c478bd9Sstevel@tonic-gate extern char *pkcs11_strerror(CK_RV rv);
2007c478bd9Sstevel@tonic-gate 
20199ebb4caSwyllys extern int
20299ebb4caSwyllys get_metaslot_info(boolean_t  *status_enabled, boolean_t *migrate_enabled,
20399ebb4caSwyllys     char **objectstore_slot_info, char **objectstore_token_info);
20499ebb4caSwyllys 
20599ebb4caSwyllys extern char *get_fullpath(char *dir, char *filepath);
20699ebb4caSwyllys extern int str2lifetime(char *ltimestr, uint32_t *ltime);
20799ebb4caSwyllys 
2081c9bd843Sdinak extern char *pkcs11_default_token(void);
2091c9bd843Sdinak extern int pkcs11_get_pass(char *token_name, char **pdata, size_t *psize,
2101c9bd843Sdinak     size_t min_psize, boolean_t with_confirmation);
2111c9bd843Sdinak 
2127b79d846SDina K Nimeh extern int pkcs11_seed_urandom(void *sbuf, size_t slen);
2137b79d846SDina K Nimeh extern int pkcs11_get_random(void *dbuf, size_t dlen);
2147b79d846SDina K Nimeh extern int pkcs11_get_urandom(void *dbuf, size_t dlen);
2157b79d846SDina K Nimeh extern int pkcs11_get_nzero_urandom(void *dbuf, size_t dlen);
2167b79d846SDina K Nimeh extern void pkcs11_close_random(void);
2177b79d846SDina K Nimeh extern void pkcs11_close_urandom(void);
2187b79d846SDina K Nimeh extern void pkcs11_close_urandom_seed(void);
2191c9bd843Sdinak extern int pkcs11_read_data(char *filename, void **dbuf, size_t *dlen);
2201c9bd843Sdinak 
22119193bb6SDina K Nimeh extern int open_nointr(const char *path, int oflag, ...);
22219193bb6SDina K Nimeh extern ssize_t readn_nointr(int fd, void *dbuf, size_t dlen);
22319193bb6SDina K Nimeh extern ssize_t writen_nointr(int fd, void *dbuf, size_t dlen);
224b5a2d845SHai-May Chao extern int update_conf(char *conf_file, char *entry);
225b5a2d845SHai-May Chao 
226b5a2d845SHai-May Chao extern CK_RV get_fips_mode(int *);
22719193bb6SDina K Nimeh 
228*ccd81fddSJan Pechanec extern int pkcs11_parse_uri(const char *str, pkcs11_uri_t *uri);
229*ccd81fddSJan Pechanec extern void pkcs11_free_uri(pkcs11_uri_t *uri);
230*ccd81fddSJan Pechanec 
2317c478bd9Sstevel@tonic-gate #ifdef __cplusplus
2327c478bd9Sstevel@tonic-gate }
2337c478bd9Sstevel@tonic-gate #endif
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate #endif /* _CRYPTOUTIL_H */
236