exdatatest.c 3.0 KB
Newer Older
R
Rich Salz 已提交
1
/*
R
Rich Salz 已提交
2
 * Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8
 */
R
Rich Salz 已提交
9

10 11 12 13 14
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <openssl/crypto.h>

R
Rich Salz 已提交
15 16 17
static long saved_argl;
static void *saved_argp;
static int saved_idx;
18 19 20 21

static void exnew(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
          int idx, long argl, void *argp)
{
22 23 24 25
    OPENSSL_assert(idx == saved_idx);
    OPENSSL_assert(argl == saved_argl);
    OPENSSL_assert(argp == saved_argp);
    OPENSSL_assert(ptr == NULL);
26 27
}

R
Rich Salz 已提交
28
static int exdup(CRYPTO_EX_DATA *to, const CRYPTO_EX_DATA *from,
29 30
          void *from_d, int idx, long argl, void *argp)
{
31 32 33 34 35
    OPENSSL_assert(idx == saved_idx);
    OPENSSL_assert(argl == saved_argl);
    OPENSSL_assert(argp == saved_argp);
    OPENSSL_assert(from_d != NULL);
    return 1;
36 37 38 39 40
}

static void exfree(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
            int idx, long argl, void *argp)
{
41 42 43
    OPENSSL_assert(idx == saved_idx);
    OPENSSL_assert(argl == saved_argl);
    OPENSSL_assert(argp == saved_argp);
44 45 46 47 48
}

typedef struct myobj_st {
    CRYPTO_EX_DATA ex_data;
    int id;
R
Rich Salz 已提交
49
    int st;
50 51 52 53 54 55 56 57
} MYOBJ;

static MYOBJ *MYOBJ_new()
{
    static int count = 0;
    MYOBJ *obj = OPENSSL_malloc(sizeof(*obj));

    obj->id = ++count;
R
Rich Salz 已提交
58
    obj->st = CRYPTO_new_ex_data(CRYPTO_EX_INDEX_APP, obj, &obj->ex_data);
59
    OPENSSL_assert(obj->st != 0);
60 61 62 63 64
    return obj;
}

static void MYOBJ_sethello(MYOBJ *obj, char *cp)
{
R
Rich Salz 已提交
65
    obj->st = CRYPTO_set_ex_data(&obj->ex_data, saved_idx, cp);
66
    OPENSSL_assert(obj->st != 0);
67 68 69 70
}

static char *MYOBJ_gethello(MYOBJ *obj)
{
R
Rich Salz 已提交
71
    return CRYPTO_get_ex_data(&obj->ex_data, saved_idx);
72 73 74 75 76 77 78 79
}

static void MYOBJ_free(MYOBJ *obj)
{
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_APP, obj, &obj->ex_data);
    OPENSSL_free(obj);
}

80 81 82 83 84 85 86 87 88 89
static MYOBJ *MYOBJ_dup(MYOBJ *in)
{
    MYOBJ *obj = MYOBJ_new();

    obj->st = CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_APP, &obj->ex_data,
                                 &in->ex_data);
    OPENSSL_assert(obj->st != 0);
    return obj;
}

90 91
int main()
{
92
    MYOBJ *t1, *t2, *t3;
93 94 95 96
    const char *cp;
    char *p;

    p = strdup("hello world");
R
Rich Salz 已提交
97 98 99 100 101
    saved_argl = 21;
    saved_argp = malloc(1);
    saved_idx = CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_APP,
                                        saved_argl, saved_argp,
                                        exnew, exdup, exfree);
102 103 104 105
    t1 = MYOBJ_new();
    t2 = MYOBJ_new();
    MYOBJ_sethello(t1, p);
    cp = MYOBJ_gethello(t1);
106
    OPENSSL_assert(cp == p);
R
Rich Salz 已提交
107 108
    if (cp != p)
        return 1;
109
    cp = MYOBJ_gethello(t2);
110
    OPENSSL_assert(cp == NULL);
R
Rich Salz 已提交
111 112
    if (cp != NULL)
        return 1;
113 114 115 116 117 118
    t3 = MYOBJ_dup(t1);
    cp = MYOBJ_gethello(t3);
    OPENSSL_assert(cp == p);
    if (cp != p)
        return 1;
    cp = MYOBJ_gethello(t2);
119 120
    MYOBJ_free(t1);
    MYOBJ_free(t2);
121
    MYOBJ_free(t3);
R
Rich Salz 已提交
122
    free(saved_argp);
123 124 125
    free(p);
    return 0;
}