syscall_darwin.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. // Copyright 2009,2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Darwin system calls.
  5. // This file is compiled as ordinary Go code,
  6. // but it is also input to mksyscall,
  7. // which parses the //sys lines and generates system call stubs.
  8. // Note that sometimes we use a lowercase //sys name and wrap
  9. // it in our own nicer implementation, either here or in
  10. // syscall_bsd.go or syscall_unix.go.
  11. package unix
  12. import (
  13. "errors"
  14. "syscall"
  15. "unsafe"
  16. )
  17. const ImplementsGetwd = true
  18. func Getwd() (string, error) {
  19. buf := make([]byte, 2048)
  20. attrs, err := getAttrList(".", attrList{CommonAttr: attrCmnFullpath}, buf, 0)
  21. if err == nil && len(attrs) == 1 && len(attrs[0]) >= 2 {
  22. wd := string(attrs[0])
  23. // Sanity check that it's an absolute path and ends
  24. // in a null byte, which we then strip.
  25. if wd[0] == '/' && wd[len(wd)-1] == 0 {
  26. return wd[:len(wd)-1], nil
  27. }
  28. }
  29. // If pkg/os/getwd.go gets ENOTSUP, it will fall back to the
  30. // slow algorithm.
  31. return "", ENOTSUP
  32. }
  33. // SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.
  34. type SockaddrDatalink struct {
  35. Len uint8
  36. Family uint8
  37. Index uint16
  38. Type uint8
  39. Nlen uint8
  40. Alen uint8
  41. Slen uint8
  42. Data [12]int8
  43. raw RawSockaddrDatalink
  44. }
  45. // Translate "kern.hostname" to []_C_int{0,1,2,3}.
  46. func nametomib(name string) (mib []_C_int, err error) {
  47. const siz = unsafe.Sizeof(mib[0])
  48. // NOTE(rsc): It seems strange to set the buffer to have
  49. // size CTL_MAXNAME+2 but use only CTL_MAXNAME
  50. // as the size. I don't know why the +2 is here, but the
  51. // kernel uses +2 for its own implementation of this function.
  52. // I am scared that if we don't include the +2 here, the kernel
  53. // will silently write 2 words farther than we specify
  54. // and we'll get memory corruption.
  55. var buf [CTL_MAXNAME + 2]_C_int
  56. n := uintptr(CTL_MAXNAME) * siz
  57. p := (*byte)(unsafe.Pointer(&buf[0]))
  58. bytes, err := ByteSliceFromString(name)
  59. if err != nil {
  60. return nil, err
  61. }
  62. // Magic sysctl: "setting" 0.3 to a string name
  63. // lets you read back the array of integers form.
  64. if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
  65. return nil, err
  66. }
  67. return buf[0 : n/siz], nil
  68. }
  69. //sys ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
  70. func PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0, 0) }
  71. func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0, 0) }
  72. const (
  73. attrBitMapCount = 5
  74. attrCmnFullpath = 0x08000000
  75. )
  76. type attrList struct {
  77. bitmapCount uint16
  78. _ uint16
  79. CommonAttr uint32
  80. VolAttr uint32
  81. DirAttr uint32
  82. FileAttr uint32
  83. Forkattr uint32
  84. }
  85. func getAttrList(path string, attrList attrList, attrBuf []byte, options uint) (attrs [][]byte, err error) {
  86. if len(attrBuf) < 4 {
  87. return nil, errors.New("attrBuf too small")
  88. }
  89. attrList.bitmapCount = attrBitMapCount
  90. var _p0 *byte
  91. _p0, err = BytePtrFromString(path)
  92. if err != nil {
  93. return nil, err
  94. }
  95. _, _, e1 := Syscall6(
  96. SYS_GETATTRLIST,
  97. uintptr(unsafe.Pointer(_p0)),
  98. uintptr(unsafe.Pointer(&attrList)),
  99. uintptr(unsafe.Pointer(&attrBuf[0])),
  100. uintptr(len(attrBuf)),
  101. uintptr(options),
  102. 0,
  103. )
  104. if e1 != 0 {
  105. return nil, e1
  106. }
  107. size := *(*uint32)(unsafe.Pointer(&attrBuf[0]))
  108. // dat is the section of attrBuf that contains valid data,
  109. // without the 4 byte length header. All attribute offsets
  110. // are relative to dat.
  111. dat := attrBuf
  112. if int(size) < len(attrBuf) {
  113. dat = dat[:size]
  114. }
  115. dat = dat[4:] // remove length prefix
  116. for i := uint32(0); int(i) < len(dat); {
  117. header := dat[i:]
  118. if len(header) < 8 {
  119. return attrs, errors.New("truncated attribute header")
  120. }
  121. datOff := *(*int32)(unsafe.Pointer(&header[0]))
  122. attrLen := *(*uint32)(unsafe.Pointer(&header[4]))
  123. if datOff < 0 || uint32(datOff)+attrLen > uint32(len(dat)) {
  124. return attrs, errors.New("truncated results; attrBuf too small")
  125. }
  126. end := uint32(datOff) + attrLen
  127. attrs = append(attrs, dat[datOff:end])
  128. i = end
  129. if r := i % 4; r != 0 {
  130. i += (4 - r)
  131. }
  132. }
  133. return
  134. }
  135. //sysnb pipe() (r int, w int, err error)
  136. func Pipe(p []int) (err error) {
  137. if len(p) != 2 {
  138. return EINVAL
  139. }
  140. p[0], p[1], err = pipe()
  141. return
  142. }
  143. func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
  144. var _p0 unsafe.Pointer
  145. var bufsize uintptr
  146. if len(buf) > 0 {
  147. _p0 = unsafe.Pointer(&buf[0])
  148. bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
  149. }
  150. return getfsstat(_p0, bufsize, flags)
  151. }
  152. func xattrPointer(dest []byte) *byte {
  153. // It's only when dest is set to NULL that the OS X implementations of
  154. // getxattr() and listxattr() return the current sizes of the named attributes.
  155. // An empty byte array is not sufficient. To maintain the same behaviour as the
  156. // linux implementation, we wrap around the system calls and pass in NULL when
  157. // dest is empty.
  158. var destp *byte
  159. if len(dest) > 0 {
  160. destp = &dest[0]
  161. }
  162. return destp
  163. }
  164. //sys getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)
  165. func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
  166. return getxattr(path, attr, xattrPointer(dest), len(dest), 0, 0)
  167. }
  168. func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
  169. return getxattr(link, attr, xattrPointer(dest), len(dest), 0, XATTR_NOFOLLOW)
  170. }
  171. //sys fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)
  172. func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) {
  173. return fgetxattr(fd, attr, xattrPointer(dest), len(dest), 0, 0)
  174. }
  175. //sys setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error)
  176. func Setxattr(path string, attr string, data []byte, flags int) (err error) {
  177. // The parameters for the OS X implementation vary slightly compared to the
  178. // linux system call, specifically the position parameter:
  179. //
  180. // linux:
  181. // int setxattr(
  182. // const char *path,
  183. // const char *name,
  184. // const void *value,
  185. // size_t size,
  186. // int flags
  187. // );
  188. //
  189. // darwin:
  190. // int setxattr(
  191. // const char *path,
  192. // const char *name,
  193. // void *value,
  194. // size_t size,
  195. // u_int32_t position,
  196. // int options
  197. // );
  198. //
  199. // position specifies the offset within the extended attribute. In the
  200. // current implementation, only the resource fork extended attribute makes
  201. // use of this argument. For all others, position is reserved. We simply
  202. // default to setting it to zero.
  203. return setxattr(path, attr, xattrPointer(data), len(data), 0, flags)
  204. }
  205. func Lsetxattr(link string, attr string, data []byte, flags int) (err error) {
  206. return setxattr(link, attr, xattrPointer(data), len(data), 0, flags|XATTR_NOFOLLOW)
  207. }
  208. //sys fsetxattr(fd int, attr string, data *byte, size int, position uint32, options int) (err error)
  209. func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) {
  210. return fsetxattr(fd, attr, xattrPointer(data), len(data), 0, 0)
  211. }
  212. //sys removexattr(path string, attr string, options int) (err error)
  213. func Removexattr(path string, attr string) (err error) {
  214. // We wrap around and explicitly zero out the options provided to the OS X
  215. // implementation of removexattr, we do so for interoperability with the
  216. // linux variant.
  217. return removexattr(path, attr, 0)
  218. }
  219. func Lremovexattr(link string, attr string) (err error) {
  220. return removexattr(link, attr, XATTR_NOFOLLOW)
  221. }
  222. //sys fremovexattr(fd int, attr string, options int) (err error)
  223. func Fremovexattr(fd int, attr string) (err error) {
  224. return fremovexattr(fd, attr, 0)
  225. }
  226. //sys listxattr(path string, dest *byte, size int, options int) (sz int, err error)
  227. func Listxattr(path string, dest []byte) (sz int, err error) {
  228. return listxattr(path, xattrPointer(dest), len(dest), 0)
  229. }
  230. func Llistxattr(link string, dest []byte) (sz int, err error) {
  231. return listxattr(link, xattrPointer(dest), len(dest), XATTR_NOFOLLOW)
  232. }
  233. //sys flistxattr(fd int, dest *byte, size int, options int) (sz int, err error)
  234. func Flistxattr(fd int, dest []byte) (sz int, err error) {
  235. return flistxattr(fd, xattrPointer(dest), len(dest), 0)
  236. }
  237. func setattrlistTimes(path string, times []Timespec, flags int) error {
  238. _p0, err := BytePtrFromString(path)
  239. if err != nil {
  240. return err
  241. }
  242. var attrList attrList
  243. attrList.bitmapCount = ATTR_BIT_MAP_COUNT
  244. attrList.CommonAttr = ATTR_CMN_MODTIME | ATTR_CMN_ACCTIME
  245. // order is mtime, atime: the opposite of Chtimes
  246. attributes := [2]Timespec{times[1], times[0]}
  247. options := 0
  248. if flags&AT_SYMLINK_NOFOLLOW != 0 {
  249. options |= FSOPT_NOFOLLOW
  250. }
  251. _, _, e1 := Syscall6(
  252. SYS_SETATTRLIST,
  253. uintptr(unsafe.Pointer(_p0)),
  254. uintptr(unsafe.Pointer(&attrList)),
  255. uintptr(unsafe.Pointer(&attributes)),
  256. uintptr(unsafe.Sizeof(attributes)),
  257. uintptr(options),
  258. 0,
  259. )
  260. if e1 != 0 {
  261. return e1
  262. }
  263. return nil
  264. }
  265. func utimensat(dirfd int, path string, times *[2]Timespec, flags int) error {
  266. // Darwin doesn't support SYS_UTIMENSAT
  267. return ENOSYS
  268. }
  269. /*
  270. * Wrapped
  271. */
  272. //sys kill(pid int, signum int, posix int) (err error)
  273. func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid, int(signum), 1) }
  274. //sys ioctl(fd int, req uint, arg uintptr) (err error)
  275. // ioctl itself should not be exposed directly, but additional get/set
  276. // functions for specific types are permissible.
  277. // IoctlSetInt performs an ioctl operation which sets an integer value
  278. // on fd, using the specified request number.
  279. func IoctlSetInt(fd int, req uint, value int) error {
  280. return ioctl(fd, req, uintptr(value))
  281. }
  282. func ioctlSetWinsize(fd int, req uint, value *Winsize) error {
  283. return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
  284. }
  285. func ioctlSetTermios(fd int, req uint, value *Termios) error {
  286. return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
  287. }
  288. // IoctlGetInt performs an ioctl operation which gets an integer value
  289. // from fd, using the specified request number.
  290. func IoctlGetInt(fd int, req uint) (int, error) {
  291. var value int
  292. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  293. return value, err
  294. }
  295. func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
  296. var value Winsize
  297. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  298. return &value, err
  299. }
  300. func IoctlGetTermios(fd int, req uint) (*Termios, error) {
  301. var value Termios
  302. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  303. return &value, err
  304. }
  305. func Uname(uname *Utsname) error {
  306. mib := []_C_int{CTL_KERN, KERN_OSTYPE}
  307. n := unsafe.Sizeof(uname.Sysname)
  308. if err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {
  309. return err
  310. }
  311. mib = []_C_int{CTL_KERN, KERN_HOSTNAME}
  312. n = unsafe.Sizeof(uname.Nodename)
  313. if err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {
  314. return err
  315. }
  316. mib = []_C_int{CTL_KERN, KERN_OSRELEASE}
  317. n = unsafe.Sizeof(uname.Release)
  318. if err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {
  319. return err
  320. }
  321. mib = []_C_int{CTL_KERN, KERN_VERSION}
  322. n = unsafe.Sizeof(uname.Version)
  323. if err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {
  324. return err
  325. }
  326. // The version might have newlines or tabs in it, convert them to
  327. // spaces.
  328. for i, b := range uname.Version {
  329. if b == '\n' || b == '\t' {
  330. if i == len(uname.Version)-1 {
  331. uname.Version[i] = 0
  332. } else {
  333. uname.Version[i] = ' '
  334. }
  335. }
  336. }
  337. mib = []_C_int{CTL_HW, HW_MACHINE}
  338. n = unsafe.Sizeof(uname.Machine)
  339. if err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {
  340. return err
  341. }
  342. return nil
  343. }
  344. /*
  345. * Exposed directly
  346. */
  347. //sys Access(path string, mode uint32) (err error)
  348. //sys Adjtime(delta *Timeval, olddelta *Timeval) (err error)
  349. //sys Chdir(path string) (err error)
  350. //sys Chflags(path string, flags int) (err error)
  351. //sys Chmod(path string, mode uint32) (err error)
  352. //sys Chown(path string, uid int, gid int) (err error)
  353. //sys Chroot(path string) (err error)
  354. //sys Close(fd int) (err error)
  355. //sys Dup(fd int) (nfd int, err error)
  356. //sys Dup2(from int, to int) (err error)
  357. //sys Exchangedata(path1 string, path2 string, options int) (err error)
  358. //sys Exit(code int)
  359. //sys Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
  360. //sys Fchdir(fd int) (err error)
  361. //sys Fchflags(fd int, flags int) (err error)
  362. //sys Fchmod(fd int, mode uint32) (err error)
  363. //sys Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
  364. //sys Fchown(fd int, uid int, gid int) (err error)
  365. //sys Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
  366. //sys Flock(fd int, how int) (err error)
  367. //sys Fpathconf(fd int, name int) (val int, err error)
  368. //sys Fsync(fd int) (err error)
  369. //sys Ftruncate(fd int, length int64) (err error)
  370. //sys Getdtablesize() (size int)
  371. //sysnb Getegid() (egid int)
  372. //sysnb Geteuid() (uid int)
  373. //sysnb Getgid() (gid int)
  374. //sysnb Getpgid(pid int) (pgid int, err error)
  375. //sysnb Getpgrp() (pgrp int)
  376. //sysnb Getpid() (pid int)
  377. //sysnb Getppid() (ppid int)
  378. //sys Getpriority(which int, who int) (prio int, err error)
  379. //sysnb Getrlimit(which int, lim *Rlimit) (err error)
  380. //sysnb Getrusage(who int, rusage *Rusage) (err error)
  381. //sysnb Getsid(pid int) (sid int, err error)
  382. //sysnb Getuid() (uid int)
  383. //sysnb Issetugid() (tainted bool)
  384. //sys Kqueue() (fd int, err error)
  385. //sys Lchown(path string, uid int, gid int) (err error)
  386. //sys Link(path string, link string) (err error)
  387. //sys Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error)
  388. //sys Listen(s int, backlog int) (err error)
  389. //sys Mkdir(path string, mode uint32) (err error)
  390. //sys Mkdirat(dirfd int, path string, mode uint32) (err error)
  391. //sys Mkfifo(path string, mode uint32) (err error)
  392. //sys Mknod(path string, mode uint32, dev int) (err error)
  393. //sys Open(path string, mode int, perm uint32) (fd int, err error)
  394. //sys Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
  395. //sys Pathconf(path string, name int) (val int, err error)
  396. //sys Pread(fd int, p []byte, offset int64) (n int, err error)
  397. //sys Pwrite(fd int, p []byte, offset int64) (n int, err error)
  398. //sys read(fd int, p []byte) (n int, err error)
  399. //sys Readlink(path string, buf []byte) (n int, err error)
  400. //sys Readlinkat(dirfd int, path string, buf []byte) (n int, err error)
  401. //sys Rename(from string, to string) (err error)
  402. //sys Renameat(fromfd int, from string, tofd int, to string) (err error)
  403. //sys Revoke(path string) (err error)
  404. //sys Rmdir(path string) (err error)
  405. //sys Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
  406. //sys Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
  407. //sys Setegid(egid int) (err error)
  408. //sysnb Seteuid(euid int) (err error)
  409. //sysnb Setgid(gid int) (err error)
  410. //sys Setlogin(name string) (err error)
  411. //sysnb Setpgid(pid int, pgid int) (err error)
  412. //sys Setpriority(which int, who int, prio int) (err error)
  413. //sys Setprivexec(flag int) (err error)
  414. //sysnb Setregid(rgid int, egid int) (err error)
  415. //sysnb Setreuid(ruid int, euid int) (err error)
  416. //sysnb Setrlimit(which int, lim *Rlimit) (err error)
  417. //sysnb Setsid() (pid int, err error)
  418. //sysnb Settimeofday(tp *Timeval) (err error)
  419. //sysnb Setuid(uid int) (err error)
  420. //sys Symlink(path string, link string) (err error)
  421. //sys Symlinkat(oldpath string, newdirfd int, newpath string) (err error)
  422. //sys Sync() (err error)
  423. //sys Truncate(path string, length int64) (err error)
  424. //sys Umask(newmask int) (oldmask int)
  425. //sys Undelete(path string) (err error)
  426. //sys Unlink(path string) (err error)
  427. //sys Unlinkat(dirfd int, path string, flags int) (err error)
  428. //sys Unmount(path string, flags int) (err error)
  429. //sys write(fd int, p []byte) (n int, err error)
  430. //sys mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
  431. //sys munmap(addr uintptr, length uintptr) (err error)
  432. //sys readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ
  433. //sys writelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE
  434. /*
  435. * Unimplemented
  436. */
  437. // Profil
  438. // Sigaction
  439. // Sigprocmask
  440. // Getlogin
  441. // Sigpending
  442. // Sigaltstack
  443. // Ioctl
  444. // Reboot
  445. // Execve
  446. // Vfork
  447. // Sbrk
  448. // Sstk
  449. // Ovadvise
  450. // Mincore
  451. // Setitimer
  452. // Swapon
  453. // Select
  454. // Sigsuspend
  455. // Readv
  456. // Writev
  457. // Nfssvc
  458. // Getfh
  459. // Quotactl
  460. // Mount
  461. // Csops
  462. // Waitid
  463. // Add_profil
  464. // Kdebug_trace
  465. // Sigreturn
  466. // Atsocket
  467. // Kqueue_from_portset_np
  468. // Kqueue_portset
  469. // Getattrlist
  470. // Setattrlist
  471. // Getdirentriesattr
  472. // Searchfs
  473. // Delete
  474. // Copyfile
  475. // Watchevent
  476. // Waitevent
  477. // Modwatch
  478. // Fsctl
  479. // Initgroups
  480. // Posix_spawn
  481. // Nfsclnt
  482. // Fhopen
  483. // Minherit
  484. // Semsys
  485. // Msgsys
  486. // Shmsys
  487. // Semctl
  488. // Semget
  489. // Semop
  490. // Msgctl
  491. // Msgget
  492. // Msgsnd
  493. // Msgrcv
  494. // Shmat
  495. // Shmctl
  496. // Shmdt
  497. // Shmget
  498. // Shm_open
  499. // Shm_unlink
  500. // Sem_open
  501. // Sem_close
  502. // Sem_unlink
  503. // Sem_wait
  504. // Sem_trywait
  505. // Sem_post
  506. // Sem_getvalue
  507. // Sem_init
  508. // Sem_destroy
  509. // Open_extended
  510. // Umask_extended
  511. // Stat_extended
  512. // Lstat_extended
  513. // Fstat_extended
  514. // Chmod_extended
  515. // Fchmod_extended
  516. // Access_extended
  517. // Settid
  518. // Gettid
  519. // Setsgroups
  520. // Getsgroups
  521. // Setwgroups
  522. // Getwgroups
  523. // Mkfifo_extended
  524. // Mkdir_extended
  525. // Identitysvc
  526. // Shared_region_check_np
  527. // Shared_region_map_np
  528. // __pthread_mutex_destroy
  529. // __pthread_mutex_init
  530. // __pthread_mutex_lock
  531. // __pthread_mutex_trylock
  532. // __pthread_mutex_unlock
  533. // __pthread_cond_init
  534. // __pthread_cond_destroy
  535. // __pthread_cond_broadcast
  536. // __pthread_cond_signal
  537. // Setsid_with_pid
  538. // __pthread_cond_timedwait
  539. // Aio_fsync
  540. // Aio_return
  541. // Aio_suspend
  542. // Aio_cancel
  543. // Aio_error
  544. // Aio_read
  545. // Aio_write
  546. // Lio_listio
  547. // __pthread_cond_wait
  548. // Iopolicysys
  549. // __pthread_kill
  550. // __pthread_sigmask
  551. // __sigwait
  552. // __disable_threadsignal
  553. // __pthread_markcancel
  554. // __pthread_canceled
  555. // __semwait_signal
  556. // Proc_info
  557. // sendfile
  558. // Stat64_extended
  559. // Lstat64_extended
  560. // Fstat64_extended
  561. // __pthread_chdir
  562. // __pthread_fchdir
  563. // Audit
  564. // Auditon
  565. // Getauid
  566. // Setauid
  567. // Getaudit
  568. // Setaudit
  569. // Getaudit_addr
  570. // Setaudit_addr
  571. // Auditctl
  572. // Bsdthread_create
  573. // Bsdthread_terminate
  574. // Stack_snapshot
  575. // Bsdthread_register
  576. // Workq_open
  577. // Workq_ops
  578. // __mac_execve
  579. // __mac_syscall
  580. // __mac_get_file
  581. // __mac_set_file
  582. // __mac_get_link
  583. // __mac_set_link
  584. // __mac_get_proc
  585. // __mac_set_proc
  586. // __mac_get_fd
  587. // __mac_set_fd
  588. // __mac_get_pid
  589. // __mac_get_lcid
  590. // __mac_get_lctx
  591. // __mac_set_lctx
  592. // Setlcid
  593. // Read_nocancel
  594. // Write_nocancel
  595. // Open_nocancel
  596. // Close_nocancel
  597. // Wait4_nocancel
  598. // Recvmsg_nocancel
  599. // Sendmsg_nocancel
  600. // Recvfrom_nocancel
  601. // Accept_nocancel
  602. // Fcntl_nocancel
  603. // Select_nocancel
  604. // Fsync_nocancel
  605. // Connect_nocancel
  606. // Sigsuspend_nocancel
  607. // Readv_nocancel
  608. // Writev_nocancel
  609. // Sendto_nocancel
  610. // Pread_nocancel
  611. // Pwrite_nocancel
  612. // Waitid_nocancel
  613. // Poll_nocancel
  614. // Msgsnd_nocancel
  615. // Msgrcv_nocancel
  616. // Sem_wait_nocancel
  617. // Aio_suspend_nocancel
  618. // __sigwait_nocancel
  619. // __semwait_signal_nocancel
  620. // __mac_mount
  621. // __mac_get_mount
  622. // __mac_getfsstat