File: thread_data.c

package info (click to toggle)
389-ds-base 2.3.1%2Bdfsg1-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 37,536 kB
  • sloc: ansic: 306,972; python: 96,937; cpp: 10,257; perl: 2,854; makefile: 2,046; sh: 925; yacc: 806; xml: 379; lex: 366; javascript: 148; java: 50
file content (209 lines) | stat: -rw-r--r-- 5,606 bytes parent folder | download | duplicates (2)
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
/** BEGIN COPYRIGHT BLOCK
 * Copyright (C) 2012 Red Hat, Inc.
 * All rights reserved.
 *
 * License: GPL (version 3 or any later version).
 * See LICENSE for details.
 * END COPYRIGHT BLOCK **/

/*
 *   Thread Local Storage Functions
 */
#include "slap.h"
#include <pthread.h>

/*
 * Thread Local Storage Indexes
 */
static pthread_key_t td_requestor_dn; /* TD_REQUESTOR_DN */
static pthread_key_t td_plugin_list;  /* SLAPI_TD_PLUGIN_LIST_LOCK - integer set to 1 or zero */
static pthread_key_t td_op_state;

/*
 *   Destructor Functions
 */

static void
td_dn_destructor(void *priv)
{
    slapi_ch_free((void **)&priv);
}

static void
td_op_state_destroy(void *priv) {
    slapi_ch_free((void **)&priv);
}

int32_t
slapi_td_init(void)
{
    if (pthread_key_create(&td_requestor_dn, td_dn_destructor) != 0) {
        slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_init", "Failed it create private thread index for td_requestor_dn/td_dn_destructor\n");
        return PR_FAILURE;
    }

    if (pthread_key_create(&td_plugin_list, NULL) != 0) {
        slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_init", "Failed it create private thread index for td_plugin_list\n");
        return PR_FAILURE;
    }

    if(pthread_key_create(&td_op_state, td_op_state_destroy) != 0){
        slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_init", "Failed it create private thread index for td_op_state\n");
        return PR_FAILURE;
    }

    return PR_SUCCESS;
}


/*
 *  Wrapper Functions
 */

/* plugin list locking */
int32_t
slapi_td_set_plugin_locked()
{
    int32_t val = 12345;

    if (pthread_setspecific(td_plugin_list, (void *)&val) != 0) {
        return PR_FAILURE;
    }

    return PR_SUCCESS;
}

int32_t
slapi_td_set_plugin_unlocked()
{
    if (pthread_setspecific(td_plugin_list, NULL) != 0) {
        return PR_FAILURE;
    }

    return PR_SUCCESS;
}

int32_t
slapi_td_get_plugin_locked()
{
    int32_t *value = pthread_getspecific(td_plugin_list);

    if (value == NULL) {
        return 0;
    }
    return 1;
}

/* requestor dn */
int32_t
slapi_td_set_dn(char *value)
{
    char *dn = pthread_getspecific(td_requestor_dn);
    slapi_ch_free_string(&dn);
    if (pthread_setspecific(td_requestor_dn, value) != 0) {
        return PR_FAILURE;
    }

    return PR_SUCCESS;
}

void
slapi_td_get_dn(char **value)
{
    if (value) {
        *value = pthread_getspecific(td_requestor_dn);
    }
}

/* Worker op-state */
struct slapi_td_log_op_state_t *
slapi_td_get_log_op_state() {
    return pthread_getspecific(td_op_state);
}


/*
 * Increment the internal operation count.  Unless we are nested, in that case
 * do not update the internal op counter.  If we just became "unnested" then
 * update the state to keep the counters on track.
 */
void
slapi_td_internal_op_start(void)
{
    struct slapi_td_log_op_state_t *op_state = pthread_getspecific(td_op_state);

    /* Allocate if needed */
    if (op_state == NULL) {
        op_state = (struct slapi_td_log_op_state_t *)slapi_ch_calloc(1, sizeof(struct slapi_td_log_op_state_t));
        if (pthread_setspecific(td_op_state, op_state) != 0) {
            slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_internal_op_start",
                          "Failed to set op_state to td_op_state. OOM?\n");
            return;
        }
    }

    /* Bump the nested count */
    op_state->op_nest_count += 1;

    if (op_state->op_nest_count > 1){
        /* We are nested */
        op_state->op_nest_state = OP_STATE_NESTED;
    } else {
        /* We are not nested */
        op_state->op_int_id += 1;
        if (op_state->op_nest_state == OP_STATE_PREV_NESTED) {
            /* But we were just previously nested, so update the state */
            op_state->op_nest_state = OP_STATE_NOTNESTED;
        }
    }
}

/*
 * Decrement the nested count.  If we were nested and we are NOW unnested
 * then we need to reset the state so on the next new internal op we set the
 * counters to the correct/expected/next-sequential value.
 */
void
slapi_td_internal_op_finish(void)
{
    struct slapi_td_log_op_state_t *op_state = pthread_getspecific(td_op_state);

    /* Allocate if needed - should be unreachable!*/
    PR_ASSERT(op_state);
    if (op_state == NULL) {
        op_state = (struct slapi_td_log_op_state_t *)slapi_ch_calloc(1, sizeof(struct slapi_td_log_op_state_t));
        if (pthread_setspecific(td_op_state, op_state) != 0) {
            slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_internal_op_finish",
                          "Failed to set op_state to td_op_state. OOM?\n");
            return;
        }
    }
    /* decrement nested count */
    op_state->op_nest_count -= 1;

    /* If we were nested, but NOT anymore, then update the state */
    if ( op_state->op_nest_state == OP_STATE_NESTED && op_state->op_nest_count == 1){
        op_state->op_nest_state = OP_STATE_PREV_NESTED;
    }
}

void
slapi_td_reset_internal_logging(uint64_t new_conn_id, int32_t new_op_id)
{
    struct slapi_td_log_op_state_t *op_state = pthread_getspecific(td_op_state);

    /* Allocate if needed */
    if (op_state == NULL) {
        op_state = (struct slapi_td_log_op_state_t *)slapi_ch_calloc(1, sizeof(struct slapi_td_log_op_state_t));
        if (pthread_setspecific(td_op_state, op_state) != 0) {
            slapi_log_err(SLAPI_LOG_CRIT, "slapi_td_internal_op_finish",
                          "Failed to set op_state to td_op_state. OOM?\n");
            return;
        }
    }
    op_state->conn_id = new_conn_id;
    op_state->op_id = new_op_id;
    op_state->op_int_id = 0;
    op_state->op_nest_count = 0;
    op_state->op_nest_state = OP_STATE_NOTNESTED;
}