blob: 56d3afdf35bb2ca5b64d7d8a6a0af1edd00b2f7a [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 Tuckere371a132010-01-12 19:43:12 +110037#include <poll.h>
Damien Millere3476ed2006-07-24 14:13:33 +100038#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100039#include <stdarg.h>
Darren Tucker39972492006-07-12 22:22:46 +100040
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000041#include "log.h"
42#include "monitor_fdpass.h"
43
Damien Miller54fd7cf2007-09-17 12:04:08 +100044int
Darren Tucker3f9fdc72004-06-22 12:56:01 +100045mm_send_fd(int sock, int fd)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000046{
Tim Rice66480f12002-04-15 21:10:09 -070047#if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000048 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -070049#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +110050 union {
51 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +110052 char buf[CMSG_SPACE(sizeof(int))];
53 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +000054 struct cmsghdr *cmsg;
55#endif
Darren Tucker69087ea2008-11-23 14:03:19 +110056 struct iovec vec;
57 char ch = '\0';
58 ssize_t n;
Darren Tuckere371a132010-01-12 19:43:12 +110059 struct pollfd pfd;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000060
61 memset(&msg, 0, sizeof(msg));
Tim Rice28bbb0c2002-05-27 17:37:32 -070062#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000063 msg.msg_accrights = (caddr_t)&fd;
64 msg.msg_accrightslen = sizeof(fd);
65#else
Damien Millerf92e0632008-03-27 10:53:23 +110066 msg.msg_control = (caddr_t)&cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +110067 msg.msg_controllen = sizeof(cmsgbuf.buf);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000068 cmsg = CMSG_FIRSTHDR(&msg);
69 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
70 cmsg->cmsg_level = SOL_SOCKET;
71 cmsg->cmsg_type = SCM_RIGHTS;
72 *(int *)CMSG_DATA(cmsg) = fd;
Kevin Steves1adb1202002-03-22 19:32:53 +000073#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000074
75 vec.iov_base = &ch;
76 vec.iov_len = 1;
77 msg.msg_iov = &vec;
78 msg.msg_iovlen = 1;
79
Darren Tuckere371a132010-01-12 19:43:12 +110080 pfd.fd = sock;
81 pfd.events = POLLOUT;
82 while ((n = sendmsg(sock, &msg, 0)) == -1 &&
83 (errno == EAGAIN || errno == EINTR)) {
Darren Tucker23645642008-12-01 21:42:13 +110084 debug3("%s: sendmsg(%d): %s", __func__, fd, strerror(errno));
Darren Tuckere371a132010-01-12 19:43:12 +110085 (void)poll(&pfd, 1, -1);
86 }
Darren Tucker23645642008-12-01 21:42:13 +110087 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +100088 error("%s: sendmsg(%d): %s", __func__, fd,
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000089 strerror(errno));
Damien Miller54fd7cf2007-09-17 12:04:08 +100090 return -1;
91 }
92
93 if (n != 1) {
94 error("%s: sendmsg: expected sent 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000095 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +100096 return -1;
97 }
98 return 0;
Kevin Stevesc3c82552002-04-07 16:39:12 +000099#else
Damien Miller54fd7cf2007-09-17 12:04:08 +1000100 error("%s: file descriptor passing not supported", __func__);
101 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000102#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000103}
104
105int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000106mm_receive_fd(int sock)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000107{
Tim Rice66480f12002-04-15 21:10:09 -0700108#if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000109 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700110#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +1100111 union {
Damien Millerc0c53c32008-03-07 18:35:26 +1100112 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +1100113 char buf[CMSG_SPACE(sizeof(int))];
114 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +0000115 struct cmsghdr *cmsg;
Kevin Steves1adb1202002-03-22 19:32:53 +0000116#endif
Darren Tucker69087ea2008-11-23 14:03:19 +1100117 struct iovec vec;
118 ssize_t n;
119 char ch;
120 int fd;
Darren Tuckere371a132010-01-12 19:43:12 +1100121 struct pollfd pfd;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000122
123 memset(&msg, 0, sizeof(msg));
124 vec.iov_base = &ch;
125 vec.iov_len = 1;
126 msg.msg_iov = &vec;
127 msg.msg_iovlen = 1;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700128#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +0000129 msg.msg_accrights = (caddr_t)&fd;
130 msg.msg_accrightslen = sizeof(fd);
131#else
Damien Millerf92e0632008-03-27 10:53:23 +1100132 msg.msg_control = &cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +1100133 msg.msg_controllen = sizeof(cmsgbuf.buf);
Kevin Steves1adb1202002-03-22 19:32:53 +0000134#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000135
Darren Tuckere371a132010-01-12 19:43:12 +1100136 pfd.fd = sock;
137 pfd.events = POLLIN;
138 while ((n = recvmsg(sock, &msg, 0)) == -1 &&
139 (errno == EAGAIN || errno == EINTR)) {
Darren Tucker23645642008-12-01 21:42:13 +1100140 debug3("%s: recvmsg: %s", __func__, strerror(errno));
Darren Tuckere371a132010-01-12 19:43:12 +1100141 (void)poll(&pfd, 1, -1);
142 }
Darren Tucker23645642008-12-01 21:42:13 +1100143 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +1000144 error("%s: recvmsg: %s", __func__, strerror(errno));
145 return -1;
146 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100147
Damien Miller54fd7cf2007-09-17 12:04:08 +1000148 if (n != 1) {
149 error("%s: recvmsg: expected received 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +0000150 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000151 return -1;
152 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000153
Tim Rice28bbb0c2002-05-27 17:37:32 -0700154#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Miller54fd7cf2007-09-17 12:04:08 +1000155 if (msg.msg_accrightslen != sizeof(fd)) {
156 error("%s: no fd", __func__);
157 return -1;
158 }
Kevin Steves1adb1202002-03-22 19:32:53 +0000159#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000160 cmsg = CMSG_FIRSTHDR(&msg);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000161 if (cmsg == NULL) {
162 error("%s: no message header", __func__);
163 return -1;
164 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100165
Darren Tucker3c016542003-05-02 20:48:21 +1000166#ifndef BROKEN_CMSG_TYPE
Damien Miller54fd7cf2007-09-17 12:04:08 +1000167 if (cmsg->cmsg_type != SCM_RIGHTS) {
168 error("%s: expected type %d got %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000169 SCM_RIGHTS, cmsg->cmsg_type);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000170 return -1;
171 }
Darren Tucker3c016542003-05-02 20:48:21 +1000172#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000173 fd = (*(int *)CMSG_DATA(cmsg));
Kevin Steves1adb1202002-03-22 19:32:53 +0000174#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000175 return fd;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000176#else
Damien Miller54fd7cf2007-09-17 12:04:08 +1000177 error("%s: file descriptor passing not supported", __func__);
178 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000179#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000180}