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