blob: 8c7bdba598208a93e54392776bf4a9ea4d049769 [file] [log] [blame]
njn9abd6082005-06-17 21:31:45 +00001
2/*--------------------------------------------------------------------*/
3/*--- Doing system calls. pub_core_syscall.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj0f157dd2013-10-18 14:27:36 +000010 Copyright (C) 2000-2013 Julian Seward
njn9abd6082005-06-17 21:31:45 +000011 jseward@acm.org
12
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.
17
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.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_SYSCALL_H
32#define __PUB_CORE_SYSCALL_H
33
florian535fb1b2013-09-15 13:54:34 +000034#include "pub_core_basics.h" // VG_ macro
35
njn9abd6082005-06-17 21:31:45 +000036//--------------------------------------------------------------------
37// PURPOSE: This module contains the code for actually executing syscalls.
38//--------------------------------------------------------------------
39
njnb08a6b72009-05-21 03:52:03 +000040/* Do a syscall on this platform, with 8 args, and return the result
njn9abd6082005-06-17 21:31:45 +000041 in canonical format in a SysRes value. */
42
43// We use a full prototype for VG_(do_syscall) rather than "..." to ensure
44// that all arguments get converted to a UWord appropriately. Not doing so
45// can cause problems when passing 32-bit integers on 64-bit platforms,
46// because the top 32-bits might not be zeroed appropriately, eg. as would
47// happen with the 6th arg on AMD64 which is passed on the stack.
48
49extern SysRes VG_(do_syscall) ( UWord sysno,
50 UWord, UWord, UWord,
sewardj17edf032006-10-17 01:53:34 +000051 UWord, UWord, UWord,
52 UWord, UWord );
njn9abd6082005-06-17 21:31:45 +000053
54/* Macros make life easier. */
55
sewardj17edf032006-10-17 01:53:34 +000056#define vgPlain_do_syscall0(s) VG_(do_syscall)((s),0,0,0,0,0,0,0,0)
57#define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),\
58 0,0,0,0,0,0,0)
59#define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),\
60 0,0,0,0,0,0)
61#define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),\
62 0,0,0,0,0)
njnb08a6b72009-05-21 03:52:03 +000063#define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),\
64 (d),0,0,0,0)
65#define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),\
66 (d),(e),0,0,0)
sewardj17edf032006-10-17 01:53:34 +000067#define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),\
68 (d),(e),(f),0,0)
njnb08a6b72009-05-21 03:52:03 +000069#define vgPlain_do_syscall7(s,a,b,c,d,e,f,g) VG_(do_syscall)((s),(a),(b),(c),\
70 (d),(e),(f),(g),0)
71#define vgPlain_do_syscall8(s,a,b,c,d,e,f,g,h) VG_(do_syscall)((s),(a),(b),(c),\
72 (d),(e),(f),(g),(h))
njn9abd6082005-06-17 21:31:45 +000073
njncda2f0f2009-05-18 02:12:08 +000074extern SysRes VG_(mk_SysRes_x86_linux) ( Int val );
75extern SysRes VG_(mk_SysRes_amd64_linux) ( Long val );
sewardj2c48c7b2005-11-29 13:05:56 +000076extern SysRes VG_(mk_SysRes_ppc32_linux) ( UInt val, UInt cr0so );
77extern SysRes VG_(mk_SysRes_ppc64_linux) ( ULong val, ULong cr0so );
sewardj59570ff2010-01-01 11:59:33 +000078extern SysRes VG_(mk_SysRes_arm_linux) ( Int val );
sewardjf0c12502014-01-12 12:54:00 +000079extern SysRes VG_(mk_SysRes_arm64_linux) ( Long val );
njnf76d27a2009-05-28 01:53:07 +000080extern SysRes VG_(mk_SysRes_x86_darwin) ( UChar scclass, Bool isErr,
81 UInt wHI, UInt wLO );
82extern SysRes VG_(mk_SysRes_amd64_darwin)( UChar scclass, Bool isErr,
83 ULong wHI, ULong wLO );
sewardjb5b87402011-03-07 16:05:35 +000084extern SysRes VG_(mk_SysRes_s390x_linux) ( Long val );
sewardj5db15402012-06-07 09:13:21 +000085extern SysRes VG_(mk_SysRes_mips32_linux)( UWord v0, UWord v1,
86 UWord a3 );
petarj4df0bfc2013-02-27 23:17:33 +000087extern SysRes VG_(mk_SysRes_mips64_linux)( ULong v0, ULong v1,
88 ULong a3 );
sewardj112711a2015-04-10 12:30:09 +000089extern SysRes VG_(mk_SysRes_tilegx_linux)( Long val );
cerion85665ca2005-06-20 15:51:07 +000090extern SysRes VG_(mk_SysRes_Error) ( UWord val );
91extern SysRes VG_(mk_SysRes_Success) ( UWord val );
njn9abd6082005-06-17 21:31:45 +000092
sewardj45f4e7c2005-09-27 19:20:21 +000093
njncda2f0f2009-05-18 02:12:08 +000094
sewardj45f4e7c2005-09-27 19:20:21 +000095/* Return a string which gives the name of an error value. Note,
96 unlike the standard C syserror fn, the returned string is not
97 malloc-allocated or writable -- treat it as a constant. */
98
99extern const HChar* VG_(strerror) ( UWord errnum );
100
101
njn9abd6082005-06-17 21:31:45 +0000102#endif // __PUB_CORE_SYSCALL_H
103
104/*--------------------------------------------------------------------*/
105/*--- end ---*/
106/*--------------------------------------------------------------------*/