blob: 7eb6f5c6e1f3ffe7a561a0bd48ef65d9deccadb0 [file] [log] [blame]
Darren Tuckere371a132010-01-12 19:43:12 +11001/* $OpenBSD: monitor_fdpass.c,v 1.19 2010/01/12 00:58:25 djm 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>
Darren Tuckera43c0052006-10-16 19:49:12 +100032#ifdef HAVE_SYS_UN_H
33#include <sys/un.h>
34#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000035
Darren Tucker39972492006-07-12 22:22:46 +100036#include <errno.h>
Darren Tuckera8f20cf2010-01-13 10:54:46 +110037#ifdef HAVE_POLL_H
Darren Tuckere371a132010-01-12 19:43:12 +110038#include <poll.h>
Darren Tuckera8f20cf2010-01-13 10:54:46 +110039#endif
Damien Millere3476ed2006-07-24 14:13:33 +100040#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100041#include <stdarg.h>
Darren Tucker39972492006-07-12 22:22:46 +100042
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000043#include "log.h"
44#include "monitor_fdpass.h"
45
Damien Miller54fd7cf2007-09-17 12:04:08 +100046int
Darren Tucker3f9fdc72004-06-22 12:56:01 +100047mm_send_fd(int sock, int fd)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000048{
Tim Rice66480f12002-04-15 21:10:09 -070049#if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000050 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -070051#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +110052 union {
53 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +110054 char buf[CMSG_SPACE(sizeof(int))];
55 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +000056 struct cmsghdr *cmsg;
57#endif
Darren Tucker69087ea2008-11-23 14:03:19 +110058 struct iovec vec;
59 char ch = '\0';
60 ssize_t n;
Darren Tuckere371a132010-01-12 19:43:12 +110061 struct pollfd pfd;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000062
63 memset(&msg, 0, sizeof(msg));
Tim Rice28bbb0c2002-05-27 17:37:32 -070064#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000065 msg.msg_accrights = (caddr_t)&fd;
66 msg.msg_accrightslen = sizeof(fd);
67#else
Damien Millerf92e0632008-03-27 10:53:23 +110068 msg.msg_control = (caddr_t)&cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +110069 msg.msg_controllen = sizeof(cmsgbuf.buf);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000070 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;
Kevin Steves1adb1202002-03-22 19:32:53 +000075#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000076
77 vec.iov_base = &ch;
78 vec.iov_len = 1;
79 msg.msg_iov = &vec;
80 msg.msg_iovlen = 1;
81
Darren Tuckere371a132010-01-12 19:43:12 +110082 pfd.fd = sock;
83 pfd.events = POLLOUT;
84 while ((n = sendmsg(sock, &msg, 0)) == -1 &&
85 (errno == EAGAIN || errno == EINTR)) {
Darren Tucker23645642008-12-01 21:42:13 +110086 debug3("%s: sendmsg(%d): %s", __func__, fd, strerror(errno));
Darren Tuckere371a132010-01-12 19:43:12 +110087 (void)poll(&pfd, 1, -1);
88 }
Darren Tucker23645642008-12-01 21:42:13 +110089 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +100090 error("%s: sendmsg(%d): %s", __func__, fd,
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000091 strerror(errno));
Damien Miller54fd7cf2007-09-17 12:04:08 +100092 return -1;
93 }
94
95 if (n != 1) {
96 error("%s: sendmsg: expected sent 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000097 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +100098 return -1;
99 }
100 return 0;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000101#else
Damien Miller54fd7cf2007-09-17 12:04:08 +1000102 error("%s: file descriptor passing not supported", __func__);
103 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000104#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000105}
106
107int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000108mm_receive_fd(int sock)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000109{
Tim Rice66480f12002-04-15 21:10:09 -0700110#if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000111 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700112#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +1100113 union {
Damien Millerc0c53c32008-03-07 18:35:26 +1100114 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +1100115 char buf[CMSG_SPACE(sizeof(int))];
116 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +0000117 struct cmsghdr *cmsg;
Kevin Steves1adb1202002-03-22 19:32:53 +0000118#endif
Darren Tucker69087ea2008-11-23 14:03:19 +1100119 struct iovec vec;
120 ssize_t n;
121 char ch;
122 int fd;
Darren Tuckere371a132010-01-12 19:43:12 +1100123 struct pollfd pfd;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000124
125 memset(&msg, 0, sizeof(msg));
126 vec.iov_base = &ch;
127 vec.iov_len = 1;
128 msg.msg_iov = &vec;
129 msg.msg_iovlen = 1;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700130#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +0000131 msg.msg_accrights = (caddr_t)&fd;
132 msg.msg_accrightslen = sizeof(fd);
133#else
Damien Millerf92e0632008-03-27 10:53:23 +1100134 msg.msg_control = &cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +1100135 msg.msg_controllen = sizeof(cmsgbuf.buf);
Kevin Steves1adb1202002-03-22 19:32:53 +0000136#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000137
Darren Tuckere371a132010-01-12 19:43:12 +1100138 pfd.fd = sock;
139 pfd.events = POLLIN;
140 while ((n = recvmsg(sock, &msg, 0)) == -1 &&
141 (errno == EAGAIN || errno == EINTR)) {
Darren Tucker23645642008-12-01 21:42:13 +1100142 debug3("%s: recvmsg: %s", __func__, strerror(errno));
Darren Tuckere371a132010-01-12 19:43:12 +1100143 (void)poll(&pfd, 1, -1);
144 }
Darren Tucker23645642008-12-01 21:42:13 +1100145 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +1000146 error("%s: recvmsg: %s", __func__, strerror(errno));
147 return -1;
148 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100149
Damien Miller54fd7cf2007-09-17 12:04:08 +1000150 if (n != 1) {
151 error("%s: recvmsg: expected received 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +0000152 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000153 return -1;
154 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000155
Tim Rice28bbb0c2002-05-27 17:37:32 -0700156#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Miller54fd7cf2007-09-17 12:04:08 +1000157 if (msg.msg_accrightslen != sizeof(fd)) {
158 error("%s: no fd", __func__);
159 return -1;
160 }
Kevin Steves1adb1202002-03-22 19:32:53 +0000161#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000162 cmsg = CMSG_FIRSTHDR(&msg);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000163 if (cmsg == NULL) {
164 error("%s: no message header", __func__);
165 return -1;
166 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100167
Darren Tucker3c016542003-05-02 20:48:21 +1000168#ifndef BROKEN_CMSG_TYPE
Damien Miller54fd7cf2007-09-17 12:04:08 +1000169 if (cmsg->cmsg_type != SCM_RIGHTS) {
170 error("%s: expected type %d got %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000171 SCM_RIGHTS, cmsg->cmsg_type);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000172 return -1;
173 }
Darren Tucker3c016542003-05-02 20:48:21 +1000174#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000175 fd = (*(int *)CMSG_DATA(cmsg));
Kevin Steves1adb1202002-03-22 19:32:53 +0000176#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000177 return fd;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000178#else
Damien Miller54fd7cf2007-09-17 12:04:08 +1000179 error("%s: file descriptor passing not supported", __func__);
180 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000181#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000182}