1 /* $OpenBSD: monitor_fdpass.c,v 1.21 2016/02/29 20:22:36 jca Exp $ */
3 * Copyright 2001 Niels Provos <provos@citi.umich.edu>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/types.h>
30 #include <sys/socket.h>
43 # ifdef HAVE_SYS_POLL_H
44 # include <sys/poll.h>
49 #include "monitor_fdpass.h"
52 mm_send_fd(int sock
, int fd
)
54 #if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
56 #ifndef HAVE_ACCRIGHTS_IN_MSGHDR
59 char buf
[CMSG_SPACE(sizeof(int))];
68 memset(&msg
, 0, sizeof(msg
));
69 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
70 msg
.msg_accrights
= (caddr_t
)&fd
;
71 msg
.msg_accrightslen
= sizeof(fd
);
73 memset(&cmsgbuf
, 0, sizeof(cmsgbuf
));
74 msg
.msg_control
= (caddr_t
)&cmsgbuf
.buf
;
75 msg
.msg_controllen
= sizeof(cmsgbuf
.buf
);
76 cmsg
= CMSG_FIRSTHDR(&msg
);
77 cmsg
->cmsg_len
= CMSG_LEN(sizeof(int));
78 cmsg
->cmsg_level
= SOL_SOCKET
;
79 cmsg
->cmsg_type
= SCM_RIGHTS
;
80 *(int *)CMSG_DATA(cmsg
) = fd
;
90 while ((n
= sendmsg(sock
, &msg
, 0)) == -1 &&
91 (errno
== EAGAIN
|| errno
== EINTR
)) {
92 debug3("%s: sendmsg(%d): %s", __func__
, fd
, strerror(errno
));
93 (void)poll(&pfd
, 1, -1);
96 error("%s: sendmsg(%d): %s", __func__
, fd
,
102 error("%s: sendmsg: expected sent 1 got %zd", __func__
, n
);
107 error("%s: file descriptor passing not supported", __func__
);
113 mm_receive_fd(int sock
)
115 #if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
117 #ifndef HAVE_ACCRIGHTS_IN_MSGHDR
120 char buf
[CMSG_SPACE(sizeof(int))];
122 struct cmsghdr
*cmsg
;
130 memset(&msg
, 0, sizeof(msg
));
135 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
136 msg
.msg_accrights
= (caddr_t
)&fd
;
137 msg
.msg_accrightslen
= sizeof(fd
);
139 memset(&cmsgbuf
, 0, sizeof(cmsgbuf
));
140 msg
.msg_control
= &cmsgbuf
.buf
;
141 msg
.msg_controllen
= sizeof(cmsgbuf
.buf
);
146 while ((n
= recvmsg(sock
, &msg
, 0)) == -1 &&
147 (errno
== EAGAIN
|| errno
== EINTR
)) {
148 debug3("%s: recvmsg: %s", __func__
, strerror(errno
));
149 (void)poll(&pfd
, 1, -1);
152 error("%s: recvmsg: %s", __func__
, strerror(errno
));
157 error("%s: recvmsg: expected received 1 got %zd", __func__
, n
);
161 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
162 if (msg
.msg_accrightslen
!= sizeof(fd
)) {
163 error("%s: no fd", __func__
);
167 cmsg
= CMSG_FIRSTHDR(&msg
);
169 error("%s: no message header", __func__
);
173 #ifndef BROKEN_CMSG_TYPE
174 if (cmsg
->cmsg_type
!= SCM_RIGHTS
) {
175 error("%s: expected type %d got %d", __func__
,
176 SCM_RIGHTS
, cmsg
->cmsg_type
);
180 fd
= (*(int *)CMSG_DATA(cmsg
));
184 error("%s: file descriptor passing not supported", __func__
);