/* * Copyright (c) 2000-2004 Apple Computer, Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The 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. * * @APPLE_LICENSE_HEADER_END@ */ // // sstransit - Securityd client side transition support. // #ifndef _H_SSTRANSIT #define _H_SSTRANSIT #include #include #include #include #include namespace Security { // stock leading argument profile used by all calls #define UCSP_ARGS mGlobal().serverPort, mGlobal().thread().replyPort, &rcode // IPC/IPCN wrap the actual Mach IPC call. IPC also activates the connection first #define IPCN(statement) \ { CSSM_RETURN rcode; check(statement); if (rcode != CSSM_OK) CssmError::throwMe(rcode); } #define IPC(statement) { activate(); IPCN(statement); } #define IPCKEY(statement, key, tag) \ { \ activate(); \ CSSM_RETURN rcode; \ for (bool retried = false;; retried = true) \ { \ check(statement); \ if (retried || rcode != CSSMERR_CSP_APPLE_ADD_APPLICATION_ACL_SUBJECT) \ break; \ addApplicationAclSubject(key, tag); \ } \ if (rcode != CSSM_OK) \ CssmError::throwMe(rcode); \ } // pass mandatory or optional CssmData arguments into an IPC call #define DATA(arg) arg.data(), arg.length() #define OPTIONALDATA(arg) (arg ? arg->data() : NULL), (arg ? arg->length() : 0) // pass structured arguments in/out of IPC calls. See "data walkers" for details #define COPY(copy) copy, copy.length(), copy #define COPY_OUT(copy) ©, ©##Length, ©##Base #define COPY_OUT_DECL(type,name) type *name, *name##Base; mach_msg_type_number_t name##Length // // DataOutput manages an output CssmData argument. // class DataOutput { public: DataOutput(CssmData &arg, Allocator &alloc) : allocator(alloc), mTarget(&arg) { mData = NULL; mLength = 0; } DataOutput(CssmData *arg, Allocator &alloc) : allocator(alloc), mTarget(arg) { mData = NULL; mLength = 0; } ~DataOutput(); void **data() { return &mData; } mach_msg_type_number_t *length() { return &mLength; } Allocator &allocator; private: CssmData *mTarget; void *mData; mach_msg_type_number_t mLength; }; // // Bundle up an AccessCredentials meant for a database, parsing it for // "special" samples that need extra evidence to be passed along. // class DatabaseAccessCredentials : public Copier { public: DatabaseAccessCredentials(const AccessCredentials *creds, Allocator &alloc); private: void mapKeySample(CSSM_CSP_HANDLE &cspHandle, CssmKey &key); }; // // Bundle up a Context for IPC transmission // class SendContext { public: SendContext(const Context &ctx); ~SendContext() { Allocator::standard().free(attributes); } const Context &context; CSSM_CONTEXT_ATTRIBUTE *attributes; size_t attributeSize; }; #define CONTEXT(ctx) ctx.context, ctx.attributes, ctx.attributes, ctx.attributeSize // // Handle the standard CSSM data retrieval pattern (attribute vector+data) // class DataRetrieval : public Copier { public: DataRetrieval(CssmDbRecordAttributeData *&attrs, Allocator &alloc); ~DataRetrieval(); operator CssmDbRecordAttributeData **() { return &mAddr; } operator mach_msg_type_number_t *() { return &mLength; } CssmDbRecordAttributeData **base() { return &mBase; } private: Allocator &mAllocator; CssmDbRecordAttributeData *&mAttributes; CssmDbRecordAttributeData *mAddr, *mBase; mach_msg_type_number_t mLength; }; } // namespace Security #endif //_H_SSTRANSIT