You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

681 lines
18 KiB

  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. r0, _, e1 := Syscall(SYS_GETFSSTAT64, uintptr(_p0), bufsize, uintptr(flags))
  151. n = int(r0)
  152. if e1 != 0 {
  153. err = e1
  154. }
  155. return
  156. }
  157. func xattrPointer(dest []byte) *byte {
  158. // It's only when dest is set to NULL that the OS X implementations of
  159. // getxattr() and listxattr() return the current sizes of the named attributes.
  160. // An empty byte array is not sufficient. To maintain the same behaviour as the
  161. // linux implementation, we wrap around the system calls and pass in NULL when
  162. // dest is empty.
  163. var destp *byte
  164. if len(dest) > 0 {
  165. destp = &dest[0]
  166. }
  167. return destp
  168. }
  169. //sys getxattr(path string, attr string, dest *byte, size int, position uint32, options int) (sz int, err error)
  170. func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
  171. return getxattr(path, attr, xattrPointer(dest), len(dest), 0, 0)
  172. }
  173. func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) {
  174. return getxattr(link, attr, xattrPointer(dest), len(dest), 0, XATTR_NOFOLLOW)
  175. }
  176. //sys setxattr(path string, attr string, data *byte, size int, position uint32, options int) (err error)
  177. func Setxattr(path string, attr string, data []byte, flags int) (err error) {
  178. // The parameters for the OS X implementation vary slightly compared to the
  179. // linux system call, specifically the position parameter:
  180. //
  181. // linux:
  182. // int setxattr(
  183. // const char *path,
  184. // const char *name,
  185. // const void *value,
  186. // size_t size,
  187. // int flags
  188. // );
  189. //
  190. // darwin:
  191. // int setxattr(
  192. // const char *path,
  193. // const char *name,
  194. // void *value,
  195. // size_t size,
  196. // u_int32_t position,
  197. // int options
  198. // );
  199. //
  200. // position specifies the offset within the extended attribute. In the
  201. // current implementation, only the resource fork extended attribute makes
  202. // use of this argument. For all others, position is reserved. We simply
  203. // default to setting it to zero.
  204. return setxattr(path, attr, xattrPointer(data), len(data), 0, flags)
  205. }
  206. func Lsetxattr(link string, attr string, data []byte, flags int) (err error) {
  207. return setxattr(link, attr, xattrPointer(data), len(data), 0, flags|XATTR_NOFOLLOW)
  208. }
  209. //sys removexattr(path string, attr string, options int) (err error)
  210. func Removexattr(path string, attr string) (err error) {
  211. // We wrap around and explicitly zero out the options provided to the OS X
  212. // implementation of removexattr, we do so for interoperability with the
  213. // linux variant.
  214. return removexattr(path, attr, 0)
  215. }
  216. func Lremovexattr(link string, attr string) (err error) {
  217. return removexattr(link, attr, XATTR_NOFOLLOW)
  218. }
  219. //sys listxattr(path string, dest *byte, size int, options int) (sz int, err error)
  220. func Listxattr(path string, dest []byte) (sz int, err error) {
  221. return listxattr(path, xattrPointer(dest), len(dest), 0)
  222. }
  223. func Llistxattr(link string, dest []byte) (sz int, err error) {
  224. return listxattr(link, xattrPointer(dest), len(dest), XATTR_NOFOLLOW)
  225. }
  226. func setattrlistTimes(path string, times []Timespec, flags int) error {
  227. _p0, err := BytePtrFromString(path)
  228. if err != nil {
  229. return err
  230. }
  231. var attrList attrList
  232. attrList.bitmapCount = ATTR_BIT_MAP_COUNT
  233. attrList.CommonAttr = ATTR_CMN_MODTIME | ATTR_CMN_ACCTIME
  234. // order is mtime, atime: the opposite of Chtimes
  235. attributes := [2]Timespec{times[1], times[0]}
  236. options := 0
  237. if flags&AT_SYMLINK_NOFOLLOW != 0 {
  238. options |= FSOPT_NOFOLLOW
  239. }
  240. _, _, e1 := Syscall6(
  241. SYS_SETATTRLIST,
  242. uintptr(unsafe.Pointer(_p0)),
  243. uintptr(unsafe.Pointer(&attrList)),
  244. uintptr(unsafe.Pointer(&attributes)),
  245. uintptr(unsafe.Sizeof(attributes)),
  246. uintptr(options),
  247. 0,
  248. )
  249. if e1 != 0 {
  250. return e1
  251. }
  252. return nil
  253. }
  254. func utimensat(dirfd int, path string, times *[2]Timespec, flags int) error {
  255. // Darwin doesn't support SYS_UTIMENSAT
  256. return ENOSYS
  257. }
  258. /*
  259. * Wrapped
  260. */
  261. //sys kill(pid int, signum int, posix int) (err error)
  262. func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid, int(signum), 1) }
  263. //sys ioctl(fd int, req uint, arg uintptr) (err error)
  264. // ioctl itself should not be exposed directly, but additional get/set
  265. // functions for specific types are permissible.
  266. // IoctlSetInt performs an ioctl operation which sets an integer value
  267. // on fd, using the specified request number.
  268. func IoctlSetInt(fd int, req uint, value int) error {
  269. return ioctl(fd, req, uintptr(value))
  270. }
  271. func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
  272. return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
  273. }
  274. func IoctlSetTermios(fd int, req uint, value *Termios) error {
  275. return ioctl(fd, req, uintptr(unsafe.Pointer(value)))
  276. }
  277. // IoctlGetInt performs an ioctl operation which gets an integer value
  278. // from fd, using the specified request number.
  279. func IoctlGetInt(fd int, req uint) (int, error) {
  280. var value int
  281. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  282. return value, err
  283. }
  284. func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
  285. var value Winsize
  286. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  287. return &value, err
  288. }
  289. func IoctlGetTermios(fd int, req uint) (*Termios, error) {
  290. var value Termios
  291. err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
  292. return &value, err
  293. }
  294. func Uname(uname *Utsname) error {
  295. mib := []_C_int{CTL_KERN, KERN_OSTYPE}
  296. n := unsafe.Sizeof(uname.Sysname)
  297. if err := sysctl(mib, &uname.Sysname[0], &n, nil, 0); err != nil {
  298. return err
  299. }
  300. mib = []_C_int{CTL_KERN, KERN_HOSTNAME}
  301. n = unsafe.Sizeof(uname.Nodename)
  302. if err := sysctl(mib, &uname.Nodename[0], &n, nil, 0); err != nil {
  303. return err
  304. }
  305. mib = []_C_int{CTL_KERN, KERN_OSRELEASE}
  306. n = unsafe.Sizeof(uname.Release)
  307. if err := sysctl(mib, &uname.Release[0], &n, nil, 0); err != nil {
  308. return err
  309. }
  310. mib = []_C_int{CTL_KERN, KERN_VERSION}
  311. n = unsafe.Sizeof(uname.Version)
  312. if err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil {
  313. return err
  314. }
  315. // The version might have newlines or tabs in it, convert them to
  316. // spaces.
  317. for i, b := range uname.Version {
  318. if b == '\n' || b == '\t' {
  319. if i == len(uname.Version)-1 {
  320. uname.Version[i] = 0
  321. } else {
  322. uname.Version[i] = ' '
  323. }
  324. }
  325. }
  326. mib = []_C_int{CTL_HW, HW_MACHINE}
  327. n = unsafe.Sizeof(uname.Machine)
  328. if err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil {
  329. return err
  330. }
  331. return nil
  332. }
  333. /*
  334. * Exposed directly
  335. */
  336. //sys Access(path string, mode uint32) (err error)
  337. //sys Adjtime(delta *Timeval, olddelta *Timeval) (err error)
  338. //sys Chdir(path string) (err error)
  339. //sys Chflags(path string, flags int) (err error)
  340. //sys Chmod(path string, mode uint32) (err error)
  341. //sys Chown(path string, uid int, gid int) (err error)
  342. //sys Chroot(path string) (err error)
  343. //sys Close(fd int) (err error)
  344. //sys Dup(fd int) (nfd int, err error)
  345. //sys Dup2(from int, to int) (err error)
  346. //sys Exchangedata(path1 string, path2 string, options int) (err error)
  347. //sys Exit(code int)
  348. //sys Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
  349. //sys Fchdir(fd int) (err error)
  350. //sys Fchflags(fd int, flags int) (err error)
  351. //sys Fchmod(fd int, mode uint32) (err error)
  352. //sys Fchmodat(dirfd int, path string, mode uint32, flags int) (err error)
  353. //sys Fchown(fd int, uid int, gid int) (err error)
  354. //sys Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
  355. //sys Flock(fd int, how int) (err error)
  356. //sys Fpathconf(fd int, name int) (val int, err error)
  357. //sys Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
  358. //sys Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
  359. //sys Fstatfs(fd int, stat *Statfs_t) (err error) = SYS_FSTATFS64
  360. //sys Fsync(fd int) (err error)
  361. //sys Ftruncate(fd int, length int64) (err error)
  362. //sys Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) = SYS_GETDIRENTRIES64
  363. //sys Getdtablesize() (size int)
  364. //sysnb Getegid() (egid int)
  365. //sysnb Geteuid() (uid int)
  366. //sysnb Getgid() (gid int)
  367. //sysnb Getpgid(pid int) (pgid int, err error)
  368. //sysnb Getpgrp() (pgrp int)
  369. //sysnb Getpid() (pid int)
  370. //sysnb Getppid() (ppid int)
  371. //sys Getpriority(which int, who int) (prio int, err error)
  372. //sysnb Getrlimit(which int, lim *Rlimit) (err error)
  373. //sysnb Getrusage(who int, rusage *Rusage) (err error)
  374. //sysnb Getsid(pid int) (sid int, err error)
  375. //sysnb Getuid() (uid int)
  376. //sysnb Issetugid() (tainted bool)
  377. //sys Kqueue() (fd int, err error)
  378. //sys Lchown(path string, uid int, gid int) (err error)
  379. //sys Link(path string, link string) (err error)
  380. //sys Linkat(pathfd int, path string, linkfd int, link string, flags int) (err error)
  381. //sys Listen(s int, backlog int) (err error)
  382. //sys Lstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64
  383. //sys Mkdir(path string, mode uint32) (err error)
  384. //sys Mkdirat(dirfd int, path string, mode uint32) (err error)
  385. //sys Mkfifo(path string, mode uint32) (err error)
  386. //sys Mknod(path string, mode uint32, dev int) (err error)
  387. //sys Open(path string, mode int, perm uint32) (fd int, err error)
  388. //sys Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
  389. //sys Pathconf(path string, name int) (val int, err error)
  390. //sys Pread(fd int, p []byte, offset int64) (n int, err error)
  391. //sys Pwrite(fd int, p []byte, offset int64) (n int, err error)
  392. //sys read(fd int, p []byte) (n int, err error)
  393. //sys Readlink(path string, buf []byte) (n int, err error)
  394. //sys Readlinkat(dirfd int, path string, buf []byte) (n int, err error)
  395. //sys Rename(from string, to string) (err error)
  396. //sys Renameat(fromfd int, from string, tofd int, to string) (err error)
  397. //sys Revoke(path string) (err error)
  398. //sys Rmdir(path string) (err error)
  399. //sys Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
  400. //sys Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
  401. //sys Setegid(egid int) (err error)
  402. //sysnb Seteuid(euid int) (err error)
  403. //sysnb Setgid(gid int) (err error)
  404. //sys Setlogin(name string) (err error)
  405. //sysnb Setpgid(pid int, pgid int) (err error)
  406. //sys Setpriority(which int, who int, prio int) (err error)
  407. //sys Setprivexec(flag int) (err error)
  408. //sysnb Setregid(rgid int, egid int) (err error)
  409. //sysnb Setreuid(ruid int, euid int) (err error)
  410. //sysnb Setrlimit(which int, lim *Rlimit) (err error)
  411. //sysnb Setsid() (pid int, err error)
  412. //sysnb Settimeofday(tp *Timeval) (err error)
  413. //sysnb Setuid(uid int) (err error)
  414. //sys Stat(path string, stat *Stat_t) (err error) = SYS_STAT64
  415. //sys Statfs(path string, stat *Statfs_t) (err error) = SYS_STATFS64
  416. //sys Symlink(path string, link string) (err error)
  417. //sys Symlinkat(oldpath string, newdirfd int, newpath string) (err error)
  418. //sys Sync() (err error)
  419. //sys Truncate(path string, length int64) (err error)
  420. //sys Umask(newmask int) (oldmask int)
  421. //sys Undelete(path string) (err error)
  422. //sys Unlink(path string) (err error)
  423. //sys Unlinkat(dirfd int, path string, flags int) (err error)
  424. //sys Unmount(path string, flags int) (err error)
  425. //sys write(fd int, p []byte) (n int, err error)
  426. //sys mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
  427. //sys munmap(addr uintptr, length uintptr) (err error)
  428. //sys readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ
  429. //sys writelen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_WRITE
  430. /*
  431. * Unimplemented
  432. */
  433. // Profil
  434. // Sigaction
  435. // Sigprocmask
  436. // Getlogin
  437. // Sigpending
  438. // Sigaltstack
  439. // Ioctl
  440. // Reboot
  441. // Execve
  442. // Vfork
  443. // Sbrk
  444. // Sstk
  445. // Ovadvise
  446. // Mincore
  447. // Setitimer
  448. // Swapon
  449. // Select
  450. // Sigsuspend
  451. // Readv
  452. // Writev
  453. // Nfssvc
  454. // Getfh
  455. // Quotactl
  456. // Mount
  457. // Csops
  458. // Waitid
  459. // Add_profil
  460. // Kdebug_trace
  461. // Sigreturn
  462. // Atsocket
  463. // Kqueue_from_portset_np
  464. // Kqueue_portset
  465. // Getattrlist
  466. // Setattrlist
  467. // Getdirentriesattr
  468. // Searchfs
  469. // Delete
  470. // Copyfile
  471. // Watchevent
  472. // Waitevent
  473. // Modwatch
  474. // Fgetxattr
  475. // Fsetxattr
  476. // Fremovexattr
  477. // Flistxattr
  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