Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/cgo: ptr type casts of struct fields cause the whole struct to be checked #32970

Closed
notti opened this issue Jul 8, 2019 · 1 comment
Closed
Labels
FrozenDueToAge NeedsFix The path to resolution is known, but the work has not been done.
Milestone

Comments

@notti
Copy link
Contributor

notti commented Jul 8, 2019

What version of Go are you using (go version)?

$ go version
go version go1.12.6 linux/amd64
$ go version
go version devel +13327f219e Sat Jul 6 13:25:59 2019 +0000 linux/amd64

Does this issue reproduce with the latest release?

Yes. Tried also several older versions back to 1.10

What operating system and processor architecture are you using (go env)?

go env Output
$ go env
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/hidden/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/hidden/go"
GOPROXY=""
GORACE=""
GOROOT="/usr/lib/go"
GOTMPDIR=""
GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build181091171=/tmp/go-build -gno-record-gcc-switches"

What did you do?

package main

/*
struct I {
    int i;
    int *p;
};

int f(struct I *x) {
	return x->i;
}

*/
import "C"

import (
	"fmt"
)

type x struct {
	p *int
	i C.struct_I
}

func main() {
	t1 := new(x)
	t1.p = new(int)
	t1.i.i = 2
	fmt.Println("1:", C.f(&t1.i)) // <- this works
	fmt.Println("2:", C.f((*C.struct_I)(&t1.i))) // <- this doesn't work
}

What did you expect to see?

1: 2
2: 2

What did you see instead?

1: 2
panic: runtime error: cgo argument has Go pointer to Go pointer

goroutine 1 [running]:
main.main.func2(0xc000090020, 0xc00009a008)
	/home/notti/projects/cgocheck/main.go:30 +0x53
main.main()
	/home/notti/projects/cgocheck/main.go:30 +0x114

Why does this happen?

checkAddr in src/cmd/cgo/gcc.go doesn't recognize type conversions containing parenthesis, which are required for pointers (see https://golang.org/ref/spec#Conversions), and, therefore emits a _cgoCheckPointer without true as second argument, causing the check to look at the whole struct instead of just the element. Looks like pointer type conversions should be supported since ast.StarExpr is handled in isType.

This is the cause for google/gopacket#664

Possible fix: https://go-review.googlesource.com/c/go/+/185098

(updated with better demonstration program)

@gopherbot
Copy link

Change https://golang.org/cl/185098 mentions this issue: cmd/cgo: fix check for ptr casts to struct fields

@ianlancetaylor ianlancetaylor added the NeedsFix The path to resolution is known, but the work has not been done. label Jul 8, 2019
@ianlancetaylor ianlancetaylor added this to the Go1.14 milestone Jul 8, 2019
@golang golang locked and limited conversation to collaborators Jul 8, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge NeedsFix The path to resolution is known, but the work has not been done.
Projects
None yet
Development

No branches or pull requests

3 participants