/usr/include/globus/globus_gsi_credential.h is in libglobus-gsi-credential-dev 7.9-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | /*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file globus_gsi_credential.h
* @brief Globus GSI Credential Library
* @author Sam Lang, Sam Meder
*/
#ifndef GLOBUS_INCLUDE_GLOBUS_GSI_CREDENTIAL_H
#define GLOBUS_INCLUDE_GLOBUS_GSI_CREDENTIAL_H
#include "globus_common.h"
#include "globus_error_openssl.h"
#include "globus_gsi_cred_constants.h"
#include "globus_gsi_callback.h"
#include "globus_gsi_cert_utils.h"
#include "globus_gsi_cred_constants.h"
#include "openssl/x509.h"
#include "openssl/bio.h"
#include "openssl/ssl.h"
#include "globus_error_generic.h"
#include "globus_error_openssl.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef GLOBUS_GLOBAL_DOCUMENT_SET
/**
* @mainpage Globus GSI Credential
* @copydoc globus_gsi_credential
*/
#endif
/**
* @defgroup globus_gsi_credential Globus GSI Credential
*
* The Globus GSI Credential library. This library contains functions that
* provide support for handling X.509 based PKI credentials
*
* - @ref globus_gsi_credential_activation
* - @ref globus_gsi_cred_handle
* - @ref globus_gsi_cred_handle_attrs
* - @ref globus_gsi_cred_operations
* - @ref globus_gsi_credential_constants
*/
/**
* @defgroup globus_gsi_credential_activation Activation
* @ingroup globus_gsi_credential
*
* Globus GSI Credential uses standard Globus module activation and
* deactivation. Before any Globus GSI Credential functions are called, the
* following function must be called:
*
* @code
* globus_module_activate(GLOBUS_GSI_CREDENTIAL_MODULE)
* @endcode
*
*
* This function returns GLOBUS_SUCCESS if Globus GSI Credential was
* successfully initialized, and you are therefore allowed to
* subsequently call Globus GSI Credential functions. Otherwise, an error
* code is returned, and Globus GSI Credential functions should not be
* subsequently called. This function may be called multiple times.
*
* To deactivate Globus GSI Credential, the following function must be called:
*
* @code
* globus_module_deactivate(GLOBUS_GSI_CREDENTIAL_MODULE)
* @endcode
*
* This function should be called once for each time Globus GSI Credential
* was activated.
*
*/
/** Module descriptor
* @ingroup globus_gsi_credential_activation
* @hideinitializer
*/
#define GLOBUS_GSI_CREDENTIAL_MODULE (&globus_i_gsi_credential_module)
extern
globus_module_descriptor_t globus_i_gsi_credential_module;
#define _GCRSL(s) globus_common_i18n_get_string( \
GLOBUS_GSI_CREDENTIAL_MODULE, \
s)
/**
* @defgroup globus_gsi_cred_handle Credential Handle Management
* @ingroup globus_gsi_credential
*
* Create/Destroy/Modify a GSI Credential Handle.
*
* Within the Globus GSI Credential Library, all credential operations
* require a handle parameter. Currently only one operation may be
* in progress at once per credential handle.
*
* This section defines operations to create, modify and destroy GSI
* Credential handles.
*/
/**
* @defgroup globus_gsi_cred_handle_attrs Credential Handle Attributes
* @ingroup globus_gsi_credential
*
* Create/Destroy/Modify GSI Credential Handle Attributes.
*
* Within the Globus GSI Credential Library, all credential handles
* contain a attribute structure, which in turn contains handle instance
* independent attributes.
*
* This section defines operations to create, modify and destroy GSI
* Credential handle attributes.
*/
/**
* @defgroup globus_gsi_cred_operations Credential Operations
* @ingroup globus_gsi_credential
*
* Read/Write a GSI Credential Handle.
*
* This section defines operations to read and write GSI
* Credential handles.
*/
/**
* GSI Credential Handle.
* @ingroup globus_gsi_cred_handle
*
* A GSI Credential handle keeps track of state relating to a credential.
* Handles can have immutable @ref globus_gsi_cred_handle_attrs_t "attributes"
* associated with them. All credential @link globus_gsi_cred_operations
* operations @endlink take a credential handle pointer as a parameter.
*
* @see globus_gsi_cred_handle_init(),
* globus_gsi_cred_handle_destroy(), globus_gsi_cred_handle_attrs_t
*/
typedef struct globus_l_gsi_cred_handle_s *
globus_gsi_cred_handle_t;
/**
* Credential Handle Attributes.
* @ingroup globus_gsi_cred_handle_attrs
*
* Credential handle attributes provide a set of immutable parameters
* for a credential handle
*
* @see globus_gsi_cred_handle_init
*/
#if OPENSSL_VERSION_NUMBER >= 0x10000000L
#define STACK STACK_OF(OPENSSL_STRING)
#endif
typedef struct globus_l_gsi_cred_handle_attrs_s *
globus_gsi_cred_handle_attrs_t;
globus_result_t globus_gsi_cred_handle_init(
globus_gsi_cred_handle_t * handle,
globus_gsi_cred_handle_attrs_t handle_attrs);
globus_result_t globus_gsi_cred_handle_destroy(
globus_gsi_cred_handle_t handle);
globus_result_t globus_gsi_cred_handle_copy(
globus_gsi_cred_handle_t source,
globus_gsi_cred_handle_t * dest);
globus_result_t globus_gsi_cred_handle_attrs_init(
globus_gsi_cred_handle_attrs_t * handle_attrs);
globus_result_t globus_gsi_cred_handle_attrs_destroy(
globus_gsi_cred_handle_attrs_t handle_attrs);
globus_result_t globus_gsi_cred_handle_attrs_copy(
globus_gsi_cred_handle_attrs_t source,
globus_gsi_cred_handle_attrs_t * dest);
globus_result_t
globus_gsi_cred_handle_init_ssl_context(
globus_gsi_cred_handle_t cred_handle);
globus_result_t globus_gsi_cred_read(
globus_gsi_cred_handle_t handle,
X509_NAME * desired_subject);
globus_result_t globus_gsi_cred_read_proxy(
globus_gsi_cred_handle_t handle,
const char * proxy_filename);
globus_result_t globus_gsi_cred_read_proxy_bio(
globus_gsi_cred_handle_t handle,
BIO * bio);
globus_result_t globus_gsi_cred_read_key(
globus_gsi_cred_handle_t handle,
const char * key_filename,
int (*pw_cb)());
globus_result_t globus_gsi_cred_read_cert(
globus_gsi_cred_handle_t handle,
const char * cert_filename);
globus_result_t globus_gsi_cred_read_cert_bio(
globus_gsi_cred_handle_t handle,
BIO * bio);
globus_result_t globus_gsi_cred_read_cert_buffer(
const char * pem_buf,
globus_gsi_cred_handle_t * out_handle,
X509 ** out_cert,
STACK_OF(X509) ** out_cert_chain,
char ** out_subject);
globus_result_t globus_gsi_cred_read_pkcs12(
globus_gsi_cred_handle_t handle,
const char * pkcs12_filename);
globus_result_t globus_gsi_cred_write(
globus_gsi_cred_handle_t handle,
BIO * bio);
globus_result_t globus_gsi_cred_write_proxy(
globus_gsi_cred_handle_t handle,
const char * proxy_filename);
globus_result_t
globus_gsi_cred_verify_cert_chain(
globus_gsi_cred_handle_t cred_handle,
globus_gsi_callback_data_t callback_data);
globus_result_t
globus_gsi_cred_verify_cert_chain_when(
globus_gsi_cred_handle_t cred_handle,
globus_gsi_callback_data_t callback_data,
time_t check_time);
globus_result_t globus_gsi_cred_verify(
globus_gsi_cred_handle_t handle);
globus_result_t globus_gsi_cred_get_X509_subject_name(
globus_gsi_cred_handle_t handle,
X509_NAME ** subject_name);
globus_result_t globus_gsi_cred_get_subject_name(
globus_gsi_cred_handle_t handle,
char ** subject_name);
globus_result_t globus_gsi_cred_get_policies(
globus_gsi_cred_handle_t handle,
STACK ** policies);
globus_result_t globus_gsi_cred_get_policy_languages(
globus_gsi_cred_handle_t handle,
STACK_OF(ASN1_OBJECT) ** languages);
globus_result_t globus_gsi_cred_get_path_lengths(
globus_gsi_cred_handle_t handle,
STACK_OF(ASN1_INTEGER) * integer);
globus_result_t globus_gsi_cred_get_X509_issuer_name(
globus_gsi_cred_handle_t handle,
X509_NAME ** issuer_name);
globus_result_t globus_gsi_cred_get_issuer_name(
globus_gsi_cred_handle_t handle,
char ** issuer_name);
globus_result_t globus_gsi_cred_get_X509_identity_name(
globus_gsi_cred_handle_t handle,
X509_NAME ** identity_name);
globus_result_t globus_gsi_cred_get_identity_name(
globus_gsi_cred_handle_t handle,
char ** identity_name);
globus_result_t globus_gsi_cred_set_cert(
globus_gsi_cred_handle_t handle,
X509 * cert);
globus_result_t globus_gsi_cred_set_key(
globus_gsi_cred_handle_t handle,
EVP_PKEY * key);
globus_result_t globus_gsi_cred_set_cert_chain(
globus_gsi_cred_handle_t handle,
STACK_OF(X509) * cert_chain);
globus_result_t globus_gsi_cred_get_cert(
globus_gsi_cred_handle_t handle,
X509 ** cert);
globus_result_t globus_gsi_cred_get_key(
globus_gsi_cred_handle_t handle,
EVP_PKEY ** key);
globus_result_t globus_gsi_cred_get_cert_chain(
globus_gsi_cred_handle_t handle,
STACK_OF(X509) ** cert_chain);
globus_result_t globus_gsi_cred_get_handle_attrs(
globus_gsi_cred_handle_t handle,
globus_gsi_cred_handle_attrs_t * handle_attrs);
globus_result_t globus_gsi_cred_get_lifetime(
globus_gsi_cred_handle_t handle,
time_t * lifetime);
globus_result_t globus_gsi_cred_get_goodtill(
globus_gsi_cred_handle_t handle,
time_t * goodtill);
globus_result_t globus_gsi_cred_get_cert_type(
globus_gsi_cred_handle_t handle,
globus_gsi_cert_utils_cert_type_t * type);
globus_result_t globus_gsi_cred_get_key_bits(
globus_gsi_cred_handle_t handle,
int * key_bits);
GLOBUS_DEPRECATED(
globus_result_t globus_gsi_cred_handle_attrs_set_ca_cert_dir(
globus_gsi_cred_handle_attrs_t handle_attrs,
const char * ca_cert_dir));
GLOBUS_DEPRECATED(
globus_result_t globus_gsi_cred_handle_attrs_get_ca_cert_dir(
globus_gsi_cred_handle_attrs_t handle_attrs,
char ** ca_cert_dir));
globus_result_t globus_gsi_cred_handle_attrs_set_search_order(
globus_gsi_cred_handle_attrs_t handle_attrs,
globus_gsi_cred_type_t search_order[]); /*{PROXY,USER,HOST}*/
globus_result_t globus_gsi_cred_handle_attrs_get_search_order(
globus_gsi_cred_handle_attrs_t handle_attrs,
globus_gsi_cred_type_t * search_order[]);/*{PROXY,USER,HOST}*/
#ifdef __cplusplus
}
#endif
#endif /* GLOBUS_INCLUDE_GLOBUS_GSI_CREDENTIAL_H */
|