16

I have a byte.Buffer that I pack with data using the binary.Write() function. I then need to send this byte array to a C function. Using Go 1.6 I have not been successful at figuring this out.

buf := new(bytes.Buffer) //create my buffer
....
binary.Write(buf, binary.LittleEndian, data) //write my data to buffer here
addr := (*C.uchar)(unsafe.Pointer(&buf.Bytes()[0])) //convert buffers byte array to a C array
rc := C.the_function(addr, C.int(buf.Len())) //Fails here

It fails on the line calling the C function saying:

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

The C function:

int the_function(const void *data, int nbytes);

I was able to get the following to work, but it felt wrong converting the byte array to a string. Is there a better way to do this? Does this method risk side effects to the data?

addr := unsafe.Pointer(C.CString(string(buf.Bytes()[0]))

Again this needs to work under Go 1.6 which introduced stricter cgo pointer rules.

Thank you.

dangeroushobo
  • 1,291
  • 2
  • 16
  • 28

2 Answers2

19

If you want to use your first approach, you need to create the slice outside the function call arguments, and avoid the temporarily allocated slice header or the outer structure in the arguments, so the cgo checks don't see it as a pointer stored in Go.

b := buf.Bytes()
rc := C.the_function(unsafe.Pointer(&b[0]), C.int(buf.Len()))

The C.CString method will be safer, in that the data is copied into a C buffer, so there is no pointer to Go memory, and there's no chance the slice behind the bytes.Buffer will be modified or go out of scope. You will want to convert the whole string, not just the first byte. This methods does need to allocate and copy twice, however if the amount of data is small it's probably not a concern compared to the overhead of the cgo call itself.

str := buf.String()
p := unsafe.Pointer(C.CString(str))
defer C.free(p)
rc = C.the_function(p, C.int(len(str)))

If the 2 copies of the data aren't acceptable in that solution, there is a third option where you malloc the C buffer yourself, and make a single copy into that buffer:

p := C.malloc(C.size_t(len(b)))
defer C.free(p)

// copy the data into the buffer, by converting it to a Go array
cBuf := (*[1 << 30]byte)(p)
copy(cBuf[:], b)
rc = C.the_function(p, C.int(buf.Len()))

But with both of those latter options, don't forget to free the malloc'ed pointer.

JimB
  • 104,193
  • 13
  • 262
  • 255
  • 1
    converting []byte to a c string may not a good idea. Because '\0' in the []byte will termiated the c string,and the length of the c string may not equal to length of origin []byte. – bronze man Sep 27 '16 at 14:28
  • @bronzeman: obviously, but the function in question takes the buffer length as an argument, and isn't expecting a null terminated string. `C.CString` adds the null byte if it were needed, but we skip it by passing the exact string length. – JimB Sep 27 '16 at 14:32
-1

Your program crashes because rules of passing pointers into C changed in go1.6 (see https://tip.golang.org/doc/go1.6#cgo for details).

I don't know why your program crashes, so I have created Go issue https://github.com/golang/go/issues/14546.

But regardless of answer on the issue, I wouldn't use internal bits of bytes.Buffer (as you do) to pass into cgo directly. The bytes.Buffer implementation can change in the future, and you program will start breaking mysteriously. I would just copy data you need into whatever structure is appropriate and use that to pass into cgo.

Duncan Jones
  • 67,400
  • 29
  • 193
  • 254
alex
  • 2,178
  • 16
  • 14
  • OP isn't using any internal bits of bytes.Buffer. I explained the reason, as does the dup of your issue. There's nothing wrong with using the slice returned by the buffer – JimB Feb 28 '16 at 12:49