I'm developing a sandboxed app for Mac OS X 10.7 and I'm trying to implement file saving in a way similar to NSDocument:

  1. Rewrite the file's new contents to a temporary file
  2. Overwrite the original file with the temporary file

The issue I'm having is that the sandbox is denying step 2. I see the following line in Console:

sandboxd: XXXX deny file-write-create /Volumes/Home/sbooth/Test Files/Test

I already have this file open for reading and writing, and I have the File System Read/Write Access entitlement enabled. I know NSDocument does this with no special entitlements so I'm trying to figure out what I've missed.

Here is how I'm doing things now (this portion of the app is in C++, not Objective-C/C++):

FSRef tempFileFSRef;
if(noErr != FSPathMakeRef((const UInt8 *)tempFileName, &tempFileFSRef, NULL))
  ; // Handle it
CFURLRef destinationDirURL = CFURLCreateCopyDeletingLastPathComponent(kCFAllocatorDefault, mURL);
FSRef destinationDirFSRef;
if(!CFURLGetFSRef(destinationDirURL, &destinationDirFSRef))
  ; // Handle it
CFRelease(destinationDirURL), destinationDirURL = NULL;
CFStringRef destinationName = CFURLCopyLastPathComponent(mURL);
FSRef target;
OSStatus result = FSCopyObjectSync(&tempFileFSRef, &destinationDirFSRef, destinationName, &target, kFSFileOperationOverwrite | kFSFileOperationSkipSourcePermissionErrors);
if(noErr != result)
  ; // Handle it

The code works correctly if I disable sandboxing.

Edit: Additional information was requested by Femi. I open the file using C stdio:

FILE *f = fopen(reinterpret_cast<const char *>(buf), "r");

and it closed using fclose before the temp file is created.

My entitlements are:

<dict>
    <key>com.apple.security.app-sandbox</key>
    <true/>
    <key>com.apple.security.assets.music.read-write</key>
    <true/>
    <key>com.apple.security.files.downloads.read-write</key>
    <true/>
    <key>com.apple.security.files.user-selected.read-write</key>
    <true/>
</dict>

It's also worth noting that Apple says in their App Sandbox Design Guide that:

If you are managing documents using any technology other than the NSDocument class, you must convert to using this class. The NSDocument class automatically works with Powerbox. NSDocument also provides support for keeping documents within your sandbox if the user moves them using Finder.

link|improve this question
Besides the sandboxd line in the Console, is FSCopyObjectSync returning an error? – Michael Dautermann Dec 1 '11 at 3:48
It does return an error: -54 | permErr – sbooth Dec 1 '11 at 22:39
It's also not a surprise, but FSMoveObjectSync exhibits the same behavior – sbooth Dec 2 '11 at 2:06
Curious: can you include the code where you open the original file? And the entitlements you've asked for? – Femi Jan 6 at 2:38
1  
IIRC the sandbox keeps track of what files the user selected in a sandbox... try to select the file via a dialog again after you closed the file and before you open for writing... – Yahia Jan 9 at 11:34
show 1 more comment
feedback

1 Answer

The sandbox only allows you to read and write from your application's container. If you have the read/write entitlement enabled, then you only have access to the files that are opened via the OpenSavePanel (or some method like dragging an icon to the dock where the user has specifically opened the file). This will severely limit how the application works with files on the file system.

So, as long as your application has permission to write over the document in question, you can write your temporary file to your applications container and then retrieve the temp file contents to then save to the original location. However, this assumes that you app maintains permissions to the original file throughout the process.

So, my suggestion is to make sure any writing you do is done in the application container and then verify that you app still has permission to write to the real file location before calling the save function.

I recently wrote a similar question where my app lost access to files that were open because another (non-sandboxed) app saved to the same file. The sandbox then gave that app access to my doc and removed permissions from the app.

link|improve this answer
I may have left out an important piece of information: the original file is chosen by the user with an Open dialog. Using this approach, instead of moving the temp file the contents would be copied. This negates the (I don't want to use the word atomic) benefits of simply moving a file instead of copying it. – sbooth Jan 14 at 18:52
Unfortunately, you have to work around the rules of the sandbox. Since your code is trying to access the filesystem outside of where it has permission, then this is impossible while the sandbox entitlements are active. – Scott Harwell Jan 14 at 18:57
I understand the sandbox rules, but I don't think I'm truly breaking them. The original file is selected by the user (via powerbox) and the temp file is created in the appropriate temporary directory as a response to the save command. In essence I'm trying to duplicate NSDocument's saving behavior without using NSDocument because I don't need its full functionality. I think Yahia hit the nail on the head- when I close the file it is probably removed from powerbox's list of allowed files. – sbooth Jan 14 at 23:50
Yes, I think that he is right that the file is removed from the list of allowed files. However, if you are closing the document, and then trying to save after the document is closed, then you are, in fact, breaking the rules. – Scott Harwell Jan 15 at 0:31
I hear what you're saying about breaking the rules. I know NSDocument has this behavior, though, so there must be a way. – sbooth Jan 15 at 1:35
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.