私のCocoaアプリケーションでは、root権限で別のアプリケーションを実行する必要がありますが、機能しません。NSTaskには必要な権限がありません。AuthorizationCreateセクションは、必要な権限を取得する場所です。NSTaskの実行は、別のアプリケーションを実行しているセクションです。
myStatusはerrAuthorizationSuccessを返します。
これがコードです
//Authorization Create
AuthorizationRef myAuthorizationRef;
OSStatus myStatus;
myStatus = AuthorizationCreate (NULL, kAuthorizationEmptyEnvironment,
kAuthorizationFlagExtendRights | kAuthorizationFlagInteractionAllowed , &myAuthorizationRef);
AuthorizationItem myItems[1];
myItems[0].name = "com.myOrganization.myProduct.myRight1";
myItems[0].valueLength = 0;
myItems[0].value = NULL;
myItems[0].flags = 0;
AuthorizationRights myRights;
myRights.count = sizeof (myItems) / sizeof (myItems[0]);
myRights.items = myItems;
AuthorizationFlags myFlags;
myFlags = kAuthorizationFlagDefaults |
kAuthorizationFlagInteractionAllowed |
kAuthorizationFlagExtendRights;
myStatus = AuthorizationCopyRights (myAuthorizationRef, &myRights,
kAuthorizationEmptyEnvironment, myFlags, NULL);
if (myStatus==errAuthorizationSuccess)
{
//Running NSTask
//setting license
NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/opt/cprocsp/sbin/cpconfig"];
NSArray *arguments;
arguments = [NSArray arrayWithObjects:@"-license", @"-set",
@"lalala", nil];
[task setArguments: arguments];
NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];
NSFileHandle *file;
file = [pipe fileHandleForReading];
[task launch];
NSData *data;
data = [file readDataToEndOfFile];
NSString *string;
string = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
NSLog (@"grep returned:\n%@", string);
[_logs insertText:string];
}
myStatus = AuthorizationFree (myAuthorizationRef,
kAuthorizationFlagDestroyRights);
STPrivilegeはARCプロジェクトであるため、使用できません。私が間違っているのは何ですか?ヘルプのためのThx。