1 /* $OpenBSD: monitor_fdpass.c,v 1.19 2010/01/12 00:58:25 djm 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>
44 #include "monitor_fdpass.h"
47 mm_send_fd(int sock
, int fd
)
49 #if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
51 #ifndef HAVE_ACCRIGHTS_IN_MSGHDR
54 char buf
[CMSG_SPACE(sizeof(int))];
63 memset(&msg
, 0, sizeof(msg
));
64 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
65 msg
.msg_accrights
= (caddr_t
)&fd
;
66 msg
.msg_accrightslen
= sizeof(fd
);
68 msg
.msg_control
= (caddr_t
)&cmsgbuf
.buf
;
69 msg
.msg_controllen
= sizeof(cmsgbuf
.buf
);
70 cmsg
= CMSG_FIRSTHDR(&msg
);
71 cmsg
->cmsg_len
= CMSG_LEN(sizeof(int));
72 cmsg
->cmsg_level
= SOL_SOCKET
;
73 cmsg
->cmsg_type
= SCM_RIGHTS
;
74 *(int *)CMSG_DATA(cmsg
) = fd
;
84 while ((n
= sendmsg(sock
, &msg
, 0)) == -1 &&
85 (errno
== EAGAIN
|| errno
== EINTR
)) {
86 debug3("%s: sendmsg(%d): %s", __func__
, fd
, strerror(errno
));
87 (void)poll(&pfd
, 1, -1);
90 error("%s: sendmsg(%d): %s", __func__
, fd
,
96 error("%s: sendmsg: expected sent 1 got %ld",
102 error("%s: file descriptor passing not supported", __func__
);
108 mm_receive_fd(int sock
)
110 #if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
112 #ifndef HAVE_ACCRIGHTS_IN_MSGHDR
115 char buf
[CMSG_SPACE(sizeof(int))];
117 struct cmsghdr
*cmsg
;
125 memset(&msg
, 0, sizeof(msg
));
130 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
131 msg
.msg_accrights
= (caddr_t
)&fd
;
132 msg
.msg_accrightslen
= sizeof(fd
);
134 msg
.msg_control
= &cmsgbuf
.buf
;
135 msg
.msg_controllen
= sizeof(cmsgbuf
.buf
);
140 while ((n
= recvmsg(sock
, &msg
, 0)) == -1 &&
141 (errno
== EAGAIN
|| errno
== EINTR
)) {
142 debug3("%s: recvmsg: %s", __func__
, strerror(errno
));
143 (void)poll(&pfd
, 1, -1);
146 error("%s: recvmsg: %s", __func__
, strerror(errno
));
151 error("%s: recvmsg: expected received 1 got %ld",
156 #ifdef HAVE_ACCRIGHTS_IN_MSGHDR
157 if (msg
.msg_accrightslen
!= sizeof(fd
)) {
158 error("%s: no fd", __func__
);
162 cmsg
= CMSG_FIRSTHDR(&msg
);
164 error("%s: no message header", __func__
);
168 #ifndef BROKEN_CMSG_TYPE
169 if (cmsg
->cmsg_type
!= SCM_RIGHTS
) {
170 error("%s: expected type %d got %d", __func__
,
171 SCM_RIGHTS
, cmsg
->cmsg_type
);
175 fd
= (*(int *)CMSG_DATA(cmsg
));
179 error("%s: file descriptor passing not supported", __func__
);