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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
/* Copyright (C) 1992,1993,1995-2000,2002-2006,2007,2008
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper, <drepper@gnu.org>, August 1995.
OpenSolaris bits contributed by David Bartley
<dtbartle@csclub.uwaterloo.ca>, 2008.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#ifndef _OPENSOLARIS_I386_SYSDEP_H
#define _OPENSOLARIS_I386_SYSDEP_H 1
#define DECLARE_INLINE_SYSCALL(ret, name, args...) \
extern ret __syscall_##name (args)
/* There is some commonality. */
#include <sysdeps/unix/i386/sysdep.h>
#include <bp-sym.h>
#include <bp-asm.h>
#include <syscallP.h>
/* XXX: This needs to come before #include <tls.h>. */
/* Pointer mangling support. */
#if defined NOT_IN_libc && defined IS_IN_rtld
/* We cannot use the thread descriptor because in ld.so we use setjmp
earlier than the descriptor is initialized. Using a global variable
is too complicated here since we have no PC-relative addressing mode. */
#else
# ifdef __ASSEMBLER__
# define PTR_MANGLE(reg) xorl %gs:POINTER_GUARD, reg; \
roll $9, reg
# define PTR_DEMANGLE(reg) rorl $9, reg; \
xorl %gs:POINTER_GUARD, reg
# else
# define PTR_MANGLE(var) asm ("xorl %%gs:%c2, %0\n" \
"roll $9, %0" \
: "=r" (var) \
: "0" (var), \
"i" (offsetof (tcbhead_t, \
pointer_guard)))
# define PTR_DEMANGLE(var) asm ("rorl $9, %0\n" \
"xorl %%gs:%c2, %0" \
: "=r" (var) \
: "0" (var), \
"i" (offsetof (tcbhead_t, \
pointer_guard)))
# endif
#endif
/* Defines RTLD_PRIVATE_ERRNO and USE_DL_SYSINFO. */
#include <dl-sysdep.h>
#include <tls.h>
/* It's too much trouble to pull in all of errno.h just for this */
#ifndef ERESTART
# define ERESTART 91 /* Restartable system call. */
# define EINTR 4 /* Interrupted system call. */
#endif
#ifdef __ASSEMBLER__
/* This is needed so that we know when to set %edx to -1 on error. */
#ifdef SYSCALL_64BIT_RETURN
# define SYSCALL_64BIT_RETURN_ASM orl $-1, %edx;
#else
# define SYSCALL_64BIT_RETURN_ASM
#endif
#ifdef SYSCALL_RESTARTABLE
# define DO_RESTART \
cmpl $ERESTART, %eax; \
je L(restart);
#else
# define DO_RESTART
#endif
/* We don't want the label for the error handle to be global when we define
it here. */
#ifdef PIC
# define SYSCALL_ERROR_LABEL 0f
#else
# define SYSCALL_ERROR_LABEL syscall_error
#endif
#undef PSEUDO
#define PSEUDO(name, syscall_name, args) \
.text; \
ENTRY (name) \
L(restart): \
DO_CALL (syscall_name, args); \
jnb 2f; \
DO_RESTART \
jmp SYSCALL_ERROR_LABEL; \
2: \
L(pseudo_end):
#define PSEUDO_SUBCALL(name, syscall_name, subcall_name, args) \
.text; \
ENTRY (name) \
movl 0(%esp), %ecx; \
movl %ecx, -4(%esp); \
addl $-4, %esp; \
movl $SYS_ify (SUB_##subcall_name), 4(%esp); \
L(restart): \
DO_CALL (syscall_name, args); \
jnb 2f; \
DO_RESTART \
movl %ecx, 4(%esp); \
addl $4, %esp; \
jmp SYSCALL_ERROR_LABEL; \
2: \
movl %ecx, 4(%esp); \
addl $4, %esp; \
L(pseudo_end):
#undef PSEUDO_END
#define PSEUDO_END(name) \
SYSCALL_ERROR_HANDLER \
END (name)
#undef PSEUDO_NOERRNO
#define PSEUDO_NOERRNO(name, syscall_name, args) \
.text; \
ENTRY (name) \
DO_CALL (syscall_name, args)
#define PSEUDO_SUBCALL_NOERRNO(name, syscall_name, subcall_name, args) \
.text; \
ENTRY (name) \
movl 0(%esp), %ecx; \
movl %ecx, -4(%esp); \
addl $-4, %esp; \
movl $SYS_ify (SUB_##subcall_name), 4(%esp); \
DO_CALL (syscall_name, args); \
movl %ecx, 4(%esp); \
addl $4, %esp;
#undef PSEUDO_END_NOERRNO
#define PSEUDO_END_NOERRNO(name) \
END (name)
#define ret_NOERRNO ret
/* The function has to return the error code. */
#undef PSEUDO_ERRVAL
#define PSEUDO_ERRVAL(name, syscall_name, args) \
.text; \
ENTRY (name) \
DO_CALL (syscall_name, args); \
jnb 1f; \
cmpl $ERESTART, %eax; \
jne 2f; \
movl $EINTR, %eax; \
jmp 2f; \
1: xorl %eax, %eax; \
2:;
#define PSEUDO_SUBCALL_ERRVAL(name, syscall_name, subcall_name, args) \
.text; \
ENTRY (name) \
movl 0(%esp), %ecx; \
movl %ecx, -4(%esp); \
addl $-4, %esp; \
movl $SYS_ify (SUB_##subcall_name), 4(%esp); \
L(restart): \
DO_CALL (syscall_name, args); \
jnb 1f; \
cmpl $ERESTART, %eax; \
jne 2f; \
movl $EINTR, %eax; \
jmp 2f; \
1: xorl %eax, %eax; \
2: \
movl %ecx, 4(%esp); \
addl $4, %esp;
#undef PSEUDO_END_ERRVAL
#define PSEUDO_END_ERRVAL(name) \
END (name)
#define ret_ERRVAL ret
#undef PSEUDO_FASTTRAP
#define PSEUDO_FASTTRAP(name, trap_name, args) \
.text; \
ENTRY (name) \
movl $T_##trap_name, %eax; \
int $T_FASTTRAP; \
L(pseudo_end):
#ifndef PIC
# define SYSCALL_ERROR_HANDLER /* Nothing here; code in sysdep.S is used. */
#else
# if RTLD_PRIVATE_ERRNO
# define SYSCALL_ERROR_HANDLER \
0: SETUP_PIC_REG(cx); \
addl $_GLOBAL_OFFSET_TABLE_, %ecx; \
movl %eax, rtld_errno@GOTOFF(%ecx); \
orl $-1, %eax; \
SYSCALL_64BIT_RETURN_ASM \
jmp L(pseudo_end);
# elif defined _LIBC_REENTRANT
# if USE___THREAD
# ifndef NOT_IN_libc
# define SYSCALL_ERROR_ERRNO __libc_errno
# else
# define SYSCALL_ERROR_ERRNO errno
# endif
# define SYSCALL_ERROR_HANDLER \
0: SETUP_PIC_REG (cx); \
addl $_GLOBAL_OFFSET_TABLE_, %ecx; \
movl SYSCALL_ERROR_ERRNO@GOTNTPOFF(%ecx), %ecx; \
SYSCALL_ERROR_HANDLER_TLS_STORE (%eax, %ecx); \
orl $-1, %eax; \
SYSCALL_64BIT_RETURN_ASM \
jmp L(pseudo_end);
# ifndef NO_TLS_DIRECT_SEG_REFS
# define SYSCALL_ERROR_HANDLER_TLS_STORE(src, destoff) \
movl src, %gs:(destoff)
# else
# define SYSCALL_ERROR_HANDLER_TLS_STORE(src, destoff) \
addl %gs:0, destoff; \
movl src, (destoff)
# endif
# else
# define SYSCALL_ERROR_HANDLER \
0:pushl %ebx; \
cfi_adjust_cfa_offset (4); \
cfi_rel_offset (ebx, 0); \
SETUP_PIC_REG (bx); \
addl $_GLOBAL_OFFSET_TABLE_, %ebx; \
pushl %eax; \
cfi_adjust_cfa_offset (4); \
PUSH_ERRNO_LOCATION_RETURN; \
call BP_SYM (__errno_location)@PLT; \
POP_ERRNO_LOCATION_RETURN; \
popl %ecx; \
cfi_adjust_cfa_offset (-4); \
popl %ebx; \
cfi_adjust_cfa_offset (-4); \
cfi_restore (ebx); \
movl %ecx, (%eax); \
orl $-1, %eax; \
SYSCALL_64BIT_RETURN_ASM \
jmp L(pseudo_end);
/* A quick note: it is assumed that the call to `__errno_location' does
not modify the stack! */
# endif
# else
/* Store (%eax) into errno through the GOT. */
# define SYSCALL_ERROR_HANDLER \
0:SETUP_PIC_REG(cx); \
addl $_GLOBAL_OFFSET_TABLE_, %ecx; \
movl errno@GOT(%ecx), %ecx; \
movl %eax, (%ecx); \
orl $-1, %eax; \
SYSCALL_64BIT_RETURN_ASM \
jmp L(pseudo_end);
# endif /* _LIBC_REENTRANT */
#endif /* PIC */
/* TODO: use sysenter instead of int */
#undef DO_CALL
#define DO_CALL(syscall_name, args) \
movl $SYS_ify (syscall_name), %eax; \
int $0x91
#else /* !__ASSEMBLER__ */
/* Consistency check for position-independent code. */
#ifdef __PIC__
# define check_consistency() \
({ int __res; \
__asm__ __volatile__ \
("call __i686.get_pc_thunk.cx;" \
"addl $_GLOBAL_OFFSET_TABLE_, %%ecx;" \
"subl %%ebx, %%ecx;" \
"je 1f;" \
"ud2;" \
"1:\n" \
".section .gnu.linkonce.t.__i686.get_pc_thunk.cx,\"ax\",@progbits;" \
".globl __i686.get_pc_thunk.cx;" \
".hidden __i686.get_pc_thunk.cx;" \
".type __i686.get_pc_thunk.cx,@function;" \
"__i686.get_pc_thunk.cx:" \
"movl (%%esp), %%ecx;" \
"ret;" \
".previous" \
: "=c" (__res)); \
__res; })
#endif
/* TODO: This is a terrible implementation of INTERNAL_SYSCALL. */
/* Some NPTL code calls these macros. */
# include <errno.h>
# define INTERNAL_SYSCALL(name, err, nr, args...) __internal_##name##_##nr (&(err), args)
# define INTERNAL_SYSCALL_DECL(err) int err = 0;
# define INTERNAL_SYSCALL_ERROR_P(val, err) (err != 0)
# define INTERNAL_SYSCALL_ERRNO(val, err) (err)
#endif /* __ASSEMBLER__ */
#endif /* _OPENSOLARIS_I386_SYSDEP_H */
|