blob: d3e65cbaacad1b669546b61d1698005205b43b7c [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: monitor_fdpass.c,v 1.11 2006/07/22 20:48:23 stevesk Exp $ */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002/*
3 * Copyright 2001 Niels Provos <provos@citi.umich.edu>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
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.
14 *
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.
25 */
26
27#include "includes.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000028
Damien Millere3b60b52006-07-10 21:08:03 +100029#include <sys/types.h>
30#include <sys/socket.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000031#include <sys/uio.h>
32
Darren Tucker39972492006-07-12 22:22:46 +100033#include <errno.h>
Damien Millere3476ed2006-07-24 14:13:33 +100034#include <string.h>
Darren Tucker39972492006-07-12 22:22:46 +100035
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000036#include "log.h"
37#include "monitor_fdpass.h"
38
39void
Darren Tucker3f9fdc72004-06-22 12:56:01 +100040mm_send_fd(int sock, int fd)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000041{
Tim Rice66480f12002-04-15 21:10:09 -070042#if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000043 struct msghdr msg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000044 struct iovec vec;
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000045 char ch = '\0';
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000046 ssize_t n;
Tim Rice28bbb0c2002-05-27 17:37:32 -070047#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000048 char tmp[CMSG_SPACE(sizeof(int))];
49 struct cmsghdr *cmsg;
50#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000051
52 memset(&msg, 0, sizeof(msg));
Tim Rice28bbb0c2002-05-27 17:37:32 -070053#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000054 msg.msg_accrights = (caddr_t)&fd;
55 msg.msg_accrightslen = sizeof(fd);
56#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000057 msg.msg_control = (caddr_t)tmp;
58 msg.msg_controllen = CMSG_LEN(sizeof(int));
59 cmsg = CMSG_FIRSTHDR(&msg);
60 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
61 cmsg->cmsg_level = SOL_SOCKET;
62 cmsg->cmsg_type = SCM_RIGHTS;
63 *(int *)CMSG_DATA(cmsg) = fd;
Kevin Steves1adb1202002-03-22 19:32:53 +000064#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000065
66 vec.iov_base = &ch;
67 vec.iov_len = 1;
68 msg.msg_iov = &vec;
69 msg.msg_iovlen = 1;
70
Darren Tucker3f9fdc72004-06-22 12:56:01 +100071 if ((n = sendmsg(sock, &msg, 0)) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000072 fatal("%s: sendmsg(%d): %s", __func__, fd,
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000073 strerror(errno));
74 if (n != 1)
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000075 fatal("%s: sendmsg: expected sent 1 got %ld",
76 __func__, (long)n);
Kevin Stevesc3c82552002-04-07 16:39:12 +000077#else
78 fatal("%s: UsePrivilegeSeparation=yes not supported",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +000079 __func__);
Kevin Stevesc3c82552002-04-07 16:39:12 +000080#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000081}
82
83int
Darren Tucker3f9fdc72004-06-22 12:56:01 +100084mm_receive_fd(int sock)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000085{
Tim Rice66480f12002-04-15 21:10:09 -070086#if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087 struct msghdr msg;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000088 struct iovec vec;
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000089 ssize_t n;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000090 char ch;
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000091 int fd;
Tim Rice28bbb0c2002-05-27 17:37:32 -070092#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000093 char tmp[CMSG_SPACE(sizeof(int))];
94 struct cmsghdr *cmsg;
Kevin Steves1adb1202002-03-22 19:32:53 +000095#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000096
97 memset(&msg, 0, sizeof(msg));
98 vec.iov_base = &ch;
99 vec.iov_len = 1;
100 msg.msg_iov = &vec;
101 msg.msg_iovlen = 1;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700102#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +0000103 msg.msg_accrights = (caddr_t)&fd;
104 msg.msg_accrightslen = sizeof(fd);
105#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000106 msg.msg_control = tmp;
107 msg.msg_controllen = sizeof(tmp);
Kevin Steves1adb1202002-03-22 19:32:53 +0000108#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000109
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000110 if ((n = recvmsg(sock, &msg, 0)) == -1)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000111 fatal("%s: recvmsg: %s", __func__, strerror(errno));
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000112 if (n != 1)
Ben Lindstromd5bf46e2002-06-27 00:21:03 +0000113 fatal("%s: recvmsg: expected received 1 got %ld",
114 __func__, (long)n);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115
Tim Rice28bbb0c2002-05-27 17:37:32 -0700116#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +0000117 if (msg.msg_accrightslen != sizeof(fd))
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000118 fatal("%s: no fd", __func__);
Kevin Steves1adb1202002-03-22 19:32:53 +0000119#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000120 cmsg = CMSG_FIRSTHDR(&msg);
Darren Tucker1ef0bc02004-08-13 21:29:02 +1000121 if (cmsg == NULL)
122 fatal("%s: no message header", __func__);
Darren Tucker3c016542003-05-02 20:48:21 +1000123#ifndef BROKEN_CMSG_TYPE
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000124 if (cmsg->cmsg_type != SCM_RIGHTS)
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000125 fatal("%s: expected type %d got %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000126 SCM_RIGHTS, cmsg->cmsg_type);
Darren Tucker3c016542003-05-02 20:48:21 +1000127#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000128 fd = (*(int *)CMSG_DATA(cmsg));
Kevin Steves1adb1202002-03-22 19:32:53 +0000129#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000130 return fd;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000131#else
132 fatal("%s: UsePrivilegeSeparation=yes not supported",
Ben Lindstrom7d9c38f2002-06-06 21:40:51 +0000133 __func__);
Kevin Stevesc3c82552002-04-07 16:39:12 +0000134#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000135}