X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/5c19dc3ae3bd8e40a9c028b0deddd50ff337692c..07691282a056c4efea71e1e505527601e8cc166b:/OSX/libsecurity_keychain/lib/SecKeychainAddIToolsPassword.cpp diff --git a/OSX/libsecurity_keychain/lib/SecKeychainAddIToolsPassword.cpp b/OSX/libsecurity_keychain/lib/SecKeychainAddIToolsPassword.cpp index 5983311a..db82b83a 100644 --- a/OSX/libsecurity_keychain/lib/SecKeychainAddIToolsPassword.cpp +++ b/OSX/libsecurity_keychain/lib/SecKeychainAddIToolsPassword.cpp @@ -32,74 +32,15 @@ #include #include #include -#include "SecBridge.h" #include -#include -OSStatus SecKeychainAddIToolsPassword(SecKeychainRef keychain, UInt32 accountNameLength, const char *accountName, - UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) +OSStatus SecKeychainAddIToolsPassword(SecKeychainRef __unused keychain, + UInt32 __unused accountNameLength, + const char * __unused accountName, + UInt32 __unused passwordLength, + const void * __unused passwordData, + SecKeychainItemRef * __unused itemRef) { - BEGIN_SECAPI - - const char *serviceUTF8 = "iTools"; - - // create the initial ACL label string (use the account name, not "iTools") - CFRef itemLabel = CFStringCreateWithBytes(kCFAllocatorDefault, - (const UInt8 *)accountName, accountNameLength, kCFStringEncodingUTF8, FALSE); - - // accumulate applications in this list - CFRef apps = CFArrayCreateMutable(NULL, 0, &kCFTypeArrayCallBacks); - - // add entries for application groups - CFRef dotMacGroup, accountsGroup; - MacOSError::check(SecTrustedApplicationCreateApplicationGroup("dot-mac", NULL, &dotMacGroup.aref())); - CFArrayAppendValue(apps, dotMacGroup); - MacOSError::check(SecTrustedApplicationCreateApplicationGroup("InternetAccounts", NULL, &accountsGroup.aref())); - CFArrayAppendValue(apps, accountsGroup); - - // now add "myself" as an ordinary application - CFRef myself; - MacOSError::check(SecTrustedApplicationCreateFromPath(NULL, &myself.aref())); - CFArrayAppendValue(apps, myself); - - // now add the pre-cooked list of .Mac applications for systems that don't understand the group semantics - if (CFRef myBundle = CFBundleGetBundleWithIdentifier(CFSTR("com.apple.security"))) - if (CFRef url = CFBundleCopyResourceURL(myBundle, - CFSTR("iToolsTrustedApps"), CFSTR("plist"), NULL)) { - CFRef data; - if (CFURLCreateDataAndPropertiesFromResource(NULL, url, &data.aref(), NULL, NULL, NULL)) - if (CFRef list = - CFArrayRef(CFPropertyListCreateFromXMLData(NULL, data, kCFPropertyListImmutable, NULL))) { - CFIndex size = CFArrayGetCount(list); - for (CFIndex n = 0; n < size; n++) { - CFStringRef path = (CFStringRef)CFArrayGetValueAtIndex(list, n); - CFRef app; - if (SecTrustedApplicationCreateFromPath(cfString(path).c_str(), &app.aref()) == errSecSuccess) - CFArrayAppendValue(apps, app); - } - } - } - - // form a SecAccess from this - CFRef access; - MacOSError::check(SecAccessCreate(itemLabel, (CFArrayRef)apps, &access.aref())); - - // set up attribute vector (each attribute consists of {tag, length, pointer}) - SecKeychainAttribute attrs[] = { - { kSecLabelItemAttr, accountNameLength, (char *)accountName }, // use the account name as the label for display purposes [3787371] - { kSecAccountItemAttr, accountNameLength, (char *)accountName }, - { kSecServiceItemAttr, (UInt32)strlen(serviceUTF8), (char *)serviceUTF8 } - }; - SecKeychainAttributeList attributes = { sizeof(attrs) / sizeof(attrs[0]), attrs }; - - return SecKeychainItemCreateFromContent(kSecGenericPasswordItemClass, - &attributes, - passwordLength, - (const char *)passwordData, - keychain, - access, - itemRef); - - END_SECAPI + return errSecParam; }