]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/property.h
property: check return values from the property locking calls.
[thirdparty/openssl.git] / include / internal / property.h
CommitLineData
1bdbdaff 1/*
a28d06f3 2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
1bdbdaff
P
3 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
4 *
5 * Licensed under the Apache License 2.0 (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
9 */
10
ae4186b0
DMSP
11#ifndef OSSL_INTERNAL_PROPERTY_H
12# define OSSL_INTERNAL_PROPERTY_H
3a111aad 13# pragma once
1bdbdaff 14
3a111aad 15# include "internal/cryptlib.h"
1aedc35f 16
1bdbdaff 17typedef struct ossl_method_store_st OSSL_METHOD_STORE;
1793d270 18typedef struct ossl_property_list_st OSSL_PROPERTY_LIST;
1bdbdaff 19
505f4660 20/* Initialisation */
b4250010 21int ossl_property_parse_init(OSSL_LIB_CTX *ctx);
505f4660 22
1793d270 23/* Property definition parser */
b4250010 24OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn);
1793d270 25/* Property query parser */
1e08f3ba
P
26OSSL_PROPERTY_LIST *ossl_parse_query(OSSL_LIB_CTX *ctx, const char *s,
27 int create_values);
1793d270
RL
28/* Property checker of query vs definition */
29int ossl_property_match_count(const OSSL_PROPERTY_LIST *query,
30 const OSSL_PROPERTY_LIST *defn);
b4250010 31int ossl_property_is_enabled(OSSL_LIB_CTX *ctx, const char *property_name,
e0624f0d 32 const OSSL_PROPERTY_LIST *prop_list);
b305452f
RL
33/* Free a parsed property list */
34void ossl_property_free(OSSL_PROPERTY_LIST *p);
35
1793d270 36
1bdbdaff 37/* Implementation store functions */
b4250010 38OSSL_METHOD_STORE *ossl_method_store_new(OSSL_LIB_CTX *ctx);
1bdbdaff 39void ossl_method_store_free(OSSL_METHOD_STORE *store);
c1d56231
RL
40int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov,
41 int nid, const char *properties, void *method,
42 int (*method_up_ref)(void *),
43 void (*method_destruct)(void *));
44int ossl_method_store_remove(OSSL_METHOD_STORE *store, int nid,
45 const void *method);
1bdbdaff 46int ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid,
f9e504e8
P
47 const char *prop_query, void **method);
48
49/* Get the global properties associate with the specified library context */
b4250010
DMSP
50OSSL_PROPERTY_LIST **ossl_ctx_global_properties(OSSL_LIB_CTX *ctx,
51 int loadconfig);
1bdbdaff 52
c2969ff6 53/* property query cache functions */
1bdbdaff
P
54int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, int nid,
55 const char *prop_query, void **result);
56int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, int nid,
bdbf2df2
P
57 const char *prop_query, void *result,
58 int (*method_up_ref)(void *),
59 void (*method_destruct)(void *));
04cb5ec0 60
860ecfd7 61__owur int ossl_method_store_flush_cache(OSSL_METHOD_STORE *store, int all);
f9e504e8
P
62
63/* Merge two property queries together */
64OSSL_PROPERTY_LIST *ossl_property_merge(const OSSL_PROPERTY_LIST *a,
65 const OSSL_PROPERTY_LIST *b);
66
1bdbdaff 67#endif