Bug 444488 - Use glibc.pthread.stack_cache_size tunable
[valgrind.git] / coregrind / m_syswrap / priv_syswrap-generic.h
blob41d1bb8f2cbc0c9a583dcdd8e874b2b2dd408790
2 /*--------------------------------------------------------------------*/
3 /*--- Private syscalls header. priv_syswrap-generic.h ---*/
4 /*--------------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2000-2017 Julian Seward
11 jseward@acm.org
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, see <http://www.gnu.org/licenses/>.
26 The GNU General Public License is contained in the file COPYING.
29 #ifndef __PRIV_SYSWRAP_GENERIC_H
30 #define __PRIV_SYSWRAP_GENERIC_H
32 #include "pub_core_basics.h" // ThreadId
33 #include "pub_core_vki.h" // vki_msghdr
34 #include "priv_types_n_macros.h" // DECL_TEMPLATE
37 /* Guess the client stack from the segment in which sp is mapped.
38 Register the guessed stack using VG_(register_stack).
39 Setup tst client_stack_highest_byte and client_stack_szB.
40 If sp is not in a mapped segment, does nothing. */
41 extern void ML_(guess_and_register_stack) (Addr sp, ThreadState* tst);
43 // Return true if address range entirely contained within client
44 // address space.
45 extern
46 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
47 const HChar *syscallname);
49 /* Handy small function to help stop wrappers from segfaulting when
50 presented with bogus client addresses. Is not used for generating
51 user-visible errors. */
52 extern Bool ML_(safe_to_deref) ( const void *start, SizeT size );
54 // Returns True if the signal is OK for the client to use.
55 extern Bool ML_(client_signal_OK)(Int sigNo);
57 // Return true if we're allowed to use or create this fd.
58 extern
59 Bool ML_(fd_allowed)(Int fd, const HChar *syscallname, ThreadId tid,
60 Bool isNewFD);
62 extern void ML_(record_fd_close) (Int fd);
63 extern void ML_(record_fd_open_named) (ThreadId tid, Int fd);
64 extern void ML_(record_fd_open_nameless) (ThreadId tid, Int fd);
65 extern void ML_(record_fd_open_with_given_name)(ThreadId tid, Int fd,
66 const HChar *pathname);
68 // Return true if a given file descriptor is already recorded.
69 extern Bool ML_(fd_recorded)(Int fd);
70 // Returns a pathname representing a recorded fd.
71 // Returned string must not be modified nor free'd.
72 extern const HChar *ML_(find_fd_recorded_by_fd)(Int fd);
74 // Used when killing threads -- we must not kill a thread if it's the thread
75 // that would do Valgrind's final cleanup and output.
76 extern
77 Bool ML_(do_sigkill)(Int pid, Int tgid);
79 /* When a client mmap or munmap has been successfully done, both the core
80 and the tool need to be notified of the new mapping. Hence this fn. */
81 extern void
82 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot,
83 UInt mm_flags, Int fd, Off64T offset );
84 extern void
85 ML_(notify_core_and_tool_of_munmap) ( Addr a, SizeT len );
86 extern void
87 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot );
89 extern void
90 ML_(pre_mem_read_sockaddr) ( ThreadId tid, const HChar *description,
91 struct vki_sockaddr *sa, UInt salen );
92 extern void
93 ML_(buf_and_len_pre_check) ( ThreadId tid, Addr buf_p, Addr buflen_p,
94 const HChar* buf_s, const HChar* buflen_s );
95 extern void
96 ML_(buf_and_len_post_check) ( ThreadId tid, SysRes res,
97 Addr buf_p, Addr buflen_p, const HChar* s );
99 /* PRE and POST for unknown ioctls based on ioctl request encoding */
100 extern
101 void ML_(PRE_unknown_ioctl)(ThreadId tid, UWord request, UWord arg);
102 extern
103 void ML_(POST_unknown_ioctl)(ThreadId tid, UInt res, UWord request, UWord arg);
105 extern
106 void ML_(pre_argv_envp)(Addr a, ThreadId tid, const HChar *s1, const HChar *s2);
108 extern Bool
109 ML_(handle_auxv_open)(SyscallStatus *status, const HChar *filename,
110 int flags);
112 extern Bool
113 ML_(handle_self_exe_open)(SyscallStatus *status, const HChar *filename,
114 int flags);
116 /* Helper function for generic mprotect and linux pkey_mprotect. */
117 extern void handle_sys_mprotect (ThreadId tid, SyscallStatus *status,
118 Addr *addr, SizeT *len, Int *prot);
119 /* Helper functions for preadv/preadv2. */
120 extern
121 void handle_pre_sys_preadv(ThreadId tid, SyscallStatus* status,
122 Int fd, Addr vector, Int count,
123 const char *str);
124 extern
125 void handle_post_sys_preadv(ThreadId tid, SyscallStatus* status, Addr vector, Int count);
127 /* Helper function for pwritev/pwritev2. */
128 extern
129 void handle_sys_pwritev(ThreadId tid, SyscallStatus* status,
130 Int fd, Addr vector, Int count,
131 const char *str);
133 typedef enum {
134 EXECVE,
135 EXECVEAT,
136 FEXECVE
137 } ExecveType;
139 extern
140 void handle_pre_sys_execve(ThreadId tid, SyscallStatus *status, Addr pathname,
141 Addr arg_2, Addr arg_3, ExecveType execveType,
142 Bool check_pathptr);
144 DECL_TEMPLATE(generic, sys_ni_syscall); // * P -- unimplemented
145 DECL_TEMPLATE(generic, sys_exit);
146 DECL_TEMPLATE(generic, sys_fork);
147 DECL_TEMPLATE(generic, sys_read);
148 DECL_TEMPLATE(generic, sys_write);
149 DECL_TEMPLATE(generic, sys_open);
150 DECL_TEMPLATE(generic, sys_close);
151 DECL_TEMPLATE(generic, sys_waitpid);
152 DECL_TEMPLATE(generic, sys_creat);
153 DECL_TEMPLATE(generic, sys_link);
154 DECL_TEMPLATE(generic, sys_unlink);
155 DECL_TEMPLATE(generic, sys_execve); // (*??) P
156 DECL_TEMPLATE(generic, sys_chdir);
157 DECL_TEMPLATE(generic, sys_time);
158 DECL_TEMPLATE(generic, sys_mknod);
159 DECL_TEMPLATE(generic, sys_chmod);
160 DECL_TEMPLATE(generic, sys_getpid);
161 DECL_TEMPLATE(generic, sys_alarm);
162 DECL_TEMPLATE(generic, sys_pause);
163 DECL_TEMPLATE(generic, sys_access);
164 DECL_TEMPLATE(generic, sys_kill);
165 DECL_TEMPLATE(generic, sys_rename);
166 DECL_TEMPLATE(generic, sys_mkdir);
167 DECL_TEMPLATE(generic, sys_rmdir);
168 DECL_TEMPLATE(generic, sys_dup);
169 DECL_TEMPLATE(generic, sys_times);
170 DECL_TEMPLATE(generic, sys_setpgid);
171 DECL_TEMPLATE(generic, sys_umask);
172 DECL_TEMPLATE(generic, sys_dup2);
173 DECL_TEMPLATE(generic, sys_getppid);
174 DECL_TEMPLATE(generic, sys_getpgrp);
175 DECL_TEMPLATE(generic, sys_setsid);
176 DECL_TEMPLATE(generic, sys_munmap);
177 DECL_TEMPLATE(generic, sys_truncate);
178 DECL_TEMPLATE(generic, sys_ftruncate);
179 DECL_TEMPLATE(generic, sys_fchmod);
180 DECL_TEMPLATE(generic, sys_msync);
181 DECL_TEMPLATE(generic, sys_readv);
182 DECL_TEMPLATE(generic, sys_writev);
183 DECL_TEMPLATE(generic, sys_getsid);
184 DECL_TEMPLATE(generic, sys_fdatasync);
185 DECL_TEMPLATE(generic, sys_mlock);
186 DECL_TEMPLATE(generic, sys_munlock);
187 DECL_TEMPLATE(generic, sys_mlockall);
188 DECL_TEMPLATE(generic, sys_nanosleep);
189 DECL_TEMPLATE(generic, sys_mremap); // POSIX, but Linux arg order may be odd
190 DECL_TEMPLATE(generic, sys_getuid);
191 DECL_TEMPLATE(generic, sys_getgid);
192 DECL_TEMPLATE(generic, sys_geteuid);
193 DECL_TEMPLATE(generic, sys_getegid);
194 DECL_TEMPLATE(generic, sys_getpgid);
195 DECL_TEMPLATE(generic, sys_fsync);
196 DECL_TEMPLATE(generic, sys_wait4);
197 DECL_TEMPLATE(generic, sys_mprotect);
198 DECL_TEMPLATE(generic, sys_getcwd);
199 DECL_TEMPLATE(generic, sys_symlink);
200 DECL_TEMPLATE(generic, sys_getgroups);
201 DECL_TEMPLATE(generic, sys_setgroups); // SVr4, SVID, X/OPEN, 4.3BSD
202 DECL_TEMPLATE(generic, sys_chown);
203 DECL_TEMPLATE(generic, sys_setuid);
204 DECL_TEMPLATE(generic, sys_gettimeofday);
205 DECL_TEMPLATE(generic, sys_madvise);
206 DECL_TEMPLATE(generic, sys_sethostname);
208 // These ones aren't POSIX, but are in some standard and look reasonably
209 // generic, and are the same for all architectures under Linux.
210 DECL_TEMPLATE(generic, sys_nice); // SVr4, SVID EXT, AT&T, X/OPEN, BSD 4.3
211 DECL_TEMPLATE(generic, sys_sync); // SVr4, SVID, X/OPEN, BSD 4.3
212 DECL_TEMPLATE(generic, sys_brk); // 4.3BSD
213 DECL_TEMPLATE(generic, sys_acct); // SVR4, non-POSIX
214 DECL_TEMPLATE(generic, sys_chroot); // SVr4, SVID, 4.4BSD, X/OPEN
215 DECL_TEMPLATE(generic, sys_readlink); // X/OPEN, 4.4BSD
216 DECL_TEMPLATE(generic, sys_fchdir); // SVr4, SVID, POSIX, X/OPEN, 4.4BSD
217 DECL_TEMPLATE(generic, sys_getdents); // SVr4,SVID
218 DECL_TEMPLATE(generic, sys_select); // 4.4BSD
219 DECL_TEMPLATE(generic, sys_flock); // 4.4BSD
220 DECL_TEMPLATE(generic, sys_poll); // XPG4-UNIX
221 DECL_TEMPLATE(generic, sys_getrusage); // SVr4, 4.3BSD
222 DECL_TEMPLATE(generic, sys_stime); // SVr4, SVID, X/OPEN
223 DECL_TEMPLATE(generic, sys_settimeofday); // SVr4, 4.3BSD (non-POSIX)
224 DECL_TEMPLATE(generic, sys_getpriority); // SVr4, 4.4BSD
225 DECL_TEMPLATE(generic, sys_setpriority); // SVr4, 4.4BSD
226 DECL_TEMPLATE(generic, sys_setitimer); // SVr4, 4.4BSD
227 DECL_TEMPLATE(generic, sys_getitimer); // SVr4, 4.4BSD
228 DECL_TEMPLATE(generic, sys_setreuid); // 4.3BSD
229 DECL_TEMPLATE(generic, sys_setregid); // 4.3BSD
230 DECL_TEMPLATE(generic, sys_fchown); // SVr4,4.3BSD
231 DECL_TEMPLATE(generic, sys_setgid); // SVr4,SVID
232 DECL_TEMPLATE(generic, sys_utimes); // 4.3BSD
234 // May not be generic for every architecture under Linux.
235 DECL_TEMPLATE(generic, sys_sigaction); // (x86) P
237 // Funny names, not sure...
238 DECL_TEMPLATE(generic, sys_newstat); // * P
239 DECL_TEMPLATE(generic, sys_newlstat); // *
240 DECL_TEMPLATE(generic, sys_newfstat); // * P (SVr4,BSD4.3)
242 // For the remainder, not really sure yet
243 DECL_TEMPLATE(generic, sys_ptrace); // (x86?) (almost-P)
244 DECL_TEMPLATE(generic, sys_setrlimit); // SVr4, 4.3BSD
245 DECL_TEMPLATE(generic, sys_old_getrlimit); // SVr4, 4.3BSD L?
246 DECL_TEMPLATE(generic, sys_statfs); // * L?
247 DECL_TEMPLATE(generic, sys_fstatfs); // * L?
248 DECL_TEMPLATE(generic, sys_iopl); // (x86/amd64) L
249 DECL_TEMPLATE(generic, sys_newuname); // * P
250 DECL_TEMPLATE(generic, sys_pread64); // * (Unix98?)
251 DECL_TEMPLATE(generic, sys_pwrite64); // * (Unix98?)
252 DECL_TEMPLATE(generic, sys_sigaltstack); // (x86) (XPG4-UNIX)
253 DECL_TEMPLATE(generic, sys_getpmsg); // (?) (?)
254 DECL_TEMPLATE(generic, sys_putpmsg); // (?) (?)
255 DECL_TEMPLATE(generic, sys_getrlimit); // * (?)
256 DECL_TEMPLATE(generic, sys_truncate64); // %% (P?)
257 DECL_TEMPLATE(generic, sys_ftruncate64); // %% (P?)
258 DECL_TEMPLATE(generic, sys_lchown); // * (L?)
259 DECL_TEMPLATE(generic, sys_mincore); // * L?
260 DECL_TEMPLATE(generic, sys_getdents64); // * (SVr4,SVID?)
261 DECL_TEMPLATE(generic, sys_statfs64); // * (?)
262 DECL_TEMPLATE(generic, sys_fstatfs64); // * (?)
265 /* ---------------------------------------------------------------------
266 Wrappers for sockets and ipc-ery. These are split into standalone
267 procedures because some platforms hides them inside multiplexors
268 (sys_socketcall and sys_ipc).
269 ------------------------------------------------------------------ */
271 #define TId ThreadId
272 #define UW UWord
273 #define SR SysRes
275 extern void ML_(generic_PRE_sys_socketpair) ( TId, UW, UW, UW, UW );
276 extern SysRes ML_(generic_POST_sys_socketpair) ( TId, SR, UW, UW, UW, UW );
277 extern SysRes ML_(generic_POST_sys_socket) ( TId, SR );
278 extern void ML_(generic_PRE_sys_bind) ( TId, UW, UW, UW );
279 extern void ML_(generic_PRE_sys_accept) ( TId, UW, UW, UW );
280 extern SysRes ML_(generic_POST_sys_accept) ( TId, SR, UW, UW, UW );
281 extern void ML_(generic_PRE_sys_sendto) ( TId, UW, UW, UW, UW, UW, UW );
282 extern void ML_(generic_PRE_sys_send) ( TId, UW, UW, UW );
283 extern void ML_(generic_PRE_sys_recvfrom) ( TId, UW, UW, UW, UW, UW, UW );
284 extern void ML_(generic_POST_sys_recvfrom) ( TId, SR, UW, UW, UW, UW, UW, UW );
285 extern void ML_(generic_PRE_sys_recv) ( TId, UW, UW, UW );
286 extern void ML_(generic_POST_sys_recv) ( TId, UW, UW, UW, UW );
287 extern void ML_(generic_PRE_sys_connect) ( TId, UW, UW, UW );
288 extern void ML_(generic_PRE_sys_setsockopt) ( TId, UW, UW, UW, UW, UW );
289 extern void ML_(generic_PRE_sys_getsockname) ( TId, UW, UW, UW );
290 extern void ML_(generic_POST_sys_getsockname) ( TId, SR, UW, UW, UW );
291 extern void ML_(generic_PRE_sys_getpeername) ( TId, UW, UW, UW );
292 extern void ML_(generic_POST_sys_getpeername) ( TId, SR, UW, UW, UW );
293 extern void ML_(generic_PRE_sys_sendmsg) ( TId, const HChar *,
294 struct vki_msghdr * );
295 extern void ML_(generic_PRE_sys_recvmsg) ( TId, const HChar *,
296 struct vki_msghdr * );
297 extern void ML_(generic_POST_sys_recvmsg) ( TId, const HChar *,
298 struct vki_msghdr *, UInt );
300 extern void ML_(generic_PRE_sys_semop) ( TId, UW, UW, UW );
301 extern void ML_(generic_PRE_sys_semtimedop) ( TId, UW, UW, UW, UW );
302 extern void ML_(generic_PRE_sys_semctl) ( TId, UW, UW, UW, UW );
303 extern void ML_(generic_POST_sys_semctl) ( TId, UW, UW, UW, UW, UW );
304 extern UWord ML_(generic_PRE_sys_shmat) ( TId, UW, UW, UW );
305 extern void ML_(generic_POST_sys_shmat) ( TId, UW, UW, UW, UW );
306 extern Bool ML_(generic_PRE_sys_shmdt) ( TId, UW );
307 extern void ML_(generic_POST_sys_shmdt) ( TId, UW, UW );
308 extern void ML_(generic_PRE_sys_shmctl) ( TId, UW, UW, UW );
309 extern void ML_(generic_POST_sys_shmctl) ( TId, UW, UW, UW, UW );
311 extern SysRes ML_(generic_PRE_sys_mmap) ( TId, UW, UW, UW, UW, UW, Off64T );
313 #define PRE_timeval_READ(zzname, zzarg) \
314 do { \
315 struct vki_timeval *zztv = (struct vki_timeval *)(zzarg); \
316 PRE_FIELD_READ(zzname, zztv->tv_sec); \
317 PRE_FIELD_READ(zzname, zztv->tv_usec); \
318 } while (0)
319 #define PRE_timeval_WRITE(zzname, zzarg) \
320 do { \
321 struct vki_timeval *zztv = (struct vki_timeval *)(zzarg); \
322 PRE_FIELD_WRITE(zzname, zztv->tv_sec); \
323 PRE_FIELD_WRITE(zzname, zztv->tv_usec); \
324 } while (0)
325 #define POST_timeval_WRITE(zzarg) \
326 do { \
327 struct vki_timeval *zztv = (struct vki_timeval *)(zzarg); \
328 POST_FIELD_WRITE(zztv->tv_sec); \
329 POST_FIELD_WRITE(zztv->tv_usec); \
330 } while (0)
333 #undef TId
334 #undef UW
335 #undef SR
338 /////////////////////////////////////////////////////////////////
341 #endif // __PRIV_SYSWRAP_GENERIC_H
343 /*--------------------------------------------------------------------*/
344 /*--- end ---*/
345 /*--------------------------------------------------------------------*/