/* * 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. */ // // machrunloopserver - C++ shell for writing Mach 3 servers called by CFRunLoop // #include "machrunloopserver.h" #include #include #include namespace Security { namespace MachPlusPlus { // // Generic Mach server // MachRunLoopServer::MachRunLoopServer(const char *name) : MachServer(name) { } MachRunLoopServer::MachRunLoopServer(const char *name, const Bootstrap &boot) : MachServer(name, boot) { } void MachRunLoopServer::run(size_t bufferSize, mach_msg_options_t options) { // allocate reply buffer (well, try) replyBuffer = CssmAllocator::standard().malloc(bufferSize); // Now do the CFRunLoop tango... runLoop = CFRunLoopGetCurrent(); CFRef cfPort = CFMachPortCreateWithPort(NULL, mServerPort, cfCallback, NULL, NULL); runLoopSource = CFMachPortCreateRunLoopSource(NULL, cfPort, 10); //@@@ no idea what order is good if (!runLoop || !runLoopSource || !cfPort) CssmError::throwMe(CSSM_ERRCODE_INTERNAL_ERROR); //@@@ $#!!& CF non-diagnostics! CFRunLoopAddSource(runLoop, runLoopSource, kCFRunLoopDefaultMode); // we are it! perThread().server = this; } MachRunLoopServer::~MachRunLoopServer() { // remove our runloop source CFRunLoopRemoveSource(runLoop, runLoopSource, kCFRunLoopDefaultMode); CFRelease(runLoopSource); // delete the reply buffer CssmAllocator::standard().free(replyBuffer); // no longer tagged perThread().server = NULL; // our MachServer parent class will clean up the ports and deregister from our bootstrap } // // Block/unblock new request reception to serialize the request queue // void MachRunLoopServer::blockNewRequests(bool block) { if (block) { CFRunLoopRemoveSource(runLoop, runLoopSource, kCFRunLoopDefaultMode); debug("machsrv", "disabled request reception"); } else { CFRunLoopAddSource(runLoop, runLoopSource, kCFRunLoopDefaultMode); debug("machsrv", "enabled request reception"); } } // // Add secondary ports to receive on // void MachRunLoopServer::alsoListenOn(Port port) { CFRef cfPort = CFMachPortCreateWithPort(NULL, port, cfCallback, NULL, NULL); CFRef source = CFMachPortCreateRunLoopSource(NULL, cfPort, 10); //@@@ no idea what order is good CFRunLoopAddSource(runLoop, source, kCFRunLoopDefaultMode); debug("machsrv", "also receiving from port %d", port.port()); } void MachRunLoopServer::stopListenOn(Port port) { CFRef cfPort = CFMachPortCreateWithPort(NULL, port, cfCallback, NULL, NULL); CFRef source = CFMachPortCreateRunLoopSource(NULL, cfPort, 10); //@@@ no idea what order is good CFRunLoopRemoveSource(runLoop, source, kCFRunLoopDefaultMode); debug("machsrv", "no longer receiving from port %d", port.port()); } // // Handle dead-port notifications. // Since we don't actually run our own runloop here, we can't well use standard // notifications to our own server port. So we use a CFMachPort facility instead. // void MachRunLoopServer::notifyIfDead(Port port) const { //@@@ not clear how to deal with CFRetainCount of cfPort here // will CF clean up the cfPort when it dies? Or do we have to keep a set? CFMachPortRef cfPort = CFMachPortCreateWithPort(NULL, port, NULL, NULL, NULL); CFMachPortSetInvalidationCallBack(cfPort, cfInvalidateCallback); } void MachRunLoopServer::cfInvalidateCallback(CFMachPortRef cfPort, void *) { active().notifyDeadName(CFMachPortGetPort(cfPort)); } // // The callback triggered from CFRunLoop // void MachRunLoopServer::cfCallback(CFMachPortRef port, void *msg, CFIndex, void *) { active().oneRequest(reinterpret_cast(msg)); } void MachRunLoopServer::oneRequest(mach_msg_header_t *request) { if (!handle(request, replyBuffer)) { // MIG dispatch did not recognize the request. Ignore/Retry/Fail? :-) //@@@ Should send an error reply back here, I suppose. Later... debug("machrls", "MachRunLoopServer dispatch failed"); return; } // MIG dispatch handled the call. Send reply back to caller. // This boilerplate stolen from mach_msg_server, since MIG can't seem to // generate send-only code for replies (without explicit simpleroutines). if (kern_return_t err = mach_msg_overwrite_trap(replyBuffer, (MACH_MSGH_BITS_REMOTE(replyBuffer->msgh_bits) == MACH_MSG_TYPE_MOVE_SEND_ONCE) ? MACH_SEND_MSG : MACH_SEND_MSG|MACH_SEND_TIMEOUT, replyBuffer->msgh_size, 0, MACH_PORT_NULL, 0, MACH_PORT_NULL, (mach_msg_header_t *) 0, 0)) { //@@@ should at least clean up resources here, I suppose. debug("machsrv", "RunloopServer cannot post reply: %s", mach_error_string(err)); active().releaseDeferredAllocations(); return; } active().releaseDeferredAllocations(); return; } } // end namespace MachPlusPlus } // end namespace Security