xref: /openbsd-src/include/tib.h (revision 99fd087599a8791921855f21bd7e36130f39aadc)
1 /*	$OpenBSD: tib.h,v 1.7 2019/05/10 13:29:21 guenther Exp $	*/
2 /*
3  * Copyright (c) 2011,2014 Philip Guenther <guenther@openbsd.org>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17 
18 /*
19  * Thread Information Block (TIB) and Thread Local Storage (TLS) handling
20  * (the TCB, Thread Control Block, is part of the TIB)
21  */
22 
23 #ifndef	_TIB_H_
24 #define	_TIB_H_
25 
26 #include <sys/types.h>
27 #include <machine/tcb.h>
28 
29 #include <stddef.h>
30 
31 
32 /*
33  * This header defines struct tib and at least eight macros:
34  *	TLS_VARIANT
35  *		Either 1 or 2  (Actually defined by <machine/tcb.h>)
36  *
37  *	TCB_SET(tcb)
38  *		Set the TCB pointer for this thread to 'tcb'
39  *
40  *	TCB_GET()
41  *		Return the TCB pointer for this thread
42  *
43  *	TCB_TO_TIB(tcb)
44  *		Given a TCB pointer, return the matching TIB pointer
45  *
46  *	TIB_TO_TCB(tib)
47  *		Given a TIB pointer, return the matching TCB pointer
48  *
49  *	TIB_INIT(tib, dtv, thread)
50  *		Initializes a TIB for a new thread, using the supplied
51  *		values for its dtv and thread pointers
52  *
53  *	TIB_GET()
54  *		Short-hand for TCB_TO_TIB(TCB_GET())
55  *
56  *	TIB_EXTRA_ALIGN
57  *		On TLS varaint 2 archs, what alignment is sufficient
58  *		for the extra space that will be used for struct pthread?
59  *
60  * The following functions are provided by either ld.so (dynamic) or
61  * libc (static) for allocating and freeing a common memory block that
62  * will hold both the TIB and the pthread structure:
63  *	_dl_allocate_tib(sizeof(struct pthread))
64  *		Allocates a combined TIB and pthread memory region.
65  *		The argument is the amount of space to reserve
66  *		for the pthread structure.  Returns a pointer to
67  *		the TIB inside the allocated block.
68  *
69  * 	_dl_free_tib(tib, sizeof(struct pthread))
70  *		Frees a TIB and pthread block previously allocated
71  *		with _dl_allocate_tib().  Must be passed the return
72  *		value of that previous call.
73  */
74 
75 /*
76  * Regarding <machine/tcb.h>:
77  *  - it must define the TLS_VARIANT macro
78  *  - it may define TCB_OFFSET if the TCB address in the kernel and/or
79  *    register is offset from the actual TCB address.  TCB_OFFSET > 0
80  *    means the kernel/register points to *after* the real data.
81  *  - if there's a faster way to get or set the TCB pointer for the thread
82  *    than the __{get,set}_tcb() syscalls, it should define either or both
83  *    the TCB_{GET,SET} macros to do so.
84  */
85 
86 
87 /* All archs but mips64 have fast TCB_GET() and don't need caching */
88 #ifndef	__mips64__
89 # define TCB_HAVE_MD_GET	1
90 #endif
91 #ifdef	TCB_SET
92 # define TCB_HAVE_MD_SET	1
93 #else
94 # define TCB_SET(tcb)		__set_tcb(tcb)
95 #endif
96 #ifndef TCB_OFFSET
97 # define TCB_OFFSET	0
98 #endif
99 
100 /*
101  * tib_cantcancel values is non-zero if the thread should skip all
102  * cancellation processing
103  */
104 #define CANCEL_DISABLED	1
105 #define CANCEL_DYING	2
106 
107 /*
108  * tib_cancel_point is non-zero if we're in a cancel point; its modified
109  * by the cancel point code and read by the cancellation signal handler
110  */
111 #define CANCEL_POINT		1
112 #define CANCEL_POINT_DELAYED	2
113 
114 
115 #if TLS_VARIANT == 1
116 /*
117  * ABI specifies that the static TLS data starts two words after the
118  * (notional) thread pointer, with the first of those two words being
119  * the TLS dtv pointer.  The other (second) word is reserved for the
120  * implementation, so we place the pointer to the thread structure there,
121  * but we place our actual thread bits before the TCB, at negative offsets
122  * from the TCB pointer.  Ergo, memory is laid out, low to high, as:
123  *
124  *	[pthread structure]
125  *	TIB {
126  *		...cancelation and other int-sized info...
127  *		int errno
128  *		void *locale
129  *		TCB (- TCB_OFFSET) {
130  *			void *dtv
131  *			struct pthread *thread
132  *		}
133  *	}
134  *	static TLS data
135  */
136 
137 struct tib {
138 	void	*tib_atexit;
139 	int	tib_thread_flags;	/* internal to libpthread */
140 	pid_t	tib_tid;
141 	int	tib_cantcancel;
142 	int	tib_cancel_point;
143 	int	tib_canceled;
144 	int	tib_errno;
145 	void	*tib_locale;
146 	void	*tib_dtv;		/* internal to the runtime linker */
147 	void	*tib_thread;
148 };
149 
150 
151 #elif TLS_VARIANT == 2
152 /*
153  * ABI specifies that the static TLS data occupies the memory before
154  * the TCB pointer, at negative offsets, and that on i386 and amd64
155  * the word the TCB points to contains a pointer to itself.  So,
156  * we place errno and our thread bits after that.  Memory is laid
157  * out, low to high, as:
158  *	static TLS data
159  *	TIB {
160  *		TCB (- TCB_OFFSET) {
161  *			self pointer [i386/amd64 only]
162  *			void *dtv
163  *		}
164  *		struct pthread *thread
165  *		void *locale
166  *		int errno
167  *		...cancelation and other int-sized info...
168  *	}
169  *	[pthread structure]
170  */
171 
172 struct tib {
173 #if defined(__i386) || defined(__amd64)
174 	struct	tib *__tib_self;
175 # define __tib_tcb __tib_self
176 #endif
177 	void	*tib_dtv;		/* internal to the runtime linker */
178 	void	*tib_thread;
179 	void	*tib_locale;
180 	int	tib_errno;
181 	int	tib_canceled;
182 	int	tib_cancel_point;
183 	int	tib_cantcancel;
184 	pid_t	tib_tid;
185 	int	tib_thread_flags;	/* internal to libpthread */
186 	void	*tib_atexit;
187 };
188 
189 #if defined(__i386) || defined(__amd64)
190 # define _TIB_PREP(tib)	\
191 	((void)((tib)->__tib_self = (tib)))
192 #endif
193 
194 #define	TIB_EXTRA_ALIGN		sizeof(void *)
195 
196 #else
197 # error "unknown TLS variant"
198 #endif
199 
200 /* nothing to do by default */
201 #ifndef	_TIB_PREP
202 # define _TIB_PREP(tib)	((void)0)
203 #endif
204 
205 #define	TIB_INIT(tib, dtv, thread)	do {		\
206 		(tib)->tib_thread	= (thread);	\
207 		(tib)->tib_atexit	= NULL;		\
208 		(tib)->tib_locale	= NULL;		\
209 		(tib)->tib_cantcancel	= 0;		\
210 		(tib)->tib_cancel_point	= 0;		\
211 		(tib)->tib_canceled	= 0;		\
212 		(tib)->tib_dtv		= (dtv);	\
213 		(tib)->tib_errno	= 0;		\
214 		_TIB_PREP(tib);				\
215 	} while (0)
216 
217 #ifndef	__tib_tcb
218 # define __tib_tcb		tib_dtv
219 #endif
220 #define	_TIBO_TCB		(offsetof(struct tib, __tib_tcb) + TCB_OFFSET)
221 
222 #define	TCB_TO_TIB(tcb)		((struct tib *)((char *)(tcb) - _TIBO_TCB))
223 #define	TIB_TO_TCB(tib)		((char *)(tib) + _TIBO_TCB)
224 #define	TIB_GET()		TCB_TO_TIB(TCB_GET())
225 
226 
227 __BEGIN_DECLS
228 struct dl_info;
229 struct dl_phdr_info;
230 struct dl_cb_0 {
231 	void	*(*dl_allocate_tib)(size_t);
232 	void	 (*dl_free_tib)(void *, size_t);
233 	void	 (*dl_clean_boot)(void);
234 	void	*(*dlopen)(const char *, int);
235 	int	 (*dlclose)(void *);
236 	void	*(*dlsym)(void *, const char *);
237 	int	 (*dladdr)(const void *, struct dl_info *);
238 	int	 (*dlctl)(void *, int, void *);
239 	char	*(*dlerror)(void);
240 	int	 (*dl_iterate_phdr)(int (*)(struct dl_phdr_info *,
241 		    size_t, void *), void *);
242 };
243 
244 #define	DL_CB_CUR	0
245 typedef	struct dl_cb_0	dl_cb;
246 
247 /* type of function passed to init functions that returns a dl_cb */
248 typedef	const void *dl_cb_cb(int _version);
249 
250 void	*_dl_allocate_tib(size_t _extra) __dso_public;
251 void	_dl_free_tib(void *_tib, size_t _extra) __dso_public;
252 
253 /* The actual syscalls */
254 void	*__get_tcb(void);
255 void	__set_tcb(void *_tcb);
256 __END_DECLS
257 
258 #endif /* _TIB_H_ */
259