Mikio Hara | d3003be | 2013-11-05 10:09:42 +0900 | [diff] [blame] | 1 | // Copyright 2009 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 | |
| 5 | // This code is a duplicate of syscall/syscall_linux_386.go with small |
| 6 | // modifications. |
| 7 | |
| 8 | package ipv6 |
| 9 | |
| 10 | import ( |
| 11 | "syscall" |
| 12 | "unsafe" |
| 13 | ) |
| 14 | |
| 15 | // On x86 Linux, all the socket calls go through an extra indirection, |
| 16 | // I think because the 5-register system call interface can't handle |
| 17 | // the 6-argument calls like sendto and recvfrom. Instead the |
| 18 | // arguments to the underlying system call are the number below and a |
| 19 | // pointer to an array of uintptr. We hide the pointer in the |
| 20 | // socketcall assembly to avoid allocation on every system call. |
| 21 | |
| 22 | const ( |
| 23 | // See /usr/include/linux/net.h. |
| 24 | _SETSOCKOPT = 14 |
| 25 | _GETSOCKOPT = 15 |
| 26 | ) |
| 27 | |
| 28 | var socketcall func(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) |
| 29 | |
Mikio Hara | d587440 | 2014-04-28 11:32:27 +0900 | [diff] [blame] | 30 | func getsockopt(fd int, level int, name int, v unsafe.Pointer, l *sysSockoptLen) error { |
Mikio Hara | d3003be | 2013-11-05 10:09:42 +0900 | [diff] [blame] | 31 | if _, errno := socketcall(_GETSOCKOPT, uintptr(fd), uintptr(level), uintptr(name), uintptr(v), uintptr(unsafe.Pointer(l)), 0); errno != 0 { |
| 32 | return error(errno) |
| 33 | } |
| 34 | return nil |
| 35 | } |
| 36 | |
Mikio Hara | d587440 | 2014-04-28 11:32:27 +0900 | [diff] [blame] | 37 | func setsockopt(fd int, level int, name int, v unsafe.Pointer, l uintptr) error { |
| 38 | if _, errno := socketcall(_SETSOCKOPT, uintptr(fd), uintptr(level), uintptr(name), uintptr(v), uintptr(l), 0); errno != 0 { |
Mikio Hara | d3003be | 2013-11-05 10:09:42 +0900 | [diff] [blame] | 39 | return error(errno) |
| 40 | } |
| 41 | return nil |
| 42 | } |