/* * 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@ */ // // process - track a single client process and its belongings // #ifndef _H_PROCESS #define _H_PROCESS #include "structure.h" #include #include #include #include "localkey.h" #include "codesigdb.h" #include "notifications.h" #include using MachPlusPlus::Port; using MachPlusPlus::TaskPort; class Session; class LocalDatabase; class AuthorizationToken; // // A Process object represents a UNIX process (and associated Mach Task) that has // had contact with us and may have some state associated with it. // class Process : public PerProcess, public CodeSignatures::Identity { public: Process(Port servicePort, TaskPort tPort, const ClientSetupInfo *info, const char *identity, const CommonCriteria::AuditToken &audit); virtual ~Process(); void reset(Port servicePort, TaskPort tPort, const ClientSetupInfo *info, const char *identity, const CommonCriteria::AuditToken &audit); uid_t uid() const { return mUid; } gid_t gid() const { return mGid; } pid_t pid() const { return mPid; } TaskPort taskPort() const { return mTaskPort; } bool byteFlipped() const { return mByteFlipped; } OSXCode *clientCode() const { return (mClientIdent == unknown) ? NULL : mClientCode; } void addAuthorization(AuthorizationToken *auth); void checkAuthorization(AuthorizationToken *auth); bool removeAuthorization(AuthorizationToken *auth); using PerProcess::kill; void kill(); void changeSession(Port servicePort); // very special indeed void requestNotifications(Port port, NotificationDomain domain, NotificationMask events); void stopNotifications(Port port); Session& session() const; LocalDatabase &localStore(); Key *makeTemporaryKey(const CssmKey &key, CSSM_KEYATTR_FLAGS moreAttributes, const AclEntryPrototype *owner); // aclSequence is taken to serialize ACL validations to pick up mutual changes Mutex aclSequence; IFDUMP(void dumpNode()); protected: std::string getPath() const; const CssmData getHash(CodeSigning::OSXSigner &signer) const; void setup(const ClientSetupInfo *info, const char *identity); private: // peer state: established during connection startup; fixed thereafter TaskPort mTaskPort; // task port bool mByteFlipped; // client's byte order is reverse of ours pid_t mPid; // process id uid_t mUid; // UNIX uid credential gid_t mGid; // primary UNIX gid credential RefPointer mClientCode; // code object for client (NULL if unknown) mutable enum { deferred, known, unknown } mClientIdent; // state of client identity mutable auto_ptr mCachedSignature; // cached signature (if already known) // authorization dictionary typedef multiset AuthorizationSet; AuthorizationSet mAuthorizations; // set of valid authorizations for process // canonical local (transient) key store RefPointer mLocalStore; }; // // Convenience comparison // inline bool operator == (const Process &p1, const Process &p2) { return &p1 == &p2; } #endif //_H_PROCESS