Coverage Report

Created: 2025-12-10 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/property/property_query.c
Line
Count
Source
1
/*
2
 * Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include "internal/propertyerr.h"
11
#include "internal/property.h"
12
#include "property_local.h"
13
14
static int property_idx_cmp(const void *keyp, const void *compare)
15
0
{
16
0
    OSSL_PROPERTY_IDX key = *(const OSSL_PROPERTY_IDX *)keyp;
17
0
    const OSSL_PROPERTY_DEFINITION *defn = (const OSSL_PROPERTY_DEFINITION *)compare;
18
19
0
    return key - defn->name_idx;
20
0
}
21
22
const OSSL_PROPERTY_DEFINITION *
23
ossl_property_find_property(const OSSL_PROPERTY_LIST *list,
24
    OSSL_LIB_CTX *libctx, const char *name)
25
0
{
26
0
    OSSL_PROPERTY_IDX name_idx;
27
28
0
    if (list == NULL || name == NULL
29
0
        || (name_idx = ossl_property_name(libctx, name, 0)) == 0)
30
0
        return NULL;
31
32
0
    return ossl_bsearch(&name_idx, list->properties, list->num_properties,
33
0
        sizeof(*list->properties), &property_idx_cmp, 0);
34
0
}
35
36
OSSL_PROPERTY_TYPE ossl_property_get_type(const OSSL_PROPERTY_DEFINITION *prop)
37
0
{
38
0
    return prop->type;
39
0
}
40
41
const char *ossl_property_get_string_value(OSSL_LIB_CTX *libctx,
42
    const OSSL_PROPERTY_DEFINITION *prop)
43
0
{
44
0
    const char *value = NULL;
45
46
0
    if (prop != NULL && prop->type == OSSL_PROPERTY_TYPE_STRING)
47
0
        value = ossl_property_value_str(libctx, prop->v.str_val);
48
0
    return value;
49
0
}
50
51
int64_t ossl_property_get_number_value(const OSSL_PROPERTY_DEFINITION *prop)
52
0
{
53
0
    int64_t value = 0;
54
55
0
    if (prop != NULL && prop->type == OSSL_PROPERTY_TYPE_NUMBER)
56
0
        value = prop->v.int_val;
57
0
    return value;
58
0
}
59
60
/* Does a property query have any optional clauses */
61
int ossl_property_has_optional(const OSSL_PROPERTY_LIST *query)
62
206
{
63
206
    return query->has_optional ? 1 : 0;
64
206
}
65
66
int ossl_property_is_enabled(OSSL_LIB_CTX *ctx, const char *property_name,
67
    const OSSL_PROPERTY_LIST *prop_list)
68
0
{
69
0
    const OSSL_PROPERTY_DEFINITION *prop;
70
71
0
    prop = ossl_property_find_property(prop_list, ctx, property_name);
72
    /* Do a separate check for override as it does not set type */
73
0
    if (prop == NULL || prop->optional || prop->oper == OSSL_PROPERTY_OVERRIDE)
74
0
        return 0;
75
0
    return (prop->type == OSSL_PROPERTY_TYPE_STRING
76
0
        && ((prop->oper == OSSL_PROPERTY_OPER_EQ
77
0
                && prop->v.str_val == OSSL_PROPERTY_TRUE)
78
0
            || (prop->oper == OSSL_PROPERTY_OPER_NE
79
0
                && prop->v.str_val != OSSL_PROPERTY_TRUE)));
80
0
}