OSDN Git Service

539bb124986a68526ee1f9bd5d2572152044b5eb
[linuxjm/jm.git] / manual / LDP_man-pages / original / man2 / syscall.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\"    must display the following acknowledgement:
15 .\"     This product includes software developed by the University of
16 .\"     California, Berkeley and its contributors.
17 .\" 4. Neither the name of the University nor the names of its contributors
18 .\"    may be used to endorse or promote products derived from this software
19 .\"    without specific prior written permission.
20 .\"
21 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" SUCH DAMAGE.
32 .\" %%%LICENSE_END
33 .\"
34 .\"     @(#)syscall.2   8.1 (Berkeley) 6/16/93
35 .\"
36 .\"
37 .\" 2002-03-20  Christoph Hellwig <hch@infradead.org>
38 .\"     - adopted for Linux
39 .\"
40 .TH SYSCALL 2 2014-01-11 "Linux" "Linux Programmer's Manual"
41 .SH NAME
42 syscall \- indirect system call
43 .SH SYNOPSIS
44 .nf
45 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
46 .B #include <unistd.h>
47 .BR "#include <sys/syscall.h>   "  "/* For SYS_xxx definitions */"
48
49 .BI "int syscall(int " number ", ...);"
50 .fi
51 .SH DESCRIPTION
52 .BR syscall ()
53 is a small library function that invokes
54 the system call whose assembly language
55 interface has the specified
56 .I number
57 with the specified arguments.
58 Employing
59 .BR syscall ()
60 is useful, for example,
61 when invoking a system call that has no wrapper function in the C library.
62
63 .BR syscall ()
64 saves CPU registers before making the system call,
65 restores the registers upon return from the system call,
66 and stores any error code returned by the system call in
67 .BR errno (3)
68 if an error occurs.
69
70 Symbolic constants for system call numbers can be found in the header file
71 .IR <sys/syscall.h> .
72 .SH RETURN VALUE
73 The return value is defined by the system call being invoked.
74 In general, a 0 return value indicates success.
75 A \-1 return value indicates an error,
76 and an error code is stored in
77 .IR errno .
78 .SH NOTES
79 .BR syscall ()
80 first appeared in
81 4BSD.
82 .SS Architecture-specific requirements
83 Each architecture ABI has its own requirements on how
84 system call arguments are passed to the kernel.
85 For system calls that have a glibc wrapper (e.g., most system calls),
86 glibc handles the details of copying arguments to the right registers
87 in a manner suitable for the architecture.
88 However, when using
89 .BR syscall ()
90 to make a system call,
91 the caller might need to handle architecture-dependent details;
92 this requirement is most commonly encountered on certain 32-bit architectures.
93
94 For example, on the ARM architecture Embedded ABI (EABI), a
95 64-bit value (e.g.,
96 .IR "long long" )
97 must be aligned to an even register pair.
98 Thus, using
99 .BR syscall ()
100 instead of the wrapper provided by glibc,
101 the
102 .BR readahead ()
103 system call would be invoked as follows on the ARM architecture with the EABI:
104
105 .in +4n
106 .nf
107 syscall(SYS_readahead, fd, 0,
108         (unsigned int) (offset >> 32),
109         (unsigned int) (offset & 0xFFFFFFFF),
110         count);
111 .fi
112 .in
113 .PP
114 Since the offset argument is 64 bits, and the first argument
115 .RI ( fd )
116 is passed in
117 .IR r0 ,
118 the caller must manually split and align the 64-bit value
119 so that it is passed in the
120 .IR r2 / r3
121 register pair.
122 That means inserting a dummy value into
123 .I r1
124 (the second argument of 0).
125
126 Similar issues can occur on MIPS with the O32 ABI,
127 on PowerPC with the 32-bit ABI, and on Xtensa.
128 .\" Mike Frysinger: this issue ends up forcing MIPS
129 .\" O32 to take 7 arguments to syscall()
130
131 The affected system calls are
132 .BR fadvise64_64 (2),
133 .BR ftruncate64 (2),
134 .BR posix_fadvise (2),
135 .BR pread64 (2),
136 .BR pwrite64 (2),
137 .BR readahead (2),
138 .BR sync_file_range (2),
139 and
140 .BR truncate64 (2).
141 .SS Architecture calling conventions
142 Every architecture has its own way of invoking and passing arguments to the
143 kernel.
144 The details for various architectures are listed in the two tables below.
145
146 The first table lists the instruction used to transition to kernel mode,
147 (which might not be the fastest or best way to transition to the kernel,
148 so you might have to refer to
149 .BR vdso (7)),
150 the register used to indicate the system call number,
151 and the register used to return the system call result.
152 .if t \{\
153 .ft CW
154 \}
155 .TS
156 l l1 l l1 l.
157 arch/ABI        instruction     syscall #       retval  Notes
158 _
159 arm/OABI        swi NR  -       a1      NR is syscall #
160 arm/EABI        swi 0x0 r7      r0
161 blackfin        excpt 0x0       P0      R0
162 i386    int $0x80       eax     eax
163 ia64    break 0x100000  r15     r10/r8  bool error/errno value
164 parisc  ble 0x100(%sr2, %r0)    r20     r28
165 s390    svc 0   r1      r2      NR may be passed directly with
166 s390x   svc 0   r1      r2      "svc NR" if NR is less than 256
167 sparc/32        t 0x10  g1      o0
168 sparc/64        t 0x6d  g1      o0
169 x86_64  syscall rax     rax
170 .TE
171 .if t \{\
172 .in
173 .ft P
174 \}
175 .PP
176 The second table shows the registers used to pass the system call arguments.
177 .if t \{\
178 .ft CW
179 \}
180 .TS
181 l l l l l l l l.
182 arch/ABI        arg1    arg2    arg3    arg4    arg5    arg6    arg7
183 _
184 arm/OABI        a1      a2      a3      a4      v1      v2      v3
185 arm/EABI        r0      r1      r2      r3      r4      r5      r6
186 blackfin        R0      R1      R2      R3      R4      R5      -
187 i386    ebx     ecx     edx     esi     edi     ebp     -
188 ia64    out0    out1    out2    out3    out4    out5    -
189 parisc  r26     r25     r24     r23     r22     r21     -
190 s390    r2      r3      r4      r5      r6      r7      -
191 s390x   r2      r3      r4      r5      r6      r7      -
192 sparc/32        o0      o1      o2      o3      o4      o5      -
193 sparc/64        o0      o1      o2      o3      o4      o5      -
194 x86_64  rdi     rsi     rdx     r10     r8      r9      -
195 .TE
196 .if t \{\
197 .in
198 .ft P
199 \}
200 .PP
201 Note that these tables don't cover the entire calling convention\(emsome
202 architectures may indiscriminately clobber other registers not listed here.
203 .SH EXAMPLE
204 .nf
205 #define _GNU_SOURCE
206 #include <unistd.h>
207 #include <sys/syscall.h>
208 #include <sys/types.h>
209 #include <signal.h>
210
211 int
212 main(int argc, char *argv[])
213 {
214     pid_t tid;
215
216     tid = syscall(SYS_gettid);
217     tid = syscall(SYS_tgkill, getpid(), tid, SIGHUP);
218 }
219 .fi
220 .SH SEE ALSO
221 .BR _syscall (2),
222 .BR intro (2),
223 .BR syscalls (2),
224 .BR vdso (7)