+++ /dev/null
-/*
- * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
- *
- * The contents of this file constitute Original Code as defined in and are
- * subject to the Apple Public Source License Version 1.2 (the 'License').
- * You may not use this file except in compliance with the License. Please obtain
- * a copy of the License at http://www.apple.com/publicsource and read it before
- * using this file.
- *
- * This Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
- * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
- * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
- * specific language governing rights and limitations under the License.
- */
-
-
-//
-// ip++ - C++ layer for IP socket and address management
-//
-// [Also see comments in header file.]
-//
-#include "fdmover.h"
-#include <iterator>
-#include <Security/debugging.h>
-
-
-namespace Security {
-namespace IPPlusPlus {
-
-
-void *FdMover::Element::operator new (size_t base, size_t more)
-{
- Element *element = (Element *)::malloc(CMSG_SPACE(more));
- element->cmsg_len = CMSG_LEN(more);
- return element;
-}
-
-void FdMover::Element::operator delete (void *data, size_t base)
-{
- ::free(data);
-}
-
-FdMover::Element::Element(int level, int type)
-{
- cmsg_level = level;
- cmsg_type = type;
-}
-
-
-FdMover::Message::Message(const void *data, size_t length)
- : iovec(data, length)
-{
- msg_name = NULL;
- msg_namelen = 0;
- msg_iov = &iovec;
- msg_iovlen = 1;
- msg_control = NULL;
- msg_controllen = 0;
- msg_flags = 0;
-}
-
-void FdMover::Message::set(Element *elem)
-{
- msg_control = (caddr_t)elem;
- msg_controllen = elem->cmsg_len;
-}
-
-
-size_t FdMover::send(const void *data, size_t length, const FdVector &fds)
-{
- auto_ptr<Element> elem(new (fds.size() * sizeof(int)) Element (SOL_SOCKET, SCM_RIGHTS));
- copy(fds.begin(), fds.end(), &elem.get()->payload<int>());
- Message msg(data, length);
- msg.set(elem.get());
- ssize_t rc = ::sendmsg(fd(), &msg, 0);
- checkError(rc);
- return rc;
-}
-
-
-size_t FdMover::receive(void *data, size_t length, FdVector &fds)
-{
- static const int maxFds = 20; // arbitrary limit
- Message msg(data, length);
- auto_ptr<Element> elem(new (maxFds * sizeof(int)) Element);
- msg.set(elem.get());
- ssize_t rc = ::recvmsg(fd(), &msg, 0);
- checkError(rc);
- unsigned count = elem.get()->payloadSize() / sizeof(int);
- FdVector result;
- copy(&elem.get()->payload<int>(), &elem.get()->payload<int>() + count, back_inserter(result));
- swap(fds, result);
- return rc;
-}
-
-
-} // end namespace IPPlusPlus
-} // end namespace Security