dongtan5555 2017-12-05 01:28
浏览 283
已采纳

是否可以使用Go通过Unix域套接字发送和接收文件描述符?

In the unix(7) man page for Unix domain sockets, it says that sendmsg can be used with the SCM_RIGHTS flag to send file descriptors over these sockets. Is this supported in Go? Is there any good example code out there showing how it's done?

It appears that there is a Msghdr structure declared in the syscall package. But no functions take it. Maybe I have to use the raw system call interface?

  • 写回答

1条回答 默认 最新

  • dst3605528 2017-12-05 01:48
    关注

    There's a package that does it here: https://github.com/ftrvxmtrx/fd/blob/master/fd.go. However that's using the Syscall package to achieve it. I'm not sure if there's a way to do this with Go standard library API.

    In the syscall package, the things to look at are UnixRights, ParseUnixRights, and ParseSocketControlMessage. These can be used in conjunction with Readmsg and Sendmsg to send file descriptors over AF_UNIX sockets.

    The basic structure goes something like this for receiving:

    buf := make([]byte, syscall.CmsgSpace(<number of file descriptors expected> * 4))
    _, _, _, _, err = syscall.Recvmsg(socket, nil, buf, 0)
    if err != nil {
        panic(err)
    }
    var msgs []syscall.SocketControlMessage
    msgs, err = syscall.ParseSocketControlMessage(buf)
    var allfds []int
    for i := 0, i < len(msgs) && err == null; i++ {
        var msgfds []int
        msgfds, err = syscall.ParseUnixRights(&msgs[i])
        append(allfds, msgfds...)
    }
    

    And for sending, it's much simpler (var fds []int):

    rights := syscall.UnixRights(fds...)
    err := syscall.Sendmsg(socket, nil, rights, nil, 0)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?