summaryrefslogtreecommitdiff
path: root/src/libstrongswan/threading/windows/thread_value.c
blob: d7bd7e64c0ca9736683651658319cb13f84dbf48 (plain)
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
/*
 * Copyright (C) 2013 Martin Willi
 * Copyright (C) 2013 revosec AG
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 */

#include "thread.h"

#include <threading/thread_value.h>


typedef struct private_thread_value_t private_thread_value_t;

/**
 * Unified thread_value_t implementation
 */
struct private_thread_value_t {

	/**
	 * Public interface.
	 */
	thread_value_t public;

	union {

		/**
		 * Cleanup function
		 */
		thread_cleanup_t cleanup;

		/**
		 * Windows TLS index, if used
		 */
		DWORD index;
	};
};

/**
 * TLS entry
 */
typedef struct {
	/** TLS value */
	void *value;
	/** cleanup handler function */
	thread_cleanup_t cleanup;
} entry_t;

/**
 * See windows/thread.h
 */
void thread_tls_cleanup(void *value)
{
	entry_t *entry = (entry_t*)value;

	if (entry->cleanup)
	{
		entry->cleanup(entry->value);
	}
	free(entry);
}

METHOD(thread_value_t, tls_set, void,
	private_thread_value_t *this, void *val)
{
	entry_t *entry;

	if (val)
	{
		INIT(entry,
			.cleanup = this->cleanup,
			.value = val,
		);

		free(thread_tls_put(this, entry));
	}
	else
	{
		free(thread_tls_remove(this));
	}
}

METHOD(thread_value_t, tls_get, void*,
	private_thread_value_t *this)
{
	entry_t *entry;

	entry = thread_tls_get(this);
	if (entry)
	{
		return entry->value;
	}
	return NULL;
}

METHOD(thread_value_t, tls_destroy, void,
	private_thread_value_t *this)
{
	entry_t *entry;

	entry = thread_tls_remove(this);
	if (entry)
	{
		thread_tls_cleanup(entry);
	}
	free(this);
}

METHOD(thread_value_t, tls_set_index, void,
	private_thread_value_t *this, void *val)
{
	TlsSetValue(this->index, val);
}

METHOD(thread_value_t, tls_get_index, void*,
	private_thread_value_t *this)
{
	return TlsGetValue(this->index);
}

METHOD(thread_value_t, tls_destroy_index, void,
	private_thread_value_t *this)
{
	TlsFree(this->index);
	free(this);
}

/**
 * Described in header.
 */
thread_value_t *thread_value_create(thread_cleanup_t cleanup)
{
	private_thread_value_t *this;
	DWORD index = TLS_OUT_OF_INDEXES;

	/* we have two implementations: Windows Tls* functions do not support
	 * callbacks and has limited instances. We use it nonetheless if possible,
	 * especially as leak detective relies on TLS, but we have to mangle
	 * leak detective state for TLS storage. */

	if (!cleanup)
	{
		index = TlsAlloc();
	}

	if (index == TLS_OUT_OF_INDEXES)
	{
		INIT(this,
			.public = {
				.set = _tls_set,
				.get = _tls_get,
				.destroy = _tls_destroy,
			},
			.cleanup = cleanup,
		);
	}
	else
	{
		INIT(this,
			.public = {
				.set = _tls_set_index,
				.get = _tls_get_index,
				.destroy = _tls_destroy_index,
			},
			.index = index,
		);
	}

	return &this->public;
}