mkall.sh 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. #!/usr/bin/env bash
  2. # 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. # The unix package provides access to the raw system call
  6. # interface of the underlying operating system. Porting Go to
  7. # a new architecture/operating system combination requires
  8. # some manual effort, though there are tools that automate
  9. # much of the process. The auto-generated files have names
  10. # beginning with z.
  11. #
  12. # This script runs or (given -n) prints suggested commands to generate z files
  13. # for the current system. Running those commands is not automatic.
  14. # This script is documentation more than anything else.
  15. #
  16. # * asm_${GOOS}_${GOARCH}.s
  17. #
  18. # This hand-written assembly file implements system call dispatch.
  19. # There are three entry points:
  20. #
  21. # func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr);
  22. # func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr);
  23. # func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr);
  24. #
  25. # The first and second are the standard ones; they differ only in
  26. # how many arguments can be passed to the kernel.
  27. # The third is for low-level use by the ForkExec wrapper;
  28. # unlike the first two, it does not call into the scheduler to
  29. # let it know that a system call is running.
  30. #
  31. # * syscall_${GOOS}.go
  32. #
  33. # This hand-written Go file implements system calls that need
  34. # special handling and lists "//sys" comments giving prototypes
  35. # for ones that can be auto-generated. Mksyscall reads those
  36. # comments to generate the stubs.
  37. #
  38. # * syscall_${GOOS}_${GOARCH}.go
  39. #
  40. # Same as syscall_${GOOS}.go except that it contains code specific
  41. # to ${GOOS} on one particular architecture.
  42. #
  43. # * types_${GOOS}.c
  44. #
  45. # This hand-written C file includes standard C headers and then
  46. # creates typedef or enum names beginning with a dollar sign
  47. # (use of $ in variable names is a gcc extension). The hardest
  48. # part about preparing this file is figuring out which headers to
  49. # include and which symbols need to be #defined to get the
  50. # actual data structures that pass through to the kernel system calls.
  51. # Some C libraries present alternate versions for binary compatibility
  52. # and translate them on the way in and out of system calls, but
  53. # there is almost always a #define that can get the real ones.
  54. # See types_darwin.c and types_linux.c for examples.
  55. #
  56. # * zerror_${GOOS}_${GOARCH}.go
  57. #
  58. # This machine-generated file defines the system's error numbers,
  59. # error strings, and signal numbers. The generator is "mkerrors.sh".
  60. # Usually no arguments are needed, but mkerrors.sh will pass its
  61. # arguments on to godefs.
  62. #
  63. # * zsyscall_${GOOS}_${GOARCH}.go
  64. #
  65. # Generated by mksyscall.pl; see syscall_${GOOS}.go above.
  66. #
  67. # * zsysnum_${GOOS}_${GOARCH}.go
  68. #
  69. # Generated by mksysnum_${GOOS}.
  70. #
  71. # * ztypes_${GOOS}_${GOARCH}.go
  72. #
  73. # Generated by godefs; see types_${GOOS}.c above.
  74. GOOSARCH="${GOOS}_${GOARCH}"
  75. # defaults
  76. mksyscall="./mksyscall.pl"
  77. mkerrors="./mkerrors.sh"
  78. zerrors="zerrors_$GOOSARCH.go"
  79. mksysctl=""
  80. zsysctl="zsysctl_$GOOSARCH.go"
  81. mksysnum=
  82. mktypes=
  83. run="sh"
  84. case "$1" in
  85. -syscalls)
  86. for i in zsyscall*go
  87. do
  88. sed 1q $i | sed 's;^// ;;' | sh > _$i && gofmt < _$i > $i
  89. rm _$i
  90. done
  91. exit 0
  92. ;;
  93. -n)
  94. run="cat"
  95. shift
  96. esac
  97. case "$#" in
  98. 0)
  99. ;;
  100. *)
  101. echo 'usage: mkall.sh [-n]' 1>&2
  102. exit 2
  103. esac
  104. case "$GOOSARCH" in
  105. _* | *_ | _)
  106. echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2
  107. exit 1
  108. ;;
  109. darwin_386)
  110. mkerrors="$mkerrors -m32"
  111. mksyscall="./mksyscall.pl -l32"
  112. mksysnum="./mksysnum_darwin.pl /usr/include/sys/syscall.h"
  113. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  114. ;;
  115. darwin_amd64)
  116. mkerrors="$mkerrors -m64"
  117. mksysnum="./mksysnum_darwin.pl /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/sys/syscall.h"
  118. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  119. ;;
  120. dragonfly_386)
  121. mkerrors="$mkerrors -m32"
  122. mksyscall="./mksyscall.pl -l32 -dragonfly"
  123. mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl"
  124. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  125. ;;
  126. dragonfly_amd64)
  127. mkerrors="$mkerrors -m64"
  128. mksyscall="./mksyscall.pl -dragonfly"
  129. mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl"
  130. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  131. ;;
  132. freebsd_386)
  133. mkerrors="$mkerrors -m32"
  134. mksyscall="./mksyscall.pl -l32"
  135. mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
  136. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  137. ;;
  138. freebsd_amd64)
  139. mkerrors="$mkerrors -m64"
  140. mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
  141. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  142. ;;
  143. freebsd_arm)
  144. mkerrors="$mkerrors"
  145. mksyscall="./mksyscall.pl -l32 -arm"
  146. mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
  147. # Let the type of C char be singed for making the bare syscall
  148. # API consistent across over platforms.
  149. mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
  150. ;;
  151. linux_386)
  152. mkerrors="$mkerrors -m32"
  153. mksyscall="./mksyscall.pl -l32"
  154. mksysnum="./mksysnum_linux.pl /usr/include/asm/unistd_32.h"
  155. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  156. ;;
  157. linux_amd64)
  158. 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)
  159. if [ "$unistd_h" = "" ]; then
  160. echo >&2 cannot find unistd_64.h
  161. exit 1
  162. fi
  163. mkerrors="$mkerrors -m64"
  164. mksysnum="./mksysnum_linux.pl $unistd_h"
  165. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  166. ;;
  167. linux_arm)
  168. mkerrors="$mkerrors"
  169. mksyscall="./mksyscall.pl -l32 -arm"
  170. 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"
  171. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  172. ;;
  173. netbsd_386)
  174. mkerrors="$mkerrors -m32"
  175. mksyscall="./mksyscall.pl -l32 -netbsd"
  176. mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
  177. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  178. ;;
  179. netbsd_amd64)
  180. mkerrors="$mkerrors -m64"
  181. mksyscall="./mksyscall.pl -netbsd"
  182. mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl"
  183. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  184. ;;
  185. openbsd_386)
  186. mkerrors="$mkerrors -m32"
  187. mksyscall="./mksyscall.pl -l32 -openbsd"
  188. mksysctl="./mksysctl_openbsd.pl"
  189. zsysctl="zsysctl_openbsd.go"
  190. mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl"
  191. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  192. ;;
  193. openbsd_amd64)
  194. mkerrors="$mkerrors -m64"
  195. mksyscall="./mksyscall.pl -openbsd"
  196. mksysctl="./mksysctl_openbsd.pl"
  197. zsysctl="zsysctl_openbsd.go"
  198. mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl"
  199. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  200. ;;
  201. solaris_amd64)
  202. mksyscall="./mksyscall_solaris.pl"
  203. mkerrors="$mkerrors -m64"
  204. mksysnum=
  205. mktypes="GOARCH=$GOARCH go tool cgo -godefs"
  206. ;;
  207. *)
  208. echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
  209. exit 1
  210. ;;
  211. esac
  212. (
  213. if [ -n "$mkerrors" ]; then echo "$mkerrors |gofmt >$zerrors"; fi
  214. case "$GOOS" in
  215. *)
  216. syscall_goos="syscall_$GOOS.go"
  217. case "$GOOS" in
  218. darwin | dragonfly | freebsd | netbsd | openbsd)
  219. syscall_goos="syscall_bsd.go $syscall_goos"
  220. ;;
  221. esac
  222. if [ -n "$mksyscall" ]; then echo "$mksyscall $syscall_goos syscall_$GOOSARCH.go |gofmt >zsyscall_$GOOSARCH.go"; fi
  223. ;;
  224. esac
  225. if [ -n "$mksysctl" ]; then echo "$mksysctl |gofmt >$zsysctl"; fi
  226. if [ -n "$mksysnum" ]; then echo "$mksysnum |gofmt >zsysnum_$GOOSARCH.go"; fi
  227. if [ -n "$mktypes" ]; then echo "$mktypes types_$GOOS.go |gofmt >ztypes_$GOOSARCH.go"; fi
  228. ) | $run