3 * File descriptor passing
5 * (c) 2003 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
37 #include <sys/types.h>
40 #include <sys/socket.h>
47 /*----- Main code ---------------------------------------------------------*/
49 /* --- @fdpass_send@ --- *
51 * Arguments: @int sock@ = socket to send over
52 * @int fd@ = file descriptor to send
53 * @const void *p@ = pointer to data to send
54 * @size_t sz@ = size of buffer to send
56 * Returns: On error, @-1@, otherwise number of bytes transferred from
59 * Use: Sends a copy of file descriptor @fd@ to the other end of
63 ssize_t fdpass_send(int sock, int fd, const void *p, size_t sz)
67 #ifndef HAVE_MSG_ACCRIGHTS
68 char buf[CMSG_SPACE(sizeof(fd))];
72 iov.iov_base = UNCONST(void, p);
78 #ifdef HAVE_MSG_ACCRIGHTS
79 msg.msg_accrights = &fd;
80 msg.msg_accrightslen = sizeof(fd);
83 msg.msg_control = buf;
84 msg.msg_controllen = sizeof(buf);
85 cmsg = CMSG_FIRSTHDR(&msg);
86 cmsg->cmsg_len = CMSG_LEN(sizeof(fd));
87 cmsg->cmsg_level = SOL_SOCKET;
88 cmsg->cmsg_type = SCM_RIGHTS;
89 memcpy(CMSG_DATA(cmsg), &fd, sizeof(fd));
91 return (sendmsg(sock, &msg, 0));
94 /* --- @fdpass_recv@ --- *
96 * Arguments: @int sock@ = socket to send over
97 * @int *fd@ = where to put received descriptor
98 * @void *p@ = pointer to where to put data
99 * @size_t sz@ = size of buffer
101 * Returns: On error, @-1@, otherwise number of bytes transferred.
103 * Use: Receives a file descriptor. If the call succeeds, and there
104 * was a file descriptor, then @fd@ won't be @-1@ on exit;
105 * otherwise it will. At most one descriptor will be collected.
108 /* Qemu 2.8.1 clobbers 12 bytes beyond the end of the control-message
109 * buffer. This is fixed in 2.12, but I'll bodge it for the sake of Debian
112 #define QEMU_SCRATCHSZ 16
114 ssize_t fdpass_recv(int sock, int *fd, void *p, size_t sz)
119 #ifndef HAVE_MSG_ACCRIGHTS
120 char buf[CMSG_SPACE(sizeof(fd)) + QEMU_SCRATCHSZ];
121 struct cmsghdr *cmsg;
132 #ifdef HAVE_MSG_ACCRIGHTS
133 msg.msg_accrights = fd;
134 msg.msg_accrightslen = sizeof(*fd);
137 msg.msg_control = buf;
138 msg.msg_controllen = sizeof(buf) - QEMU_SCRATCHSZ;
140 if ((rc = recvmsg(sock, &msg, 0)) < 0)
142 #ifdef HAVE_MSG_ACCRIGHTS
143 if (msg.msg_accrightslen < sizeof(*fd))
146 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
147 if (cmsg->cmsg_level == SOL_SOCKET &&
148 cmsg->cmsg_type == SCM_RIGHTS &&
149 cmsg->cmsg_len >= CMSG_LEN(sizeof(*fd))) {
150 memcpy(&fdtmp, CMSG_DATA(cmsg), sizeof(fdtmp));
161 #undef QEMU_SCRATCHSZ
163 /*----- That's all, folks -------------------------------------------------*/