blob: f3bfeba4b22aa067d9f91df4e72db125f761d282 [file] [log] [blame]
Devon H. O'Dell553be842009-11-14 15:29:09 -08001#!/usr/bin/env bash
Russ Cox602a4462009-06-01 22:14:57 -07002# Copyright 2009 The Go Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
6# The syscall package provides access to the raw system call
7# interface of the underlying operating system. Porting Go to
8# a new architecture/operating system combination requires
9# some manual effort, though there are tools that automate
10# much of the process. The auto-generated files have names
11# beginning with z.
12#
Russ Coxfd1add22009-11-01 11:13:27 -080013# This script runs or (given -n) prints suggested commands to generate z files
Russ Cox602a4462009-06-01 22:14:57 -070014# for the current system. Running those commands is not automatic.
15# This script is documentation more than anything else.
16#
17# * asm_${GOOS}_${GOARCH}.s
18#
19# This hand-written assembly file implements system call dispatch.
20# There are three entry points:
21#
22# func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr);
23# func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr);
24# func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr);
25#
26# The first and second are the standard ones; they differ only in
27# how many arguments can be passed to the kernel.
28# The third is for low-level use by the ForkExec wrapper;
29# unlike the first two, it does not call into the scheduler to
30# let it know that a system call is running.
31#
32# * syscall_${GOOS}.go
33#
34# This hand-written Go file implements system calls that need
35# special handling and lists "//sys" comments giving prototypes
36# for ones that can be auto-generated. Mksyscall reads those
37# comments to generate the stubs.
38#
39# * syscall_${GOOS}_${GOARCH}.go
40#
41# Same as syscall_${GOOS}.go except that it contains code specific
42# to ${GOOS} on one particular architecture.
43#
44# * types_${GOOS}.c
45#
46# This hand-written C file includes standard C headers and then
47# creates typedef or enum names beginning with a dollar sign
48# (use of $ in variable names is a gcc extension). The hardest
49# part about preparing this file is figuring out which headers to
50# include and which symbols need to be #defined to get the
51# actual data structures that pass through to the kernel system calls.
52# Some C libraries present alternate versions for binary compatibility
53# and translate them on the way in and out of system calls, but
54# there is almost always a #define that can get the real ones.
55# See types_darwin.c and types_linux.c for examples.
56#
Russ Cox602a4462009-06-01 22:14:57 -070057# * zerror_${GOOS}_${GOARCH}.go
58#
59# This machine-generated file defines the system's error numbers,
Rob Pikecd324982009-08-13 13:22:37 -070060# error strings, and signal numbers. The generator is "mkerrors.sh".
61# Usually no arguments are needed, but mkerrors.sh will pass its
Russ Cox602a4462009-06-01 22:14:57 -070062# arguments on to godefs.
63#
64# * zsyscall_${GOOS}_${GOARCH}.go
65#
Rob Pike319a8c42011-03-21 13:02:10 -070066# Generated by mksyscall.pl; see syscall_${GOOS}.go above.
Russ Cox602a4462009-06-01 22:14:57 -070067#
68# * zsysnum_${GOOS}_${GOARCH}.go
69#
70# Generated by mksysnum_${GOOS}.
71#
72# * ztypes_${GOOS}_${GOARCH}.go
73#
74# Generated by godefs; see types_${GOOS}.c above.
75
76GOOSARCH="${GOOS}_${GOARCH}"
77
78# defaults
Rob Pike319a8c42011-03-21 13:02:10 -070079mksyscall="./mksyscall.pl"
Alex Brainman8c24fa92010-03-17 20:07:14 -070080mkerrors="./mkerrors.sh"
Alex Brainmane71fc0c2011-07-07 10:40:45 +100081zerrors="zerrors_$GOOSARCH.go"
Joel Sing773a9212011-11-17 23:13:49 +110082mksysctl=""
83zsysctl="zsysctl_$GOOSARCH.go"
Alex Brainmanc07ca772014-03-11 16:36:14 +110084mksysnum=
85mktypes=
Russ Coxfd1add22009-11-01 11:13:27 -080086run="sh"
87
88case "$1" in
Russ Cox48ae1f22011-04-06 17:52:02 -040089-syscalls)
90 for i in zsyscall*go
91 do
Han-Wen Nienhuys4dc85d62012-07-29 17:59:14 -040092 sed 1q $i | sed 's;^// ;;' | sh > _$i && gofmt < _$i > $i
93 rm _$i
Russ Cox48ae1f22011-04-06 17:52:02 -040094 done
95 exit 0
96 ;;
Russ Coxfd1add22009-11-01 11:13:27 -080097-n)
98 run="cat"
99 shift
100esac
101
102case "$#" in
1030)
104 ;;
105*)
106 echo 'usage: mkall.sh [-n]' 1>&2
107 exit 2
108esac
Russ Cox602a4462009-06-01 22:14:57 -0700109
Shenghou Mac74a4d42014-08-12 19:49:31 -0400110GOOSARCH_in=syscall_$GOOSARCH.go
Russ Cox602a4462009-06-01 22:14:57 -0700111case "$GOOSARCH" in
112_* | *_ | _)
113 echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2
114 exit 1
115 ;;
116darwin_386)
Russ Coxdd2abe52011-11-10 19:08:28 -0500117 mkerrors="$mkerrors -m32"
Rob Pike319a8c42011-03-21 13:02:10 -0700118 mksyscall="./mksyscall.pl -l32"
Jeff Hodges0ce57a72011-06-14 12:56:46 -0400119 mksysnum="./mksysnum_darwin.pl /usr/include/sys/syscall.h"
Mikio Hara44122ed2012-02-03 12:22:40 +0900120 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Russ Cox602a4462009-06-01 22:14:57 -0700121 ;;
122darwin_amd64)
Russ Coxdd2abe52011-11-10 19:08:28 -0500123 mkerrors="$mkerrors -m64"
Jeff Hodges0ce57a72011-06-14 12:56:46 -0400124 mksysnum="./mksysnum_darwin.pl /usr/include/sys/syscall.h"
Mikio Hara44122ed2012-02-03 12:22:40 +0900125 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Russ Cox602a4462009-06-01 22:14:57 -0700126 ;;
Joel Sing465ba6b2013-08-31 09:32:07 -0700127dragonfly_386)
128 mkerrors="$mkerrors -m32"
129 mksyscall="./mksyscall.pl -l32 -dragonfly"
130 mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl"
131 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
132 ;;
Joel Sing8f3f4c92013-08-24 01:51:25 +1000133dragonfly_amd64)
134 mkerrors="$mkerrors -m64"
135 mksyscall="./mksyscall.pl -dragonfly"
136 mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl"
137 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
138 ;;
Mikio Hara055b4f72011-12-16 19:51:25 +0900139freebsd_386)
140 mkerrors="$mkerrors -m32"
141 mksyscall="./mksyscall.pl -l32"
Mikio Hara737efeb2014-03-04 09:26:01 +0900142 mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900143 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Mikio Hara055b4f72011-12-16 19:51:25 +0900144 ;;
145freebsd_amd64)
146 mkerrors="$mkerrors -m64"
Mikio Hara737efeb2014-03-04 09:26:01 +0900147 mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900148 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Mikio Hara055b4f72011-12-16 19:51:25 +0900149 ;;
Shenghou Ma378d7ef2012-10-12 16:26:42 +0800150freebsd_arm)
151 mkerrors="$mkerrors"
152 mksyscall="./mksyscall.pl -l32 -arm"
Mikio Hara737efeb2014-03-04 09:26:01 +0900153 mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
Mikio Hara546081f2014-02-07 10:23:53 +0900154 # Let the type of C char be singed for making the bare syscall
155 # API consistent across over platforms.
156 mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
Shenghou Ma378d7ef2012-10-12 16:26:42 +0800157 ;;
Russ Cox802d6d42009-06-04 13:33:40 -0700158linux_386)
Russ Coxdd2abe52011-11-10 19:08:28 -0500159 mkerrors="$mkerrors -m32"
Rob Pike319a8c42011-03-21 13:02:10 -0700160 mksyscall="./mksyscall.pl -l32"
161 mksysnum="./mksysnum_linux.pl /usr/include/asm/unistd_32.h"
Mikio Hara44122ed2012-02-03 12:22:40 +0900162 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Russ Cox802d6d42009-06-04 13:33:40 -0700163 ;;
Russ Cox602a4462009-06-01 22:14:57 -0700164linux_amd64)
Brad Fitzpatrickfc393632012-12-11 12:03:18 -0500165 unistd_h=$(ls -1 /usr/include/asm/unistd_64.h /usr/include/x86_64-linux-gnu/asm/unistd_64.h 2>/dev/null | head -1)
166 if [ "$unistd_h" = "" ]; then
167 echo >&2 cannot find unistd_64.h
168 exit 1
169 fi
Russ Coxdd2abe52011-11-10 19:08:28 -0500170 mkerrors="$mkerrors -m64"
Brad Fitzpatrickfc393632012-12-11 12:03:18 -0500171 mksysnum="./mksysnum_linux.pl $unistd_h"
Mikio Hara44122ed2012-02-03 12:22:40 +0900172 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Russ Cox602a4462009-06-01 22:14:57 -0700173 ;;
Kai Backmane5c884f2009-10-01 06:55:01 -0700174linux_arm)
Kai Backman534dbc72010-08-23 13:25:14 +0300175 mkerrors="$mkerrors"
Shenghou Ma6e211222012-03-06 03:12:11 +0800176 mksyscall="./mksyscall.pl -l32 -arm"
Rémy Oudompheng4a7a72b2013-08-22 00:59:48 +0200177 mksysnum="curl -s 'http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/arch/arm/include/uapi/asm/unistd.h' | ./mksysnum_linux.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900178 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Kai Backmane5c884f2009-10-01 06:55:01 -0700179 ;;
Russ Cox09d92b62014-12-05 19:13:20 -0500180linux_ppc64)
181 GOOSARCH_in=syscall_linux_ppc64x.go
Shenghou Mac74a4d42014-08-12 19:49:31 -0400182 unistd_h=/usr/include/asm/unistd.h
183 mkerrors="$mkerrors -m64"
184 mksysnum="./mksysnum_linux.pl $unistd_h"
185 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
186 ;;
Russ Cox09d92b62014-12-05 19:13:20 -0500187linux_ppc64le)
188 GOOSARCH_in=syscall_linux_ppc64x.go
Shenghou Mac74a4d42014-08-12 19:49:31 -0400189 unistd_h=/usr/include/powerpc64le-linux-gnu/asm/unistd.h
190 mkerrors="$mkerrors -m64"
191 mksysnum="./mksysnum_linux.pl $unistd_h"
192 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
193 ;;
Dave Cheney7c8280c2014-02-25 09:47:42 -0500194nacl_386)
195 mkerrors=""
196 mksyscall="./mksyscall.pl -l32 -nacl"
197 mksysnum=""
198 mktypes=""
199 ;;
200nacl_amd64p32)
201 mkerrors=""
202 mksyscall="./mksyscall.pl -nacl"
203 mksysnum=""
204 mktypes=""
205 ;;
Christopher Nielsen5425db82011-12-20 03:57:58 +1100206netbsd_386)
207 mkerrors="$mkerrors -m32"
208 mksyscall="./mksyscall.pl -l32 -netbsd"
209 mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900210 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Christopher Nielsen5425db82011-12-20 03:57:58 +1100211 ;;
212netbsd_amd64)
213 mkerrors="$mkerrors -m64"
214 mksyscall="./mksyscall.pl -netbsd"
215 mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900216 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Christopher Nielsen5425db82011-12-20 03:57:58 +1100217 ;;
Joel Sing88e984f2011-08-29 10:04:28 -0400218openbsd_386)
Russ Coxdd2abe52011-11-10 19:08:28 -0500219 mkerrors="$mkerrors -m32"
Joel Sing88e984f2011-08-29 10:04:28 -0400220 mksyscall="./mksyscall.pl -l32 -openbsd"
Joel Sing773a9212011-11-17 23:13:49 +1100221 mksysctl="./mksysctl_openbsd.pl"
222 zsysctl="zsysctl_openbsd.go"
Joel Sing88e984f2011-08-29 10:04:28 -0400223 mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900224 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Joel Sing88e984f2011-08-29 10:04:28 -0400225 ;;
Joel Singbf2d4032011-08-22 23:24:32 -0400226openbsd_amd64)
Russ Coxdd2abe52011-11-10 19:08:28 -0500227 mkerrors="$mkerrors -m64"
Joel Singbf2d4032011-08-22 23:24:32 -0400228 mksyscall="./mksyscall.pl -openbsd"
Joel Sing773a9212011-11-17 23:13:49 +1100229 mksysctl="./mksysctl_openbsd.pl"
230 zsysctl="zsysctl_openbsd.go"
Joel Singbf2d4032011-08-22 23:24:32 -0400231 mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl"
Mikio Hara44122ed2012-02-03 12:22:40 +0900232 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
Joel Singbf2d4032011-08-22 23:24:32 -0400233 ;;
Mikio Hara055b4f72011-12-16 19:51:25 +0900234plan9_386)
235 mkerrors=
236 mksyscall="./mksyscall.pl -l32 -plan9"
237 mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h"
238 mktypes="XXX"
239 ;;
Aram Hăvărneanu1c986192014-02-25 21:12:10 +1100240solaris_amd64)
241 mksyscall="./mksyscall_solaris.pl"
242 mkerrors="$mkerrors -m64"
243 mksysnum=
244 mktypes="GOARCH=$GOARCH go tool cgo -godefs"
245 ;;
Alex Brainmanc07ca772014-03-11 16:36:14 +1100246windows_*)
Alex Brainmand00024b2014-12-22 16:54:07 +1100247 echo 'run "go generate syscall_windows.go" instead' 1>&2
248 exit 1
Mikio Hara055b4f72011-12-16 19:51:25 +0900249 ;;
Russ Cox602a4462009-06-01 22:14:57 -0700250*)
251 echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
252 exit 1
253 ;;
254esac
255
Russ Coxfd1add22009-11-01 11:13:27 -0800256(
Alex Brainmane71fc0c2011-07-07 10:40:45 +1000257 if [ -n "$mkerrors" ]; then echo "$mkerrors |gofmt >$zerrors"; fi
Alex Brainmand00024b2014-12-22 16:54:07 +1100258 syscall_goos="syscall_$GOOS.go"
259 case "$GOOS" in
260 darwin | dragonfly | freebsd | netbsd | openbsd)
261 syscall_goos="syscall_bsd.go $syscall_goos"
262 ;;
263 esac
264 if [ -n "$mksyscall" ]; then echo "$mksyscall $syscall_goos syscall_$GOOSARCH.go |gofmt >zsyscall_$GOOSARCH.go"; fi
Joel Sing773a9212011-11-17 23:13:49 +1100265 if [ -n "$mksysctl" ]; then echo "$mksysctl |gofmt >$zsysctl"; fi
Alex Brainman5e6203d2010-03-16 23:10:07 -0700266 if [ -n "$mksysnum" ]; then echo "$mksysnum |gofmt >zsysnum_$GOOSARCH.go"; fi
Russ Coxdd2abe52011-11-10 19:08:28 -0500267 if [ -n "$mktypes" ]; then echo "$mktypes types_$GOOS.go |gofmt >ztypes_$GOOSARCH.go"; fi
Russ Coxfd1add22009-11-01 11:13:27 -0800268) | $run