blob: 4b9a066bcf0f376f3479c7e34a976f251dd51218 [file] [log] [blame]
Darren Tucker23645642008-12-01 21:42:13 +11001/* $OpenBSD: monitor_fdpass.c,v 1.18 2008/11/30 11:59:26 dtucker 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>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100038#include <stdarg.h>
Darren Tucker39972492006-07-12 22:22:46 +100039
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000040#include "log.h"
41#include "monitor_fdpass.h"
42
Damien Miller54fd7cf2007-09-17 12:04:08 +100043int
Darren Tucker3f9fdc72004-06-22 12:56:01 +100044mm_send_fd(int sock, int fd)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000045{
Tim Rice66480f12002-04-15 21:10:09 -070046#if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000047 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -070048#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +110049 union {
50 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +110051 char buf[CMSG_SPACE(sizeof(int))];
52 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +000053 struct cmsghdr *cmsg;
54#endif
Darren Tucker69087ea2008-11-23 14:03:19 +110055 struct iovec vec;
56 char ch = '\0';
57 ssize_t n;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000058
59 memset(&msg, 0, sizeof(msg));
Tim Rice28bbb0c2002-05-27 17:37:32 -070060#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +000061 msg.msg_accrights = (caddr_t)&fd;
62 msg.msg_accrightslen = sizeof(fd);
63#else
Damien Millerf92e0632008-03-27 10:53:23 +110064 msg.msg_control = (caddr_t)&cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +110065 msg.msg_controllen = sizeof(cmsgbuf.buf);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000066 cmsg = CMSG_FIRSTHDR(&msg);
67 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
68 cmsg->cmsg_level = SOL_SOCKET;
69 cmsg->cmsg_type = SCM_RIGHTS;
70 *(int *)CMSG_DATA(cmsg) = fd;
Kevin Steves1adb1202002-03-22 19:32:53 +000071#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000072
73 vec.iov_base = &ch;
74 vec.iov_len = 1;
75 msg.msg_iov = &vec;
76 msg.msg_iovlen = 1;
77
Darren Tucker23645642008-12-01 21:42:13 +110078 while ((n = sendmsg(sock, &msg, 0)) == -1 && (errno == EAGAIN ||
79 errno == EINTR))
80 debug3("%s: sendmsg(%d): %s", __func__, fd, strerror(errno));
81 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +100082 error("%s: sendmsg(%d): %s", __func__, fd,
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +000083 strerror(errno));
Damien Miller54fd7cf2007-09-17 12:04:08 +100084 return -1;
85 }
86
87 if (n != 1) {
88 error("%s: sendmsg: expected sent 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +000089 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +100090 return -1;
91 }
92 return 0;
Kevin Stevesc3c82552002-04-07 16:39:12 +000093#else
Damien Miller54fd7cf2007-09-17 12:04:08 +100094 error("%s: file descriptor passing not supported", __func__);
95 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +000096#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000097}
98
99int
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000100mm_receive_fd(int sock)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000101{
Tim Rice66480f12002-04-15 21:10:09 -0700102#if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR))
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000103 struct msghdr msg;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700104#ifndef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Millerc0c53c32008-03-07 18:35:26 +1100105 union {
Damien Millerc0c53c32008-03-07 18:35:26 +1100106 struct cmsghdr hdr;
Damien Millerf92e0632008-03-27 10:53:23 +1100107 char buf[CMSG_SPACE(sizeof(int))];
108 } cmsgbuf;
Kevin Steves1adb1202002-03-22 19:32:53 +0000109 struct cmsghdr *cmsg;
Kevin Steves1adb1202002-03-22 19:32:53 +0000110#endif
Darren Tucker69087ea2008-11-23 14:03:19 +1100111 struct iovec vec;
112 ssize_t n;
113 char ch;
114 int fd;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000115
116 memset(&msg, 0, sizeof(msg));
117 vec.iov_base = &ch;
118 vec.iov_len = 1;
119 msg.msg_iov = &vec;
120 msg.msg_iovlen = 1;
Tim Rice28bbb0c2002-05-27 17:37:32 -0700121#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Kevin Steves1adb1202002-03-22 19:32:53 +0000122 msg.msg_accrights = (caddr_t)&fd;
123 msg.msg_accrightslen = sizeof(fd);
124#else
Damien Millerf92e0632008-03-27 10:53:23 +1100125 msg.msg_control = &cmsgbuf.buf;
Damien Millere241e852008-03-27 11:01:15 +1100126 msg.msg_controllen = sizeof(cmsgbuf.buf);
Kevin Steves1adb1202002-03-22 19:32:53 +0000127#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000128
Darren Tucker23645642008-12-01 21:42:13 +1100129 while ((n = recvmsg(sock, &msg, 0)) == -1 && (errno == EAGAIN ||
130 errno == EINTR))
131 debug3("%s: recvmsg: %s", __func__, strerror(errno));
132 if (n == -1) {
Damien Miller54fd7cf2007-09-17 12:04:08 +1000133 error("%s: recvmsg: %s", __func__, strerror(errno));
134 return -1;
135 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100136
Damien Miller54fd7cf2007-09-17 12:04:08 +1000137 if (n != 1) {
138 error("%s: recvmsg: expected received 1 got %ld",
Ben Lindstromd5bf46e2002-06-27 00:21:03 +0000139 __func__, (long)n);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000140 return -1;
141 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000142
Tim Rice28bbb0c2002-05-27 17:37:32 -0700143#ifdef HAVE_ACCRIGHTS_IN_MSGHDR
Damien Miller54fd7cf2007-09-17 12:04:08 +1000144 if (msg.msg_accrightslen != sizeof(fd)) {
145 error("%s: no fd", __func__);
146 return -1;
147 }
Kevin Steves1adb1202002-03-22 19:32:53 +0000148#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000149 cmsg = CMSG_FIRSTHDR(&msg);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000150 if (cmsg == NULL) {
151 error("%s: no message header", __func__);
152 return -1;
153 }
Darren Tucker69087ea2008-11-23 14:03:19 +1100154
Darren Tucker3c016542003-05-02 20:48:21 +1000155#ifndef BROKEN_CMSG_TYPE
Damien Miller54fd7cf2007-09-17 12:04:08 +1000156 if (cmsg->cmsg_type != SCM_RIGHTS) {
157 error("%s: expected type %d got %d", __func__,
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000158 SCM_RIGHTS, cmsg->cmsg_type);
Damien Miller54fd7cf2007-09-17 12:04:08 +1000159 return -1;
160 }
Darren Tucker3c016542003-05-02 20:48:21 +1000161#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000162 fd = (*(int *)CMSG_DATA(cmsg));
Kevin Steves1adb1202002-03-22 19:32:53 +0000163#endif
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000164 return fd;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000165#else
Damien Miller54fd7cf2007-09-17 12:04:08 +1000166 error("%s: file descriptor passing not supported", __func__);
167 return -1;
Kevin Stevesc3c82552002-04-07 16:39:12 +0000168#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000169}