Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 1 | /* $OpenBSD: monitor_fdpass.c,v 1.12 2006/08/03 03:34:42 deraadt Exp $ */ |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 2 | /* |
| 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 Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 28 | |
Damien Miller | e3b60b5 | 2006-07-10 21:08:03 +1000 | [diff] [blame] | 29 | #include <sys/types.h> |
| 30 | #include <sys/socket.h> |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 31 | #include <sys/uio.h> |
Darren Tucker | a43c005 | 2006-10-16 19:49:12 +1000 | [diff] [blame] | 32 | #ifdef HAVE_SYS_UN_H |
| 33 | #include <sys/un.h> |
| 34 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 35 | |
Darren Tucker | 3997249 | 2006-07-12 22:22:46 +1000 | [diff] [blame] | 36 | #include <errno.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 37 | #include <string.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 38 | #include <stdarg.h> |
Darren Tucker | 3997249 | 2006-07-12 22:22:46 +1000 | [diff] [blame] | 39 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 40 | #include "log.h" |
| 41 | #include "monitor_fdpass.h" |
| 42 | |
| 43 | void |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 44 | mm_send_fd(int sock, int fd) |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 45 | { |
Tim Rice | 66480f1 | 2002-04-15 21:10:09 -0700 | [diff] [blame] | 46 | #if defined(HAVE_SENDMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR)) |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 47 | struct msghdr msg; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 48 | struct iovec vec; |
Ben Lindstrom | 31ee7ae | 2002-03-26 02:36:29 +0000 | [diff] [blame] | 49 | char ch = '\0'; |
Ben Lindstrom | d5bf46e | 2002-06-27 00:21:03 +0000 | [diff] [blame] | 50 | ssize_t n; |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 51 | #ifndef HAVE_ACCRIGHTS_IN_MSGHDR |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 52 | char tmp[CMSG_SPACE(sizeof(int))]; |
| 53 | struct cmsghdr *cmsg; |
| 54 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 55 | |
| 56 | memset(&msg, 0, sizeof(msg)); |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 57 | #ifdef HAVE_ACCRIGHTS_IN_MSGHDR |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 58 | msg.msg_accrights = (caddr_t)&fd; |
| 59 | msg.msg_accrightslen = sizeof(fd); |
| 60 | #else |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 61 | msg.msg_control = (caddr_t)tmp; |
| 62 | msg.msg_controllen = CMSG_LEN(sizeof(int)); |
| 63 | cmsg = CMSG_FIRSTHDR(&msg); |
| 64 | cmsg->cmsg_len = CMSG_LEN(sizeof(int)); |
| 65 | cmsg->cmsg_level = SOL_SOCKET; |
| 66 | cmsg->cmsg_type = SCM_RIGHTS; |
| 67 | *(int *)CMSG_DATA(cmsg) = fd; |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 68 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 69 | |
| 70 | vec.iov_base = &ch; |
| 71 | vec.iov_len = 1; |
| 72 | msg.msg_iov = &vec; |
| 73 | msg.msg_iovlen = 1; |
| 74 | |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 75 | if ((n = sendmsg(sock, &msg, 0)) == -1) |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 76 | fatal("%s: sendmsg(%d): %s", __func__, fd, |
Ben Lindstrom | 31ee7ae | 2002-03-26 02:36:29 +0000 | [diff] [blame] | 77 | strerror(errno)); |
| 78 | if (n != 1) |
Ben Lindstrom | d5bf46e | 2002-06-27 00:21:03 +0000 | [diff] [blame] | 79 | fatal("%s: sendmsg: expected sent 1 got %ld", |
| 80 | __func__, (long)n); |
Kevin Steves | c3c8255 | 2002-04-07 16:39:12 +0000 | [diff] [blame] | 81 | #else |
| 82 | fatal("%s: UsePrivilegeSeparation=yes not supported", |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 83 | __func__); |
Kevin Steves | c3c8255 | 2002-04-07 16:39:12 +0000 | [diff] [blame] | 84 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | int |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 88 | mm_receive_fd(int sock) |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 89 | { |
Tim Rice | 66480f1 | 2002-04-15 21:10:09 -0700 | [diff] [blame] | 90 | #if defined(HAVE_RECVMSG) && (defined(HAVE_ACCRIGHTS_IN_MSGHDR) || defined(HAVE_CONTROL_IN_MSGHDR)) |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 91 | struct msghdr msg; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 92 | struct iovec vec; |
Ben Lindstrom | d5bf46e | 2002-06-27 00:21:03 +0000 | [diff] [blame] | 93 | ssize_t n; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 94 | char ch; |
Ben Lindstrom | d5bf46e | 2002-06-27 00:21:03 +0000 | [diff] [blame] | 95 | int fd; |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 96 | #ifndef HAVE_ACCRIGHTS_IN_MSGHDR |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 97 | char tmp[CMSG_SPACE(sizeof(int))]; |
| 98 | struct cmsghdr *cmsg; |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 99 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 100 | |
| 101 | memset(&msg, 0, sizeof(msg)); |
| 102 | vec.iov_base = &ch; |
| 103 | vec.iov_len = 1; |
| 104 | msg.msg_iov = &vec; |
| 105 | msg.msg_iovlen = 1; |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 106 | #ifdef HAVE_ACCRIGHTS_IN_MSGHDR |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 107 | msg.msg_accrights = (caddr_t)&fd; |
| 108 | msg.msg_accrightslen = sizeof(fd); |
| 109 | #else |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 110 | msg.msg_control = tmp; |
| 111 | msg.msg_controllen = sizeof(tmp); |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 112 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 113 | |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 114 | if ((n = recvmsg(sock, &msg, 0)) == -1) |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 115 | fatal("%s: recvmsg: %s", __func__, strerror(errno)); |
Ben Lindstrom | 31ee7ae | 2002-03-26 02:36:29 +0000 | [diff] [blame] | 116 | if (n != 1) |
Ben Lindstrom | d5bf46e | 2002-06-27 00:21:03 +0000 | [diff] [blame] | 117 | fatal("%s: recvmsg: expected received 1 got %ld", |
| 118 | __func__, (long)n); |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 119 | |
Tim Rice | 28bbb0c | 2002-05-27 17:37:32 -0700 | [diff] [blame] | 120 | #ifdef HAVE_ACCRIGHTS_IN_MSGHDR |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 121 | if (msg.msg_accrightslen != sizeof(fd)) |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 122 | fatal("%s: no fd", __func__); |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 123 | #else |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 124 | cmsg = CMSG_FIRSTHDR(&msg); |
Darren Tucker | 1ef0bc0 | 2004-08-13 21:29:02 +1000 | [diff] [blame] | 125 | if (cmsg == NULL) |
| 126 | fatal("%s: no message header", __func__); |
Darren Tucker | 3c01654 | 2003-05-02 20:48:21 +1000 | [diff] [blame] | 127 | #ifndef BROKEN_CMSG_TYPE |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 128 | if (cmsg->cmsg_type != SCM_RIGHTS) |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 129 | fatal("%s: expected type %d got %d", __func__, |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 130 | SCM_RIGHTS, cmsg->cmsg_type); |
Darren Tucker | 3c01654 | 2003-05-02 20:48:21 +1000 | [diff] [blame] | 131 | #endif |
Ben Lindstrom | 31ee7ae | 2002-03-26 02:36:29 +0000 | [diff] [blame] | 132 | fd = (*(int *)CMSG_DATA(cmsg)); |
Kevin Steves | 1adb120 | 2002-03-22 19:32:53 +0000 | [diff] [blame] | 133 | #endif |
Ben Lindstrom | 31ee7ae | 2002-03-26 02:36:29 +0000 | [diff] [blame] | 134 | return fd; |
Kevin Steves | c3c8255 | 2002-04-07 16:39:12 +0000 | [diff] [blame] | 135 | #else |
| 136 | fatal("%s: UsePrivilegeSeparation=yes not supported", |
Ben Lindstrom | 7d9c38f | 2002-06-06 21:40:51 +0000 | [diff] [blame] | 137 | __func__); |
Kevin Steves | c3c8255 | 2002-04-07 16:39:12 +0000 | [diff] [blame] | 138 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 139 | } |