2 * Copyright (c) 2002-2004,2011-2014 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #include <Security/SecBase.h>
25 #include <Security/SecAccess.h>
26 #include <Security/SecAccessPriv.h>
27 #include <Security/SecTrustedApplication.h>
28 #include <Security/SecTrustedApplicationPriv.h>
29 #include <security_keychain/Access.h>
30 #include <security_utilities/casts.h>
31 #include <utilities/SecCFRelease.h>
32 #include "SecBridge.h"
33 #include <sys/param.h>
35 #include <utilities/SecCFWrappers.h>
38 /* No restrictions. Permission to perform all operations on
39 the resource or available to an ACL owner. */
42 const CFStringRef kSecACLAuthorizationAny
= CFSTR("ACLAuthorizationAny");
44 const CFStringRef kSecACLAuthorizationLogin
= CFSTR("ACLAuthorizationLogin");
45 const CFStringRef kSecACLAuthorizationGenKey
= CFSTR("ACLAuthorizationGenKey");
46 const CFStringRef kSecACLAuthorizationDelete
= CFSTR("ACLAuthorizationDelete");
47 const CFStringRef kSecACLAuthorizationExportWrapped
= CFSTR("ACLAuthorizationExportWrapped");
48 const CFStringRef kSecACLAuthorizationExportClear
= CFSTR("ACLAuthorizationExportClear");
49 const CFStringRef kSecACLAuthorizationImportWrapped
= CFSTR("ACLAuthorizationImportWrapped");
50 const CFStringRef kSecACLAuthorizationImportClear
= CFSTR("ACLAuthorizationImportClear");
51 const CFStringRef kSecACLAuthorizationSign
= CFSTR("ACLAuthorizationSign");
52 const CFStringRef kSecACLAuthorizationEncrypt
= CFSTR("ACLAuthorizationEncrypt");
53 const CFStringRef kSecACLAuthorizationDecrypt
= CFSTR("ACLAuthorizationDecrypt");
54 const CFStringRef kSecACLAuthorizationMAC
= CFSTR("ACLAuthorizationMAC");
55 const CFStringRef kSecACLAuthorizationDerive
= CFSTR("ACLAuthorizationDerive");
57 /* Defined authorization tag values for Keychain */
61 const CFStringRef kSecACLAuthorizationKeychainCreate
= CFSTR("ACLAuthorizationKeychainCreate");
62 const CFStringRef kSecACLAuthorizationKeychainDelete
= CFSTR("ACLAuthorizationKeychainDelete");
63 const CFStringRef kSecACLAuthorizationKeychainItemRead
= CFSTR("ACLAuthorizationKeychainItemRead");
64 const CFStringRef kSecACLAuthorizationKeychainItemInsert
= CFSTR("ACLAuthorizationKeychainItemInsert");
65 const CFStringRef kSecACLAuthorizationKeychainItemModify
= CFSTR("ACLAuthorizationKeychainItemModify");
66 const CFStringRef kSecACLAuthorizationKeychainItemDelete
= CFSTR("ACLAuthorizationKeychainItemDelete");
68 const CFStringRef kSecACLAuthorizationChangeACL
= CFSTR("ACLAuthorizationChangeACL");
69 const CFStringRef kSecACLAuthorizationChangeOwner
= CFSTR("ACLAuthorizationChangeOwner");
70 const CFStringRef kSecACLAuthorizationPartitionID
= CFSTR("ACLAuthorizationPartitionID");
71 const CFStringRef kSecACLAuthorizationIntegrity
= CFSTR("ACLAuthorizationIntegrity");
74 static CFArrayRef
copyTrustedAppListFromBundle(CFStringRef bundlePath
, CFStringRef trustedAppListFileName
);
76 static CFStringRef gKeys
[] =
78 kSecACLAuthorizationAny
,
79 kSecACLAuthorizationLogin
,
80 kSecACLAuthorizationGenKey
,
81 kSecACLAuthorizationDelete
,
82 kSecACLAuthorizationExportWrapped
,
83 kSecACLAuthorizationExportClear
,
84 kSecACLAuthorizationImportWrapped
,
85 kSecACLAuthorizationImportClear
,
86 kSecACLAuthorizationSign
,
87 kSecACLAuthorizationEncrypt
,
88 kSecACLAuthorizationDecrypt
,
89 kSecACLAuthorizationMAC
,
90 kSecACLAuthorizationDerive
,
92 /* Defined authorization tag values for Keychain */
93 kSecACLAuthorizationKeychainCreate
,
94 kSecACLAuthorizationKeychainDelete
,
95 kSecACLAuthorizationKeychainItemRead
,
96 kSecACLAuthorizationKeychainItemInsert
,
97 kSecACLAuthorizationKeychainItemModify
,
98 kSecACLAuthorizationKeychainItemDelete
,
100 kSecACLAuthorizationChangeACL
,
101 kSecACLAuthorizationChangeOwner
,
102 kSecACLAuthorizationPartitionID
,
103 kSecACLAuthorizationIntegrity
106 static sint32 gValues
[] =
108 CSSM_ACL_AUTHORIZATION_ANY
,
109 CSSM_ACL_AUTHORIZATION_LOGIN
,
110 CSSM_ACL_AUTHORIZATION_GENKEY
,
111 CSSM_ACL_AUTHORIZATION_DELETE
,
112 CSSM_ACL_AUTHORIZATION_EXPORT_WRAPPED
,
113 CSSM_ACL_AUTHORIZATION_EXPORT_CLEAR
,
114 CSSM_ACL_AUTHORIZATION_IMPORT_WRAPPED
,
115 CSSM_ACL_AUTHORIZATION_IMPORT_CLEAR
,
116 CSSM_ACL_AUTHORIZATION_SIGN
,
117 CSSM_ACL_AUTHORIZATION_ENCRYPT
,
118 CSSM_ACL_AUTHORIZATION_DECRYPT
,
119 CSSM_ACL_AUTHORIZATION_MAC
,
120 CSSM_ACL_AUTHORIZATION_DERIVE
,
121 CSSM_ACL_AUTHORIZATION_DBS_CREATE
,
122 CSSM_ACL_AUTHORIZATION_DBS_DELETE
,
123 CSSM_ACL_AUTHORIZATION_DB_READ
,
124 CSSM_ACL_AUTHORIZATION_DB_INSERT
,
125 CSSM_ACL_AUTHORIZATION_DB_MODIFY
,
126 CSSM_ACL_AUTHORIZATION_DB_DELETE
,
127 CSSM_ACL_AUTHORIZATION_CHANGE_ACL
,
128 CSSM_ACL_AUTHORIZATION_CHANGE_OWNER
,
129 CSSM_ACL_AUTHORIZATION_PARTITION_ID
,
130 CSSM_ACL_AUTHORIZATION_INTEGRITY
134 CFDictionaryRef
CreateStringToNumDictionary()
136 int numItems
= (sizeof(gValues
) / sizeof(sint32
));
137 CFMutableDictionaryRef tempDict
= CFDictionaryCreateMutable(kCFAllocatorDefault
, numItems
, &kCFCopyStringDictionaryKeyCallBacks
, &kCFTypeDictionaryValueCallBacks
);
139 for (int iCnt
= 0; iCnt
< numItems
; iCnt
++)
141 sint32 aNumber
= gValues
[iCnt
];
142 CFNumberRef aNum
= CFNumberCreate(kCFAllocatorDefault
, kCFNumberSInt32Type
, &aNumber
);
144 CFStringRef aString
= gKeys
[iCnt
];
145 CFDictionaryAddValue(tempDict
, aString
, aNum
);
149 CFDictionaryRef result
= CFDictionaryCreateCopy(kCFAllocatorDefault
, tempDict
);
156 CFDictionaryRef
CreateNumToStringDictionary()
158 int numItems
= (sizeof(gValues
) / sizeof(sint32
));
160 CFMutableDictionaryRef tempDict
= CFDictionaryCreateMutable(kCFAllocatorDefault
, numItems
, &kCFTypeDictionaryKeyCallBacks
, &kCFTypeDictionaryValueCallBacks
);
162 for (int iCnt
= 0; iCnt
< numItems
; iCnt
++)
164 sint32 aNumber
= gValues
[iCnt
];
165 CFNumberRef aNum
= CFNumberCreate(kCFAllocatorDefault
, kCFNumberSInt32Type
, &aNumber
);
167 CFStringRef aString
= gKeys
[iCnt
];
168 CFDictionaryAddValue(tempDict
, aNum
, aString
);
173 CFDictionaryRef result
= CFDictionaryCreateCopy(kCFAllocatorDefault
, tempDict
);
179 /* TODO: This should be in some header */
180 sint32
GetACLAuthorizationTagFromString(CFStringRef aclStr
);
181 sint32
GetACLAuthorizationTagFromString(CFStringRef aclStr
)
186 CFShow(CFSTR("GetACLAuthorizationTagFromString aclStr is NULL"));
191 static CFDictionaryRef gACLMapping
= NULL
;
193 if (NULL
== gACLMapping
)
195 gACLMapping
= CreateStringToNumDictionary();
199 CFNumberRef valueResult
= (CFNumberRef
)CFDictionaryGetValue(gACLMapping
, aclStr
);
200 if (NULL
!= valueResult
)
202 if (!CFNumberGetValue(valueResult
, kCFNumberSInt32Type
, &result
))
217 /* TODO: This should be in some header */
218 CFStringRef
GetAuthStringFromACLAuthorizationTag(sint32 tag
);
219 CFStringRef
GetAuthStringFromACLAuthorizationTag(sint32 tag
)
221 static CFDictionaryRef gTagMapping
= NULL
;
222 CFNumberRef aNum
= CFNumberCreate(kCFAllocatorDefault
, kCFNumberSInt32Type
, &tag
);
224 if (NULL
== gTagMapping
)
226 gTagMapping
= CreateNumToStringDictionary();
229 CFStringRef result
= (CFStringRef
)kSecACLAuthorizationAny
;
231 if (NULL
!= gTagMapping
&& CFDictionaryContainsKey(gTagMapping
, aNum
))
233 result
= (CFStringRef
)CFDictionaryGetValue(gTagMapping
, aNum
);
242 CFTypeID
SecAccessGetTypeID(void)
245 return gTypes().Access
.typeID
;
246 END_SECAPI1(_kCFRuntimeNotATypeID
)
254 * Create a new SecAccessRef that is set to the default configuration
255 * of a (newly created) security object.
257 OSStatus
SecAccessCreate(CFStringRef descriptor
, CFArrayRef trustedList
, SecAccessRef
*accessRef
)
260 Required(descriptor
);
261 SecPointer
<Access
> access
;
263 CFIndex length
= CFArrayGetCount(trustedList
);
264 ACL::ApplicationList trusted
;
265 for (CFIndex n
= 0; n
< length
; n
++)
266 trusted
.push_back(TrustedApplication::required(
267 SecTrustedApplicationRef(CFArrayGetValueAtIndex(trustedList
, n
))));
268 access
= new Access(cfString(descriptor
), trusted
);
270 access
= new Access(cfString(descriptor
));
272 Required(accessRef
) = access
->handle();
279 OSStatus
SecAccessCreateFromOwnerAndACL(const CSSM_ACL_OWNER_PROTOTYPE
*owner
,
280 uint32 aclCount
, const CSSM_ACL_ENTRY_INFO
*acls
,
281 SecAccessRef
*accessRef
)
284 Required(accessRef
); // preflight
285 SecPointer
<Access
> access
= new Access(Required(owner
), aclCount
, &Required(acls
));
286 *accessRef
= access
->handle();
290 SecAccessRef
SecAccessCreateWithOwnerAndACL(uid_t userId
, gid_t groupId
, SecAccessOwnerType ownerType
, CFArrayRef acls
, CFErrorRef
*error
)
292 SecAccessRef result
= NULL
;
294 CSSM_ACL_PROCESS_SUBJECT_SELECTOR selector
=
296 CSSM_ACL_PROCESS_SELECTOR_CURRENT_VERSION
, // selector version
297 int_cast
<UInt32
, uint16
>(ownerType
),
302 CSSM_LIST_ELEMENT subject2
= { NULL
, 0 };
303 subject2
.Element
.Word
.Data
= (UInt8
*)&selector
;
304 subject2
.Element
.Word
.Length
= sizeof(selector
);
305 CSSM_LIST_ELEMENT subject1
=
307 &subject2
, CSSM_ACL_SUBJECT_TYPE_PROCESS
, CSSM_LIST_ELEMENT_WORDID
314 numAcls
= CFArrayGetCount(acls
);
318 CFStringRef debugStr
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
,
319 CFSTR("SecAccessCreateWithOwnerAndACL: processing %d acls"), (int)numAcls
);
324 std::vector
<CSSM_ACL_AUTHORIZATION_TAG
> rights(numAcls
);
326 for (CFIndex iCnt
= 0; iCnt
< numAcls
; iCnt
++)
328 CFStringRef aclStr
= (CFStringRef
)CFArrayGetValueAtIndex(acls
, iCnt
);
331 debugStr
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
,
332 CFSTR("SecAccessCreateWithOwnerAndACL: acls[%d] = %@"), (int)iCnt
, aclStr
);
338 CSSM_ACL_AUTHORIZATION_TAG aTag
= GetACLAuthorizationTagFromString(aclStr
);
341 debugStr
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
,
342 CFSTR("SecAccessCreateWithOwnerAndACL: rights[%d] = %d"), (int)iCnt
, aTag
);
352 for (CFIndex iCnt
= 0; iCnt
< numAcls
; iCnt
++)
355 debugStr
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
,
356 CFSTR("SecAccessCreateWithOwnerAndACL: rights[%d] = %d"), (int)iCnt
, rights
[iCnt
]);
365 CSSM_ACL_OWNER_PROTOTYPE owner
=
368 { CSSM_LIST_TYPE_UNKNOWN
, &subject1
, &subject2
},
374 // ACL entries (any number, just one here)
375 CSSM_ACL_ENTRY_INFO acl_rights
[] =
381 { CSSM_LIST_TYPE_UNKNOWN
, &subject1
, &subject2
},
383 // rights for this entry
384 { (uint32
)numAcls
, rights
.data() },
390 OSStatus err
= SecAccessCreateFromOwnerAndACL(&owner
,
391 sizeof(acl_rights
) / sizeof(acl_rights
[0]), acl_rights
, &result
);
393 if (errSecSuccess
!= err
)
398 *error
= CFErrorCreate(kCFAllocatorDefault
, CFSTR("FIX ME"), err
, NULL
);
407 OSStatus
SecAccessGetOwnerAndACL(SecAccessRef accessRef
,
408 CSSM_ACL_OWNER_PROTOTYPE_PTR
*owner
,
409 uint32
*aclCount
, CSSM_ACL_ENTRY_INFO_PTR
*acls
)
412 Access::required(accessRef
)->copyOwnerAndAcl(
413 Required(owner
), Required(aclCount
), Required(acls
));
417 OSStatus
SecAccessCopyOwnerAndACL(SecAccessRef accessRef
, uid_t
* userId
, gid_t
* groupId
, SecAccessOwnerType
* ownerType
, CFArrayRef
* aclList
)
419 CSSM_ACL_OWNER_PROTOTYPE_PTR owner
= NULL
;
420 CSSM_ACL_ENTRY_INFO_PTR acls
= NULL
;
422 OSStatus result
= SecAccessGetOwnerAndACL(accessRef
, &owner
, &aclCount
, &acls
);
423 if (errSecSuccess
!= result
)
430 CSSM_LIST_ELEMENT_PTR listHead
= owner
->TypedSubject
.Head
;
431 if (listHead
!= NULL
&& listHead
->ElementType
== CSSM_LIST_ELEMENT_WORDID
)
433 CSSM_LIST_ELEMENT_PTR nextElement
= listHead
->NextElement
;
434 if (listHead
->WordID
== CSSM_ACL_SUBJECT_TYPE_PROCESS
&& listHead
->ElementType
== CSSM_LIST_ELEMENT_WORDID
)
436 // nextElement contains the required data
437 CSSM_ACL_PROCESS_SUBJECT_SELECTOR
* selectorPtr
= (CSSM_ACL_PROCESS_SUBJECT_SELECTOR
*)nextElement
->Element
.Word
.Data
;
438 if (NULL
!= selectorPtr
)
442 *userId
= (uid_t
)selectorPtr
->uid
;
447 *groupId
= (gid_t
)selectorPtr
->gid
;
450 if (NULL
!= ownerType
)
452 *ownerType
= (SecAccessOwnerType
)selectorPtr
->mask
;
464 CFShow(CFSTR("SecAccessCopyOwnerAndACL: processing the ACL list"));
467 CFMutableArrayRef stringArray
= CFArrayCreateMutable(kCFAllocatorDefault
, 0, &kCFTypeArrayCallBacks
);
468 CSSM_ACL_OWNER_PROTOTYPE_PTR protoPtr
= NULL
;
470 CSSM_ACL_ENTRY_INFO_PTR aclEntry
= NULL
;
472 result
= SecAccessGetOwnerAndACL(accessRef
, &protoPtr
, &numAcls
, &aclEntry
);
473 if (errSecSuccess
== result
)
476 CFStringRef tempStr
= CFStringCreateWithFormat(kCFAllocatorDefault
, NULL
, CFSTR("SecAccessCopyOwnerAndACL: numAcls = %d"), numAcls
);
481 for (uint32 iCnt
= 0; iCnt
< numAcls
; iCnt
++)
483 CSSM_ACL_ENTRY_PROTOTYPE prototype
= aclEntry
[iCnt
].EntryPublicInfo
;
484 CSSM_AUTHORIZATIONGROUP authGroup
= prototype
.Authorization
;
485 int numAuthTags
= (int)authGroup
.NumberOfAuthTags
;
487 for (int jCnt
= 0; jCnt
< numAuthTags
; jCnt
++)
490 sint32 aTag
= authGroup
.AuthTags
[jCnt
];
491 CFStringRef aString
= GetAuthStringFromACLAuthorizationTag(aTag
);
493 CFArrayAppendValue(stringArray
, aString
);
498 if (NULL
!= stringArray
)
500 if (0 < CFArrayGetCount(stringArray
))
502 *aclList
= CFArrayCreateCopy(kCFAllocatorDefault
, stringArray
);
504 CFRelease(stringArray
);
513 OSStatus
SecAccessCopyACLList(SecAccessRef accessRef
,
517 Required(aclList
) = Access::required(accessRef
)->copySecACLs();
524 OSStatus
SecAccessCopySelectedACLList(SecAccessRef accessRef
,
525 CSSM_ACL_AUTHORIZATION_TAG action
,
529 Required(aclList
) = Access::required(accessRef
)->copySecACLs(action
);
533 CFArrayRef
SecAccessCopyMatchingACLList(SecAccessRef accessRef
, CFTypeRef authorizationTag
)
535 CFArrayRef result
= NULL
;
536 CSSM_ACL_AUTHORIZATION_TAG tag
= GetACLAuthorizationTagFromString((CFStringRef
)authorizationTag
);
537 OSStatus err
= SecAccessCopySelectedACLList(accessRef
, tag
, &result
);
538 if (errSecSuccess
!= err
)
545 CFArrayRef
copyTrustedAppListFromBundle(CFStringRef bundlePath
, CFStringRef trustedAppListFileName
)
547 CFStringRef errorString
= nil
;
548 CFURLRef bundleURL
,trustedAppsURL
= NULL
;
549 CFBundleRef secBundle
= NULL
;
550 CFPropertyListRef trustedAppsPlist
= NULL
;
551 CFDataRef xmlDataRef
= NULL
;
553 CFArrayRef trustedAppList
= NULL
;
554 CFMutableStringRef trustedAppListFileNameWithoutExtension
= NULL
;
556 // Make a CFURLRef from the CFString representation of the bundleĆs path.
557 bundleURL
= CFURLCreateWithFileSystemPath(
558 kCFAllocatorDefault
,bundlePath
,kCFURLPOSIXPathStyle
,true);
560 CFRange wholeStrRange
;
565 // Make a bundle instance using the URLRef.
566 secBundle
= CFBundleCreate(kCFAllocatorDefault
,bundleURL
);
570 trustedAppListFileNameWithoutExtension
=
571 CFStringCreateMutableCopy(NULL
,CFStringGetLength(trustedAppListFileName
),trustedAppListFileName
);
572 wholeStrRange
= CFStringFind(trustedAppListFileName
,CFSTR(".plist"),0);
574 CFStringDelete(trustedAppListFileNameWithoutExtension
,wholeStrRange
);
576 // Look for a resource in the bundle by name and type
577 trustedAppsURL
= CFBundleCopyResourceURL(secBundle
,trustedAppListFileNameWithoutExtension
,CFSTR("plist"),NULL
);
581 if (!CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault
,trustedAppsURL
,&xmlDataRef
,NULL
,NULL
,&errorCode
))
584 trustedAppsPlist
= CFPropertyListCreateFromXMLData(kCFAllocatorDefault
,xmlDataRef
,kCFPropertyListImmutable
,&errorString
);
585 trustedAppList
= (CFArrayRef
)trustedAppsPlist
;
588 CFReleaseNull(trustedAppListFileNameWithoutExtension
);
590 CFRelease(bundleURL
);
592 CFRelease(secBundle
);
594 CFRelease(trustedAppsURL
);
596 CFRelease(xmlDataRef
);
598 CFRelease(errorString
);
600 return trustedAppList
;
603 OSStatus
SecAccessCreateWithTrustedApplications(CFStringRef trustedApplicationsPListPath
, CFStringRef accessLabel
, Boolean allowAny
, SecAccessRef
* returnedAccess
)
605 OSStatus err
= errSecSuccess
;
606 SecAccessRef accessToReturn
=nil
;
607 CFMutableArrayRef trustedApplications
=nil
;
609 if (!allowAny
) // use default access ("confirm access")
611 // make an exception list of applications you want to trust,
612 // which are allowed to access the item without requiring user confirmation
613 SecTrustedApplicationRef myself
=NULL
, someOther
=NULL
;
614 CFArrayRef trustedAppListFromBundle
=NULL
;
616 trustedApplications
=CFArrayCreateMutable(kCFAllocatorDefault
,0,&kCFTypeArrayCallBacks
);
617 err
= SecTrustedApplicationCreateFromPath(NULL
, &myself
);
619 CFArrayAppendValue(trustedApplications
,myself
);
621 CFURLRef url
= CFURLCreateWithFileSystemPath(NULL
, trustedApplicationsPListPath
, kCFURLPOSIXPathStyle
, 0);
622 CFStringRef leafStr
= NULL
;
623 leafStr
= CFURLCopyLastPathComponent(url
);
625 CFURLRef bndlPathURL
= NULL
;
626 bndlPathURL
= CFURLCreateCopyDeletingLastPathComponent(NULL
, url
);
627 CFStringRef bndlPath
= NULL
;
628 bndlPath
= CFURLCopyFileSystemPath(bndlPathURL
, kCFURLPOSIXPathStyle
);
629 trustedAppListFromBundle
=copyTrustedAppListFromBundle(bndlPath
, leafStr
);
637 CFRelease(bndlPathURL
);
638 if (trustedAppListFromBundle
)
641 char buffer
[MAXPATHLEN
];
642 top
= CFArrayGetCount(trustedAppListFromBundle
);
643 for (ix
=0;ix
<top
;ix
++)
645 CFStringRef filename
= (CFStringRef
)CFArrayGetValueAtIndex(trustedAppListFromBundle
,ix
);
646 CFIndex stringLength
= CFStringGetLength(filename
);
649 if (stringLength
!= CFStringGetBytes(filename
,CFRangeMake(0,stringLength
),kCFStringEncodingUTF8
,0,
650 false,(UInt8
*)&buffer
,MAXPATHLEN
, &usedBufLen
))
652 buffer
[usedBufLen
] = 0;
654 // Support specification of trusted applications by either
655 // a full pathname or a code requirement string.
659 err
= SecTrustedApplicationCreateFromPath(buffer
,&someOther
);
664 CFStringRef reqStr
= filename
;
665 CFArrayRef descArray
= CFStringCreateArrayBySeparatingStrings(NULL
, reqStr
, CFSTR("\""));
666 if (descArray
&& (CFArrayGetCount(descArray
) > 1))
668 CFStringRef descStr
= (CFStringRef
) CFArrayGetValueAtIndex(descArray
, 1);
670 buf
= CFStringToCString(descStr
);
672 SecRequirementRef reqRef
= NULL
;
673 err
= SecRequirementCreateWithString(reqStr
, kSecCSDefaultFlags
, &reqRef
);
675 err
= SecTrustedApplicationCreateFromRequirement((const char *)buf
, reqRef
, &someOther
);
678 CFReleaseSafe(reqRef
);
679 CFReleaseSafe(descArray
);
682 CFArrayAppendValue(trustedApplications
,someOther
);
685 CFReleaseNull(someOther
);
687 CFRelease(trustedAppListFromBundle
);
691 err
= SecAccessCreate((CFStringRef
)accessLabel
, (CFArrayRef
)trustedApplications
, &accessToReturn
);
694 if (allowAny
) // change access to be wide-open for decryption ("always allow access")
696 // get the access control list for decryption operations
697 CFArrayRef aclList
=nil
;
698 err
= SecAccessCopySelectedACLList(accessToReturn
, CSSM_ACL_AUTHORIZATION_DECRYPT
, &aclList
);
701 // get the first entry in the access control list
702 SecACLRef aclRef
=(SecACLRef
)CFArrayGetValueAtIndex(aclList
, 0);
703 CFArrayRef appList
=nil
;
704 CFStringRef promptDescription
=nil
;
705 CSSM_ACL_KEYCHAIN_PROMPT_SELECTOR promptSelector
;
706 err
= SecACLCopySimpleContents(aclRef
, &appList
, &promptDescription
, &promptSelector
);
708 // modify the default ACL to not require the passphrase, and have a nil application list
709 promptSelector
.flags
&= ~CSSM_ACL_KEYCHAIN_PROMPT_REQUIRE_PASSPHRASE
;
710 err
= SecACLSetSimpleContents(aclRef
, NULL
, promptDescription
, &promptSelector
);
712 if (appList
) CFRelease(appList
);
713 if (promptDescription
) CFRelease(promptDescription
);
717 *returnedAccess
= accessToReturn
;