arq_restore/cocoastack/io/Streams.m
2017-02-03 10:04:07 -05:00

175 lines
8.3 KiB
Objective-C

/*
Copyright (c) 2009-2017, Haystack Software LLC https://www.arqbackup.com
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the names of PhotoMinds LLC or Haystack Software, nor the names of
their contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#import "Streams.h"
#import "Sysctl.h"
#import "NetMonitor.h"
#import "FDOutputStream.h"
#import "BufferedOutputStream.h"
#import "DataInputStream.h"
#define MY_BUF_SIZE (4096)
@implementation Streams
+ (BOOL)transferFrom:(id <InputStream>)is to:(id <OutputStream>)os error:(NSError **)error {
unsigned long long written = 0;
return [Streams transferFrom:is to:os bytesWritten:&written error:error];
}
+ (BOOL)transferFrom:(id <InputStream>)is to:(id <OutputStream>)os bytesWritten:(unsigned long long *)written error:(NSError **)error {
BufferedOutputStream *bos = [[BufferedOutputStream alloc] initWithUnderlyingOutputStream:os];
BOOL ret = [self transferFrom:is toBufferedOutputStream:bos bytesWritten:written error:error];
if (ret && ![bos flush:error]) {
ret = NO;
}
[bos release];
return ret;
}
+ (BOOL)transferFrom:(id <InputStream>)is atomicallyToFile:(NSString *)path targetUID:(uid_t)theTargetUID targetGID:(gid_t)theTargetGID bytesWritten:(unsigned long long *)written error:(NSError **)error {
return [Streams transferFrom:is atomicallyToFile:path setUIDs:YES targetUID:theTargetUID targetGID:theTargetGID bytesWritten:written error:error];
}
+ (BOOL)transferFrom:(id <InputStream>)is atomicallyToFile:(NSString *)path setUIDs:(BOOL)theSetUIDs targetUID:(uid_t)theTargetUID targetGID:(gid_t)theTargetGID bytesWritten:(unsigned long long *)written error:(NSError **)error {
NSString *tempFileTemplate = [path stringByAppendingString:@".XXXXXX"];
const char *tempFileTemplateCString = [tempFileTemplate fileSystemRepresentation];
char *tempFileCString = strdup(tempFileTemplateCString);
int fd = mkstemp(tempFileCString);
NSString *tempFile = [[NSFileManager defaultManager] stringWithFileSystemRepresentation:tempFileCString length:strlen(tempFileCString)];
free(tempFileCString);
if (fd == -1) {
int errnum = errno;
HSLogError(@"mkstemp(%@) error %d: %s", tempFileTemplate, errnum, strerror(errnum));
SETNSERROR(@"UnixErrorDomain", errnum, @"failed to make temp file with template %@: %s", tempFileTemplate, strerror(errnum));
return NO;
}
if (theSetUIDs && (theTargetUID != getuid() || theTargetGID != getgid())) {
if (fchown(fd, theTargetUID, theTargetGID) == -1) {
int errnum = errno;
HSLogError(@"fchown(%@) error %d: %s", tempFile, errnum, strerror(errnum));
SETNSERROR(@"UnixErrorDomain", errnum, @"failed to change ownership of %@: %s", tempFile, strerror(errnum));
return NO;
}
}
FDOutputStream *fos = [[FDOutputStream alloc] initWithFD:fd];
BOOL ret = [Streams transferFrom:is to:fos error:error];
if (ret) {
if (![self rename:tempFile to:path error:error]) {
ret = NO;
} else {
if (chmod([path fileSystemRepresentation], S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH) < 0) {
int errnum = errno;
HSLogError(@"chmod(%@, %d, %d) error %d: %s", path, theTargetUID, theTargetGID, errnum, strerror(errnum));
}
if (chown([path fileSystemRepresentation], theTargetUID, theTargetGID) < 0) {
int errnum = errno;
HSLogError(@"chown(%@, %d, %d) error %d: %s", path, theTargetUID, theTargetGID, errnum, strerror(errnum));
}
[[NSFileManager defaultManager] removeItemAtPath:tempFile error:NULL];
}
}
if (ret) {
HSLogDetail(@"wrote %ld bytes to %@", (unsigned long)[fos bytesWritten], path);
if (written != NULL) {
*written = [fos bytesWritten];
}
} else {
if (error != NULL) {
HSLogError(@"error transferring bytes to %@: %@", path, [*error localizedDescription]);
}
}
[fos release];
close(fd);
return ret;
}
+ (BOOL)writeData:(NSData *)theData atomicallyToFile:(NSString *)path targetUID:(uid_t)theTargetUID targetGID:(gid_t)theTargetGID bytesWritten:(unsigned long long *)written error:(NSError **)error {
return [Streams writeData:theData atomicallyToFile:path setUIDs:YES targetUID:theTargetUID targetGID:theTargetGID bytesWritten:written error:error];
}
+ (BOOL)writeData:(NSData *)theData atomicallyToFile:(NSString *)path setUIDs:(BOOL)theSetUIDs targetUID:(uid_t)theTargetUID targetGID:(gid_t)theTargetGID bytesWritten:(unsigned long long *)written error:(NSError **)error {
DataInputStream *dis = [[[DataInputStream alloc] initWithData:theData description:@"no description"] autorelease];
return [Streams transferFrom:dis atomicallyToFile:path setUIDs:theSetUIDs targetUID:theTargetUID targetGID:theTargetGID bytesWritten:written error:error];
}
+ (BOOL)transferFrom:(id <InputStream>)is toBufferedOutputStream:(BufferedOutputStream *)bos bytesWritten:(unsigned long long *)written error:(NSError **)error {
NSInteger received = 0;
unsigned char *buf = (unsigned char *)malloc(MY_BUF_SIZE);
for (;;) {
received = [is read:buf bufferLength:MY_BUF_SIZE error:error];
if (received <= 0) {
break;
}
if (![bos writeFully:buf length:received error:error]) {
received = -1;
break;
}
*written += (unsigned long long)received;
}
free(buf);
if (![bos flush:error]) {
received = -1;
}
return received >= 0;
}
+ (BOOL)rename:(NSString *)theFromPath to:(NSString *)theToPath error:(NSError **)error {
BOOL ret = NO;
for (int tries = 0; ; tries++) {
if (rename([theFromPath fileSystemRepresentation], [theToPath fileSystemRepresentation]) == 0) {
ret = YES;
break;
}
int errnum = errno;
HSLogDebug(@"rename(%@, %@) attempt #%d failed with error %d: %s", theFromPath, theToPath, tries, errnum, strerror(errnum));
if (errnum == EEXIST) {
HSLogDetail(@"destination file %@ exists; deleting existing file and trying again", theToPath);
[NSThread sleepForTimeInterval:1.0];
if (unlink([theToPath fileSystemRepresentation]) == -1) {
errnum = errno;
HSLogError(@"failed to delete existing destination file %@: error %d: %s", theToPath, errnum, strerror(errnum));
}
} else if (errnum == EBUSY) {
HSLogDetail(@"rename %@ to %@ returned EBUSY; trying again after short wait", theFromPath, theToPath);
[NSThread sleepForTimeInterval:1.0];
} else {
HSLogError(@"rename(%@, %@) error %d: %s", theFromPath, theToPath, errnum, strerror(errnum));
SETNSERROR(@"UnixErrorDomain", errnum, @"failed to rename %@ to %@: %s", theFromPath, theToPath, strerror(errnum));
ret = NO;
break;
}
}
return ret;
}
@end