blob: 03a64a4f9019f4a9718e988849a54a48e3a5f87b [file] [log] [blame]
sewardjad833942006-10-14 19:34:11 +00001
2/*--------------------------------------------------------------------*/
3/*--- Notional "implementation" for m_vkiscnums. ---*/
4/*--- m_vkiscnums.c ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
10
Elliott Hughesed398002017-06-21 14:41:24 -070011 Copyright (C) 2006-2017 OpenWorks LLP
sewardjad833942006-10-14 19:34:11 +000012 info@open-works.co.uk
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
29 The GNU General Public License is contained in the file COPYING.
30*/
31
32#include "pub_core_basics.h"
njn1a1e95c2009-06-03 06:50:06 +000033#include "pub_core_libcprint.h"
sewardjad833942006-10-14 19:34:11 +000034#include "pub_core_vkiscnums.h" /* self */
35
36/* We have pub_{core,tool}_vkiscnums.h. This is the matching implementation
37 for that interface.
38
39 On Linux, the interface exports a bunch of "#define __NR_foo 42" style
40 definitions, so there is no implementation.
sewardjad833942006-10-14 19:34:11 +000041*/
42
njn1a1e95c2009-06-03 06:50:06 +000043//---------------------------------------------------------------------------
44#if defined(VGO_linux)
45//---------------------------------------------------------------------------
46
florian11233622014-08-12 11:43:17 +000047const HChar* VG_(sysnum_string)(Word sysnum)
njn1a1e95c2009-06-03 06:50:06 +000048{
florian11233622014-08-12 11:43:17 +000049 static HChar buf[20+1]; // large enough
njn1a1e95c2009-06-03 06:50:06 +000050
florian11233622014-08-12 11:43:17 +000051 VG_(sprintf)(buf, "%ld", sysnum);
52 return buf;
njn1a1e95c2009-06-03 06:50:06 +000053}
54
sewardjbd664fd2015-07-08 17:08:23 +000055/* include/pub_tool_basics.h hardcodes the following syscall numbers
56 on mips{32,64}-linux so as to avoid a module cycle. We make that
57 safe here by causing the build to fail if those numbers should ever
58 change. See comments in function sr_EQ in the mips{32,64}-linux
59 section of include/pub_tool_basics.h for more details. */
60#if defined(VGP_mips32_linux)
61STATIC_ASSERT(__NR_pipe == 4042);
62STATIC_ASSERT(__NR_pipe2 == 4328);
petarj435aa2c2015-07-15 18:07:36 +000063#elif defined(VGP_mips64_linux)
sewardjbd664fd2015-07-08 17:08:23 +000064STATIC_ASSERT(__NR_pipe == 5021);
65STATIC_ASSERT(__NR_pipe2 == 5287);
66#endif
67
njn1a1e95c2009-06-03 06:50:06 +000068//---------------------------------------------------------------------------
njn1a1e95c2009-06-03 06:50:06 +000069#elif defined(VGO_darwin)
70//---------------------------------------------------------------------------
71
florianbc7e5392014-08-12 21:11:44 +000072const HChar* VG_(sysnum_string)(Word sysnum)
njn1a1e95c2009-06-03 06:50:06 +000073{
florian11233622014-08-12 11:43:17 +000074 static HChar buf[7+1+20+1]; // large enough
75
floriandbb35842012-10-27 18:39:11 +000076 const HChar* classname = NULL;
njn1a1e95c2009-06-03 06:50:06 +000077 switch (VG_DARWIN_SYSNO_CLASS(sysnum)) {
sewardj12445b82010-07-01 11:15:32 +000078 case VG_DARWIN_SYSCALL_CLASS_MACH: classname = "mach"; break;
79 case VG_DARWIN_SYSCALL_CLASS_UNIX: classname = "unix"; break;
80 case VG_DARWIN_SYSCALL_CLASS_MDEP: classname = "mdep"; break;
81 case VG_DARWIN_SYSCALL_CLASS_DIAG: classname = "diag"; break;
82 default: classname = "UNKNOWN"; break;
njn1a1e95c2009-06-03 06:50:06 +000083 }
florianbc7e5392014-08-12 21:11:44 +000084 VG_(sprintf)(buf, "%s:%ld", classname, VG_DARWIN_SYSNO_INDEX(sysnum));
njn1a1e95c2009-06-03 06:50:06 +000085 return buf;
86}
87
njn1a1e95c2009-06-03 06:50:06 +000088//---------------------------------------------------------------------------
sewardj8eb8bab2015-07-21 14:44:28 +000089#elif defined(VGO_solaris)
90//---------------------------------------------------------------------------
91
92const HChar *VG_(sysnum_string)(Word sysnum)
93{
94 static HChar buf[8+20+1]; // large enough
95
96 const HChar* classname = NULL;
97 switch (VG_SOLARIS_SYSNO_CLASS(sysnum)) {
98 case VG_SOLARIS_SYSCALL_CLASS_CLASSIC: classname = ""; break;
99 case VG_SOLARIS_SYSCALL_CLASS_FASTTRAP: classname = "fast:"; break;
100 default: classname = "UNKNOWN:"; break;
101 }
102 VG_(sprintf)(buf, "%s%ld", classname, VG_SOLARIS_SYSNO_INDEX(sysnum));
103 return buf;
104}
105
106//---------------------------------------------------------------------------
njn1a1e95c2009-06-03 06:50:06 +0000107#else
108//---------------------------------------------------------------------------
109# error Unknown OS
110#endif
sewardjad833942006-10-14 19:34:11 +0000111
112/*--------------------------------------------------------------------*/
113/*--- end ---*/
114/*--------------------------------------------------------------------*/