"strings"
"syscall"
"testing"
+ "unsafe"
)
// sigquit is the signal to send to kill a hanging testdata program.
}
}
+func TestBadOpen(t *testing.T) {
+ // make sure we get the correct error code if open fails. Same for
+ // read/write/close on the resulting -1 fd. See issue 10052.
+ nonfile := []byte("/notreallyafile")
+ fd := runtime.Open(&nonfile[0], 0, 0)
+ if fd != -1 {
+ t.Errorf("open(%q)=%d, want -1", nonfile, fd)
+ }
+ var buf [32]byte
+ r := runtime.Read(-1, unsafe.Pointer(&buf[0]), int32(len(buf)))
+ if got, want := r, -int32(syscall.EBADF); got != want {
+ t.Errorf("read()=%d, want %d", got, want)
+ }
+ w := runtime.Write(^uintptr(0), unsafe.Pointer(&buf[0]), int32(len(buf)))
+ if got, want := w, -int32(syscall.EBADF); got != want {
+ t.Errorf("write()=%d, want %d", got, want)
+ }
+ c := runtime.Close(-1)
+ if c != -1 {
+ t.Errorf("close()=%d, want -1", c)
+ }
+}
+
func TestCrashDumpsAllThreads(t *testing.T) {
if *flagQuick {
t.Skip("-quick")
// Check the validity of g because without a g during
// newosproc0.
if _g_ != nil {
- r, _ := syscall3(&libc_write, uintptr(fd), uintptr(p), uintptr(n))
+ r, errno := syscall3(&libc_write, uintptr(fd), uintptr(p), uintptr(n))
+ if int32(r) < 0 {
+ return -int32(errno)
+ }
return int32(r)
}
+ // Note that in this case we can't return a valid errno value.
return write2(fd, uintptr(p), n)
}
//go:nosplit
func read(fd int32, p unsafe.Pointer, n int32) int32 {
- r, _ := syscall3(&libc_read, uintptr(fd), uintptr(p), uintptr(n))
+ r, errno := syscall3(&libc_read, uintptr(fd), uintptr(p), uintptr(n))
+ if int32(r) < 0 {
+ return -int32(errno)
+ }
return int32(r)
}
//go:nosplit
func read(fd int32, buf unsafe.Pointer, nbyte int32) int32 {
- return int32(sysvicall3(&libc_read, uintptr(fd), uintptr(buf), uintptr(nbyte)))
+ r1, err := sysvicall3Err(&libc_read, uintptr(fd), uintptr(buf), uintptr(nbyte))
+ if c := int32(r1); c >= 0 {
+ return c
+ }
+ return -int32(err)
}
//go:nosplit
//go:nosplit
func write1(fd uintptr, buf unsafe.Pointer, nbyte int32) int32 {
- return int32(sysvicall3(&libc_write, uintptr(fd), uintptr(buf), uintptr(nbyte)))
+ r1, err := sysvicall3Err(&libc_write, fd, uintptr(buf), uintptr(nbyte))
+ if c := int32(r1); c >= 0 {
+ return c
+ }
+ return -int32(err)
}
func osyield1()
//go:nosplit
func sysvicall3(fn *libcFunc, a1, a2, a3 uintptr) uintptr {
+ r1, _ := sysvicall3Err(fn, a1, a2, a3)
+ return r1
+}
+
+//go:nosplit
+//go:cgo_unsafe_args
+
+// sysvicall3Err returns both the system call result and the errno value.
+// This is used by sysicall3 and write1.
+func sysvicall3Err(fn *libcFunc, a1, a2, a3 uintptr) (r1, err uintptr) {
// Leave caller's PC/SP around for traceback.
gp := getg()
var mp *m
if mp != nil {
mp.libcallsp = 0
}
- return libcall.r1
+ return libcall.r1, libcall.err
}
//go:nosplit
}
}
-func TestBadOpen(t *testing.T) {
- if GOOS == "windows" || GOOS == "js" {
- t.Skip("skipping OS that doesn't have open/read/write/close")
- }
- // make sure we get the correct error code if open fails. Same for
- // read/write/close on the resulting -1 fd. See issue 10052.
- nonfile := []byte("/notreallyafile")
- fd := Open(&nonfile[0], 0, 0)
- if fd != -1 {
- t.Errorf("open(\"%s\")=%d, want -1", string(nonfile), fd)
- }
- var buf [32]byte
- r := Read(-1, unsafe.Pointer(&buf[0]), int32(len(buf)))
- if r != -1 {
- t.Errorf("read()=%d, want -1", r)
- }
- w := Write(^uintptr(0), unsafe.Pointer(&buf[0]), int32(len(buf)))
- if w != -1 {
- t.Errorf("write()=%d, want -1", w)
- }
- c := Close(-1)
- if c != -1 {
- t.Errorf("close()=%d, want -1", c)
- }
-}
-
func TestAppendGrowth(t *testing.T) {
var x []int64
check := func(want int) {
import "unsafe"
+// read calls the read system call.
+// It returns a non-negative number of bytes written or a negative errno value.
func read(fd int32, p unsafe.Pointer, n int32) int32
+
func closefd(fd int32) int32
func exit(code int32)
func usleep(usec uint32)
+// write calls the write system call.
+// It returns a non-negative number of bytes written or a negative errno value.
//go:noescape
func write1(fd uintptr, p unsafe.Pointer, n int32) int32
MOVL 8(CX), AX // arg 3 count
MOVL AX, 8(SP)
CALL libc_read(SB)
+ TESTL AX, AX
+ JGE noerr
+ CALL libc_error(SB)
+ MOVL (AX), AX
+ NEGL AX // caller expects negative errno value
+noerr:
MOVL BP, SP
POPL BP
RET
MOVL 8(CX), AX // arg 3 count
MOVL AX, 8(SP)
CALL libc_write(SB)
+ TESTL AX, AX
+ JGE noerr
+ CALL libc_error(SB)
+ MOVL (AX), AX
+ NEGL AX // caller expects negative errno value
+noerr:
MOVL BP, SP
POPL BP
RET
MOVL 16(DI), DX // arg 3 count
MOVL 0(DI), DI // arg 1 fd
CALL libc_read(SB)
+ TESTL AX, AX
+ JGE noerr
+ CALL libc_error(SB)
+ MOVL (AX), AX
+ NEGL AX // caller expects negative errno value
+noerr:
POPQ BP
RET
MOVL 16(DI), DX // arg 3 count
MOVQ 0(DI), DI // arg 1 fd
CALL libc_write(SB)
+ TESTL AX, AX
+ JGE noerr
+ CALL libc_error(SB)
+ MOVL (AX), AX
+ NEGL AX // caller expects negative errno value
+noerr:
POPQ BP
RET
MOVW 8(R0), R2 // arg 3 count
MOVW 0(R0), R0 // arg 1 fd
BL libc_write(SB)
+ MOVW $-1, R1
+ CMP R0, R1
+ BNE noerr
+ BL libc_error(SB)
+ MOVW (R0), R0
+ RSB $0, R0, R0 // caller expects negative errno value
+noerr:
RET
TEXT runtime·read_trampoline(SB),NOSPLIT,$0
MOVW 8(R0), R2 // arg 3 count
MOVW 0(R0), R0 // arg 1 fd
BL libc_read(SB)
+ MOVW $-1, R1
+ CMP R0, R1
+ BNE noerr
+ BL libc_error(SB)
+ MOVW (R0), R0
+ RSB $0, R0, R0 // caller expects negative errno value
+noerr:
RET
TEXT runtime·pipe_trampoline(SB),NOSPLIT,$0
MOVW 16(R0), R2 // arg 3 count
MOVW 0(R0), R0 // arg 1 fd
BL libc_write(SB)
+ MOVD $-1, R1
+ CMP R0, R1
+ BNE noerr
+ BL libc_error(SB)
+ MOVW (R0), R0
+ NEG R0, R0 // caller expects negative errno value
+noerr:
RET
TEXT runtime·read_trampoline(SB),NOSPLIT,$0
MOVW 16(R0), R2 // arg 3 count
MOVW 0(R0), R0 // arg 1 fd
BL libc_read(SB)
+ MOVD $-1, R1
+ CMP R0, R1
+ BNE noerr
+ BL libc_error(SB)
+ MOVW (R0), R0
+ NEG R0, R0 // caller expects negative errno value
+noerr:
RET
TEXT runtime·pipe_trampoline(SB),NOSPLIT,$0
MOVL $3, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVL $4, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVL $3, AX
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $4, AX
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $3, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVL $4, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVW n+8(FP), R2 // arg 3 count
MOVW $SYS_read, R7
SWI $0
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVW n+8(FP), R2 // arg 3 count
MOVW $SYS_write, R7
SWI $0
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVL p+4(FP), CX
MOVL n+8(FP), DX
INVOKE_SYSCALL
- CMPL AX, $0xfffff001
- JLS 2(PC)
- MOVL $-1, AX
MOVL AX, ret+12(FP)
RET
MOVL p+4(FP), CX
MOVL n+8(FP), DX
INVOKE_SYSCALL
- CMPL AX, $0xfffff001
- JLS 2(PC)
- MOVL $-1, AX
MOVL AX, ret+12(FP)
RET
MOVL n+16(FP), DX
MOVL $SYS_write, AX
SYSCALL
- CMPQ AX, $0xfffffffffffff001
- JLS 2(PC)
- MOVL $-1, AX
MOVL AX, ret+24(FP)
RET
MOVL n+16(FP), DX
MOVL $SYS_read, AX
SYSCALL
- CMPQ AX, $0xfffffffffffff001
- JLS 2(PC)
- MOVL $-1, AX
MOVL AX, ret+24(FP)
RET
MOVW n+8(FP), R2
MOVW $SYS_write, R7
SWI $0
- MOVW $0xfffff001, R1
- CMP R1, R0
- MOVW.HI $-1, R0
MOVW R0, ret+12(FP)
RET
MOVW n+8(FP), R2
MOVW $SYS_read, R7
SWI $0
- MOVW $0xfffff001, R1
- CMP R1, R0
- MOVW.HI $-1, R0
MOVW R0, ret+12(FP)
RET
MOVW n+16(FP), R2
MOVD $SYS_write, R8
SVC
- CMN $4095, R0
- BCC done
- MOVW $-1, R0
-done:
MOVW R0, ret+24(FP)
RET
MOVW n+16(FP), R2
MOVD $SYS_read, R8
SVC
- CMN $4095, R0
- BCC done
- MOVW $-1, R0
-done:
MOVW R0, ret+24(FP)
RET
MOVV $SYS_write, R2
SYSCALL
BEQ R7, 2(PC)
- MOVW $-1, R2
+ SUBVU R2, R0, R2 // caller expects negative errno
MOVW R2, ret+24(FP)
RET
MOVV $SYS_read, R2
SYSCALL
BEQ R7, 2(PC)
- MOVW $-1, R2
+ SUBVU R2, R0, R2 // caller expects negative errno
MOVW R2, ret+24(FP)
RET
MOVW $SYS_write, R2
SYSCALL
BEQ R7, 2(PC)
- MOVW $-1, R2
+ SUBU R2, R0, R2 // caller expects negative errno
MOVW R2, ret+12(FP)
RET
MOVW $SYS_read, R2
SYSCALL
BEQ R7, 2(PC)
- MOVW $-1, R2
+ SUBU R2, R0, R2 // caller expects negative errno
MOVW R2, ret+12(FP)
RET
MOVW n+16(FP), R5
SYSCALL $SYS_write
BVC 2(PC)
- MOVW $-1, R3
+ NEG R3 // caller expects negative errno
MOVW R3, ret+24(FP)
RET
MOVW n+16(FP), R5
SYSCALL $SYS_read
BVC 2(PC)
- MOVW $-1, R3
+ NEG R3 // caller expects negative errno
MOVW R3, ret+24(FP)
RET
MOVW n+16(FP), R4
MOVW $SYS_write, R1
SYSCALL
- MOVD $-4095, R3
- CMPUBLT R2, R3, 2(PC)
- MOVW $-1, R2
MOVW R2, ret+24(FP)
RET
MOVW n+16(FP), R4
MOVW $SYS_read, R1
SYSCALL
- MOVD $-4095, R3
- CMPUBLT R2, R3, 2(PC)
- MOVW $-1, R2
MOVW R2, ret+24(FP)
RET
MOVL $SYS_read, AX
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $SYS_write, AX
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $SYS_read, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVL $SYS_write, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVW p+4(FP), R1
MOVW n+8(FP), R2
SWI $SYS_read
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVW p+4(FP), R1 // arg 2 - buf
MOVW n+8(FP), R2 // arg 3 - nbyte
SWI $SYS_write
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVW n+16(FP), R2 // arg 3 - count
SVC $SYS_read
BCC ok
- MOVW $-1, R0
+ NEG R0, R0
ok:
MOVW R0, ret+24(FP)
RET
MOVW n+16(FP), R2 // arg 3 - nbyte
SVC $SYS_write
BCC ok
- MOVW $-1, R0
+ NEG R0, R0
ok:
MOVW R0, ret+24(FP)
RET
MOVL $3, AX
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $4, AX // sys_write
INT $0x80
JAE 2(PC)
- MOVL $-1, AX
+ NEGL AX // caller expects negative errno
MOVL AX, ret+12(FP)
RET
MOVL $3, AX
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVL $4, AX // sys_write
SYSCALL
JCC 2(PC)
- MOVL $-1, AX
+ NEGQ AX // caller expects negative errno
MOVL AX, ret+24(FP)
RET
MOVW n+8(FP), R2 // arg 3 - nbyte
MOVW $3, R12 // sys_read
SWI $0
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVW n+8(FP), R2 // arg 3 - nbyte
MOVW $4, R12 // sys_write
SWI $0
- MOVW.CS $-1, R0
+ SUB.CS $0, R0, R0 // caller expects negative errno
MOVW R0, ret+12(FP)
RET
MOVD $3, R8 // sys_read
SVC
BCC 2(PC)
- MOVW $-1, R0
+ NEG R0, R0
MOVW R0, ret+24(FP)
RET
MOVD $4, R8 // sys_write
SVC
BCC 2(PC)
- MOVW $-1, R0
+ NEG R0, R0
MOVW R0, ret+24(FP)
RET