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 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 22 * Use is subject to license terms. 23 */ 24 #ifndef _UTIL_H 25 #define _UTIL_H 26 27 #ifdef __cplusplus 28 extern "C" { 29 #endif 30 31 #include <kmfapiP.h> 32 33 34 typedef struct _policy_list { 35 KMF_POLICY_RECORD plc; 36 struct _policy_list *next; 37 } POLICY_LIST; 38 39 void free_policy_list(POLICY_LIST *); 40 int getopt_av(int, char * const *, const char *); 41 42 int load_policies(char *, POLICY_LIST **); 43 int get_boolean(char *); 44 char *get_string(char *, int *err_flag); 45 int parseEKUOIDs(char *, KMF_POLICY_RECORD *); 46 int parseEKUNames(char *, KMF_POLICY_RECORD *); 47 uint16_t parseKUlist(char *); 48 void print_sanity_error(KMF_RETURN); 49 50 conf_entry_t *get_keystore_entry(char *); 51 52 #define KC_OK 0 53 #define KC_ERR_USAGE 1 54 #define KC_ERR_LOADDB 2 55 #define KC_ERR_FIND_POLICY 3 56 #define KC_ERR_DELETE_POLICY 4 57 #define KC_ERR_ADD_POLICY 5 58 #define KC_ERR_VERIFY_POLICY 6 59 #define KC_ERR_INCOMPLETE_POLICY 7 60 #define KC_ERR_MEMORY 8 61 #define KC_ERR_ACCESS 9 62 #define KC_ERR_INSTALL 10 63 #define KC_ERR_UNINSTALL 11 64 #define KC_ERR_MODIFY_PLUGIN 12 65 66 #define CONF_TEMPFILE "/etc/crypto/kmfXXXXXX" 67 68 #ifdef __cplusplus 69 } 70 #endif 71 #endif /* _UTIL_H */ 72