1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
#import "XADPlatform.h"
#import "CSFileHandle.h"
#import "NSDateXAD.h"
#import <fcntl.h>
#import <unistd.h>
#import <sys/stat.h>
#import <sys/time.h>
#import <sys/attr.h>
#import <sys/xattr.h>
struct ResourceOutputArguments
{
int fd,offset;
};
@interface XADPlatform (Private)
+(void)setComment:(NSString *)comment forPath:(NSString *)path;
+(BOOL)readCatalogInfoForFilename:(NSString *)filename infoBitmap:(FSCatalogInfoBitmap)bitmap
toCatalogInfo:(FSCatalogInfo *)info;
+(BOOL)writeCatalogInfoForFilename:(NSString *)filename infoBitmap:(FSCatalogInfoBitmap)bitmap
fromCatalogInfo:(FSCatalogInfo *)info;
@end
@implementation XADPlatform
//
// Archive entry extraction.
//
+(XADError)extractResourceForkEntryWithDictionary:(NSDictionary *)dict
unarchiver:(XADUnarchiver *)unarchiver toPath:(NSString *)destpath
{
const char *cpath=[destpath fileSystemRepresentation];
int originalpermissions=-1;
// Open the file for writing, creating it if it doesn't exist.
// TODO: Does it need to be opened for writing or is read enough?
int fd=open(cpath,O_WRONLY|O_CREAT|O_NOFOLLOW,0666);
if(fd==-1)
{
// If opening the file failed, check if it is a link and skip if it is.
struct stat st;
lstat(cpath,&st);
if(S_ISLNK(st.st_mode))
{
NSNumber *sizenum=[dict objectForKey:XADFileSizeKey];
if(!sizenum) return XADNoError;
else if([sizenum longLongValue]==0) return XADNoError;
}
// Otherwise, try changing permissions.
originalpermissions=st.st_mode;
chmod(cpath,0700);
fd=open(cpath,O_WRONLY|O_CREAT|O_NOFOLLOW,0666);
if(fd==-1) return XADOpenFileError; // TODO: Better error.
}
struct ResourceOutputArguments args={ .fd=fd, .offset=0 };
XADError error=[unarchiver runExtractorWithDictionary:dict
outputTarget:self selector:@selector(outputToResourceFork:bytes:length:)
argument:[NSValue valueWithPointer:&args]];
close(fd);
if(originalpermissions!=-1) chmod(cpath,originalpermissions);
return error;
}
+(XADError)outputToResourceFork:(NSValue *)pointerval bytes:(uint8_t *)bytes length:(int)length
{
struct ResourceOutputArguments *args=[pointerval pointerValue];
if(fsetxattr(args->fd,XATTR_RESOURCEFORK_NAME,bytes,length,
args->offset,0)) return XADOutputError;
args->offset+=length;
return XADNoError;
}
+(XADError)updateFileAttributesAtPath:(NSString *)path
forEntryWithDictionary:(NSDictionary *)dict parser:(XADArchiveParser *)parser
preservePermissions:(BOOL)preservepermissions
{
const char *cpath=[path fileSystemRepresentation];
// Read file permissions.
struct stat st;
if(lstat(cpath,&st)!=0) return XADOpenFileError; // TODO: better error
// If the file does not have write permissions, change this temporarily.
if(!(st.st_mode&S_IWUSR)) chmod(cpath,0700);
// Write extended attributes.
NSDictionary *extattrs=[parser extendedAttributesForDictionary:dict];
if(extattrs)
{
NSEnumerator *enumerator=[extattrs keyEnumerator];
NSString *key;
while((key=[enumerator nextObject]))
{
NSData *data=[extattrs objectForKey:key];
int namelen=[key lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
char namebytes[namelen+1];
[key getCString:namebytes maxLength:sizeof(namebytes) encoding:NSUTF8StringEncoding];
setxattr(cpath,namebytes,[data bytes],[data length],0,XATTR_NOFOLLOW);
}
}
// Set comment.
XADString *comment=[dict objectForKey:XADCommentKey];
if(comment) [self setComment:[comment string] forPath:path];
// Attrlist structures.
struct attrlist list={ ATTR_BIT_MAP_COUNT };
uint8_t attrdata[3*sizeof(struct timespec)+sizeof(uint32_t)];
uint8_t *attrptr=attrdata;
// Handle timestamps.
NSDate *creation=[dict objectForKey:XADCreationDateKey];
NSDate *modification=[dict objectForKey:XADLastModificationDateKey];
NSDate *access=[dict objectForKey:XADLastAccessDateKey];
if(creation)
{
list.commonattr|=ATTR_CMN_CRTIME;
*((struct timespec *)attrptr)=[creation timespecStruct];
attrptr+=sizeof(struct timeval);
}
if(modification)
{
list.commonattr|=ATTR_CMN_MODTIME;
*((struct timespec *)attrptr)=[modification timespecStruct];
attrptr+=sizeof(struct timeval);
}
if(access)
{
list.commonattr|=ATTR_CMN_ACCTIME;
*((struct timespec *)attrptr)=[access timespecStruct];
attrptr+=sizeof(struct timeval);
}
// Figure out permissions, or reuse the earlier value.
mode_t mode=st.st_mode;
NSNumber *permissions=[dict objectForKey:XADPosixPermissionsKey];
if(permissions)
{
mode=[permissions unsignedShortValue];
if(!preservepermissions)
{
mode_t mask=umask(022);
umask(mask); // This is stupid. Is there no sane way to just READ the umask?
mode&=~(mask|S_ISUID|S_ISGID);
}
}
// Add permissions to attribute list.
list.commonattr|=ATTR_CMN_ACCESSMASK;
*((uint32_t *)attrptr)=mode;
attrptr+=sizeof(uint32_t);
// Finally, set all attributes.
setattrlist(cpath,&list,attrdata,attrptr-attrdata,FSOPT_NOFOLLOW);
return XADNoError;
}
+(void)setComment:(NSString *)comment forPath:(NSString *)path;
{
if(!comment||![comment length]) return;
const char *eventformat =
"'----': 'obj '{ " // Direct object is the file comment we want to modify
" form: enum(prop), " // ... the comment is an object's property...
" seld: type(comt), " // ... selected by the 'comt' 4CC ...
" want: type(prop), " // ... which we want to interpret as a property (not as e.g. text).
" from: 'obj '{ " // It's the property of an object...
" form: enum(indx), "
" want: type(file), " // ... of type 'file' ...
" seld: @," // ... selected by an alias ...
" from: null() " // ... according to the receiving application.
" }"
" }, "
"data: @"; // The data is what we want to set the direct object to.
NSAppleEventDescriptor *commentdesc=[NSAppleEventDescriptor descriptorWithString:comment];
FSRef ref;
bzero(&ref,sizeof(ref));
if(FSPathMakeRef((UInt8 *)[path fileSystemRepresentation],&ref,NULL)!=noErr) return;
AEDesc filedesc;
AEInitializeDesc(&filedesc);
if(AECoercePtr(typeFSRef,&ref,sizeof(ref),typeAlias,&filedesc)!=noErr) return;
AEDesc builtevent,replyevent;
AEInitializeDesc(&builtevent);
AEInitializeDesc(&replyevent);
static OSType findersignature='MACS';
OSErr err=AEBuildAppleEvent(kAECoreSuite,kAESetData,
typeApplSignature,&findersignature,sizeof(findersignature),
kAutoGenerateReturnID,kAnyTransactionID,
&builtevent,NULL,eventformat,&filedesc,[commentdesc aeDesc]);
AEDisposeDesc(&filedesc);
if(err!=noErr) return;
AESendMessage(&builtevent,&replyevent,kAENoReply,kAEDefaultTimeout);
AEDisposeDesc(&builtevent);
AEDisposeDesc(&replyevent);
}
+(XADError)createLinkAtPath:(NSString *)path withDestinationPath:(NSString *)link
{
struct stat st;
const char *destcstr=[path fileSystemRepresentation];
if(lstat(destcstr,&st)==0) unlink(destcstr);
if(symlink([link fileSystemRepresentation],destcstr)!=0) return XADLinkError;
return XADNoError;
}
//
// Archive post-processing.
//
+(id)readCloneableMetadataFromPath:(NSString *)path
{
if(!LSSetItemAttribute) return nil;
FSRef ref;
if(CFURLGetFSRef((CFURLRef)[NSURL fileURLWithPath:path],&ref))
{
CFDictionaryRef quarantinedict;
LSCopyItemAttribute(&ref,kLSRolesAll,kLSItemQuarantineProperties,
(CFTypeRef*)&quarantinedict);
return [(id)quarantinedict autorelease];
}
return nil;
}
+(void)writeCloneableMetadata:(id)metadata toPath:(NSString *)path
{
if(!LSSetItemAttribute) return;
FSRef ref;
if(CFURLGetFSRef((CFURLRef)[NSURL fileURLWithPath:path],&ref))
LSSetItemAttribute(&ref,kLSRolesAll,kLSItemQuarantineProperties,metadata);
}
+(BOOL)copyDateFromPath:(NSString *)src toPath:(NSString *)dest
{
FSCatalogInfo info;
if(![self readCatalogInfoForFilename:src infoBitmap:kFSCatInfoContentMod toCatalogInfo:&info]) return NO;
return [self writeCatalogInfoForFilename:dest infoBitmap:kFSCatInfoContentMod fromCatalogInfo:&info];
}
+(BOOL)resetDateAtPath:(NSString *)path
{
FSCatalogInfo info;
UCConvertCFAbsoluteTimeToUTCDateTime(CFAbsoluteTimeGetCurrent(),&info.contentModDate);
return [self writeCatalogInfoForFilename:path infoBitmap:kFSCatInfoContentMod fromCatalogInfo:&info];
}
+(BOOL)readCatalogInfoForFilename:(NSString *)filename infoBitmap:(FSCatalogInfoBitmap)bitmap
toCatalogInfo:(FSCatalogInfo *)info
{
FSRef ref;
if(FSPathMakeRefWithOptions((const UInt8 *)[filename fileSystemRepresentation],
kFSPathMakeRefDoNotFollowLeafSymlink,&ref,NULL)!=noErr) return NO;
if(FSGetCatalogInfo(&ref,bitmap,info,NULL,NULL,NULL)!=noErr) return NO;
return YES;
}
+(BOOL)writeCatalogInfoForFilename:(NSString *)filename infoBitmap:(FSCatalogInfoBitmap)bitmap
fromCatalogInfo:(FSCatalogInfo *)info
{
FSRef ref;
if(FSPathMakeRefWithOptions((const UInt8 *)[filename fileSystemRepresentation],
kFSPathMakeRefDoNotFollowLeafSymlink,&ref,NULL)!=noErr) return NO;
if(FSSetCatalogInfo(&ref,bitmap,info)!=noErr) return NO;
return YES;
}
//
// Path functions.
//
+(NSString *)uniqueDirectoryPathWithParentDirectory:(NSString *)parent
{
// TODO: ensure this path is actually unique.
NSDate *now=[NSDate date];
int64_t t=[now timeIntervalSinceReferenceDate]*1000000000;
pid_t pid=getpid();
NSString *dirname=[NSString stringWithFormat:@"XADTemp%qd%d",t,pid];
if(parent) return [parent stringByAppendingPathComponent:dirname];
else return dirname;
}
+(NSString *)sanitizedPathComponent:(NSString *)component
{
if([component rangeOfString:@"/"].location==NSNotFound&&
[component rangeOfString:@"\000"].location==NSNotFound) return component;
NSMutableString *newstring=[NSMutableString stringWithString:component];
[newstring replaceOccurrencesOfString:@"/" withString:@":" options:0 range:NSMakeRange(0,[newstring length])];
[newstring replaceOccurrencesOfString:@"\000" withString:@"_" options:0 range:NSMakeRange(0,[newstring length])];
return newstring;
}
//
// Time functions.
//
+(double)currentTimeInSeconds
{
struct timeval tv;
gettimeofday(&tv,NULL);
return (double)tv.tv_sec+(double)tv.tv_usec/1000000.0;
}
@end
|