blob: 5401ea46656fce06a10c0ca45eb0bd982c1666ec [file] [log] [blame]
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001/*
2 * Copyright 2001 Niels Provos <provos@citi.umich.edu>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000027RCSID("$OpenBSD: monitor_fdpass.c,v 1.2 2002/03/24 17:53:16 stevesk Exp $");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000028
29#include <sys/uio.h>
30
31#include "log.h"
32#include "monitor_fdpass.h"
33
34void
35mm_send_fd(int socket, int fd)
36{
Tim Rice66480f12002-04-15 21:10:09 -070037#if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000038 struct msghdr msg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000039 struct iovec vec;
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000040 char ch = '\0';
41 int n;
Kevin Steves1adb1202002-03-22 19:32:53 +000042#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
43 char tmp[CMSG_SPACE(sizeof(int))];
44 struct cmsghdr *cmsg;
45#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000046
47 memset(&msg, 0, sizeof(msg));
Kevin Steves1adb1202002-03-22 19:32:53 +000048#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
49 msg.msg_accrights = (caddr_t)&fd;
50 msg.msg_accrightslen = sizeof(fd);
51#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000052 msg.msg_control = (caddr_t)tmp;
53 msg.msg_controllen = CMSG_LEN(sizeof(int));
54 cmsg = CMSG_FIRSTHDR(&msg);
55 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
56 cmsg->cmsg_level = SOL_SOCKET;
57 cmsg->cmsg_type = SCM_RIGHTS;
58 *(int *)CMSG_DATA(cmsg) = fd;
Kevin Steves1adb1202002-03-22 19:32:53 +000059#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000060
61 vec.iov_base = &ch;
62 vec.iov_len = 1;
63 msg.msg_iov = &vec;
64 msg.msg_iovlen = 1;
65
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000066 if ((n = sendmsg(socket, &msg, 0)) == -1)
67 fatal("%s: sendmsg(%d): %s", __FUNCTION__, fd,
68 strerror(errno));
69 if (n != 1)
70 fatal("%s: sendmsg: expected sent 1 got %d",
71 __FUNCTION__, n);
Kevin Stevesc3c82552002-04-07 16:39:12 +000072#else
73 fatal("%s: UsePrivilegeSeparation=yes not supported",
74 __FUNCTION__);
75#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000076}
77
78int
79mm_receive_fd(int socket)
80{
Tim Rice66480f12002-04-15 21:10:09 -070081#if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000082 struct msghdr msg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000083 struct iovec vec;
84 char ch;
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000085 int fd, n;
Kevin Steves1adb1202002-03-22 19:32:53 +000086#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
87 char tmp[CMSG_SPACE(sizeof(int))];
88 struct cmsghdr *cmsg;
Kevin Steves1adb1202002-03-22 19:32:53 +000089#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090
91 memset(&msg, 0, sizeof(msg));
92 vec.iov_base = &ch;
93 vec.iov_len = 1;
94 msg.msg_iov = &vec;
95 msg.msg_iovlen = 1;
Kevin Steves1adb1202002-03-22 19:32:53 +000096#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
97 msg.msg_accrights = (caddr_t)&fd;
98 msg.msg_accrightslen = sizeof(fd);
99#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000100 msg.msg_control = tmp;
101 msg.msg_controllen = sizeof(tmp);
Kevin Steves1adb1202002-03-22 19:32:53 +0000102#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000103
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000104 if ((n = recvmsg(socket, &msg, 0)) == -1)
105 fatal("%s: recvmsg: %s", __FUNCTION__, strerror(errno));
106 if (n != 1)
107 fatal("%s: recvmsg: expected received 1 got %d",
108 __FUNCTION__, n);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000109
Kevin Steves1adb1202002-03-22 19:32:53 +0000110#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
111 if (msg.msg_accrightslen != sizeof(fd))
112 fatal("%s: no fd", __FUNCTION__);
Kevin Steves1adb1202002-03-22 19:32:53 +0000113#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000114 cmsg = CMSG_FIRSTHDR(&msg);
115 if (cmsg->cmsg_type != SCM_RIGHTS)
116 fatal("%s: expected type %d got %d", __FUNCTION__,
117 SCM_RIGHTS, cmsg->cmsg_type);
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000118 fd = (*(int *)CMSG_DATA(cmsg));
Kevin Steves1adb1202002-03-22 19:32:53 +0000119#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000120 return fd;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000121#else
122 fatal("%s: UsePrivilegeSeparation=yes not supported",
123 __FUNCTION__);
124#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000125}