This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
NSURL+SOExtendedAttributes.m
407 lines (312 loc) · 16.4 KB
/
NSURL+SOExtendedAttributes.m
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/*
NSURL+SOExtendedAttributes
Copyright 2012-2014 Standard Orbit Software, LLC. All rights reserved.
License at the bottom of the file.
*/
#if ! __has_feature(objc_arc)
#error This file must be compiled with ARC (set -fobjc_arc flag on file)
#endif
#import <Foundation/Foundation.h>
#import "NSURL+SOExtendedAttributes.h"
#import <sys/xattr.h>
#include <unistd.h>
NSString * const iCloudDoNotBackupAttributeName = @"com.apple.MobileBackup";
NSString * const SOExtendedAttributesErrorDomain = @"SOExtendedAttributesErrorDomain";
NSString * const SOUnderlyingErrorsKey = @"SOUnderlyingErrors";
NSString * const SOExtendedAttributeNameKey = @"SOExtendedAttributeName";
/* Use default options with xattr API that don't resolve symlinks and show the HFS compression extended attribute. */
static int xattrDefaultOptions = XATTR_NOFOLLOW | XATTR_SHOWCOMPRESSION;
/* Make an NSError from the global errno and optionally the url */
static inline NSError *SOPOSIXErrorForURL(NSURL *url)
{
int posixErr = errno;
NSString *errDesc;
switch (posixErr)
{
case ENAMETOOLONG:
errDesc = @"Attribute name too long";
break;
case E2BIG:
errDesc = @"Attribute too big";
break;
default:
errDesc = [NSString stringWithUTF8String: strerror(posixErr)];
break;
}
NSMutableDictionary *errInfo = [NSMutableDictionary dictionary];
[errInfo setObject:errDesc forKey:NSLocalizedDescriptionKey];
if (url) {
[errInfo setObject:url forKey:NSURLErrorKey];
}
return [NSError errorWithDomain:NSPOSIXErrorDomain code:posixErr userInfo:errInfo];
}
@implementation NSURL (SOExtendedAttributes)
- (NSArray *) namesOfExtendedAttributesWithError:(NSError * __autoreleasing *)outError
{
if (![self isFileURL]) [NSException raise:NSInternalInconsistencyException format:@"%s only valid on file URLs", __PRETTY_FUNCTION__];
NSMutableArray *attributeNames = [[NSMutableArray alloc] init];
@autoreleasepool
{
/* Get attributes names. Bail with nil dictionary if problem */
const char *itemPath = [[self path] fileSystemRepresentation];
/* Get the size of the attributes list, then extract each name as an NSString. */
void *namesBuffer = NULL;
ssize_t bufferSize = listxattr (itemPath, NULL, SIZE_MAX, xattrDefaultOptions);
if (bufferSize > 0)
{
namesBuffer = calloc(1, bufferSize);
bufferSize = listxattr (itemPath, namesBuffer, bufferSize, xattrDefaultOptions );
}
/* No names? Bail now with empty list. */
if (bufferSize == 0)
{
if (namesBuffer) free(namesBuffer);
return attributeNames;
}
/* Problemo? Bail now with the POSIX error. */
if (bufferSize == -1)
{
if (namesBuffer) free(namesBuffer);
attributeNames = nil;
if (outError) *outError = SOPOSIXErrorForURL(self);
return nil;
}
/* Parse the name buffer for attribute names.
Iterate the buffer character by character, looking for a NULL byte.
When found, collect the range of bytes into an NSString and cache in our names list.
*/
uintptr_t ptr_startOfBuffer = (uintptr_t)namesBuffer;
uintptr_t ptr_startOfName = ptr_startOfBuffer;
for (ssize_t x = 0; x < bufferSize; x++ )
{
/* Advance current byte pointer */
uintptr_t ptr_currentByte = ptr_startOfBuffer + x;
/* Check for the end of a name */
if ( ptr_currentByte && *((char *)ptr_currentByte) == 0x0 )
{
/* Collect the attribute name */
NSString *name = [[NSString alloc] initWithUTF8String:(char *)ptr_startOfName];
[attributeNames addObject: name];
name = nil;
/* Reset the start of name pointer */
ptr_startOfName = ptr_currentByte + 1;
}
}
/* Free the memory! */
free(namesBuffer); namesBuffer = NULL;
}
return attributeNames;
}
- (NSData *) dataForExtendedAttribute:(NSString *)name error:(NSError * __autoreleasing *)outError
{
if (!name || [name isEqualToString:@""]) {
[NSException raise:NSInvalidArgumentException format:@"extended attribute name cannot be empty"];
}
/* First query for the size of the attribute value, then pull it into an NSData is possible */
const char *itemPath = [[self path] fileSystemRepresentation];
void *valueDataBuffer = NULL;
ssize_t dataSize = getxattr (itemPath, [name UTF8String], NULL, SIZE_MAX, 0, xattrDefaultOptions);
if (dataSize != -1) {
valueDataBuffer = calloc(1, dataSize);
dataSize = getxattr (itemPath, [name UTF8String], valueDataBuffer, dataSize, 0, xattrDefaultOptions );
}
/* */
NSData *xattrData = nil;
if (dataSize == -1) {
/* Clean up memory */
if (valueDataBuffer) {
free(valueDataBuffer); valueDataBuffer = NULL;
}
if (outError) {
NSError *posixError = SOPOSIXErrorForURL(self);
NSMutableDictionary *augmentedErrorInfo = [[posixError userInfo] mutableCopy];
augmentedErrorInfo[SOExtendedAttributeNameKey] = name;
*outError = [NSError errorWithDomain:[posixError domain] code:[posixError code] userInfo:augmentedErrorInfo];
}
} else {
xattrData = [[NSData alloc] initWithBytesNoCopy:valueDataBuffer length:dataSize freeWhenDone:YES];
}
return xattrData;
}
- (BOOL) setExtendedAttributeData:(NSData *)data name:(NSString *)name error:(NSError * __autoreleasing *)outError
{
if (!name || [name isEqualToString:@""]) {
[NSException raise:NSInvalidArgumentException format:@"extended attribute name cannot be empty"];
}
/* Set data as extended attribute value */
int err = setxattr ( [[self path] fileSystemRepresentation], [name UTF8String], [data bytes], [data length], 0, XATTR_NOFOLLOW);
if (err != 0)
{
if (outError) {
NSError *posixError = SOPOSIXErrorForURL(self);
NSMutableDictionary *augmentedErrorInfo = [[posixError userInfo] mutableCopy];
augmentedErrorInfo[SOExtendedAttributeNameKey] = name;
*outError = [NSError errorWithDomain:[posixError domain] code:[posixError code] userInfo:augmentedErrorInfo];
}
}
return (err == 0);
}
#pragma mark -
#pragma mark Batch Attributes
- (NSDictionary *) extendedAttributesWithError:(NSError * __autoreleasing *)outError
{
/* Get names of all extended attributes associated with this URL. */
NSArray *attributeNames = [self namesOfExtendedAttributesWithError:outError];
if (attributeNames == nil) return nil;
/* Collect the value for each found extended attribute. */
NSMutableDictionary *collectedAttributes = [[NSMutableDictionary alloc] initWithCapacity:[attributeNames count]];
NSMutableArray *collectedErrors = [NSMutableArray array];
for (NSString *name in attributeNames)
{
NSError *error = nil;
id value = [self valueOfExtendedAttributeWithName:name error:&error];
/* Collect the value or collect the error. */
if (value) {
[collectedAttributes setObject:value forKey:name];
}
else if (error) {
[collectedErrors addObject:error];
break;
}
}
/* Did we get any errors? */
BOOL hasErrors = [collectedErrors count] > 0;
if (hasErrors && outError)
{
collectedAttributes = nil;
NSMutableDictionary *errInfo = [NSMutableDictionary dictionary];
[errInfo setObject:NSLocalizedString(@"Failed to get one or more extended attribute values", @"Error message description for SOExtendedAttributesGetValueError") forKey:NSLocalizedDescriptionKey];
[errInfo setObject:self forKey:NSURLErrorKey];
[errInfo setObject:collectedErrors forKey:SOUnderlyingErrorsKey];
*outError = [NSError errorWithDomain:SOExtendedAttributesErrorDomain code:SOExtendedAttributesGetValueError userInfo:errInfo];
}
return collectedAttributes;
}
- (BOOL) setExtendedAttributes:(NSDictionary *)attributes error:(NSError * __autoreleasing *)outError
{
if (![self isFileURL]) [NSException raise:NSInternalInconsistencyException format:@"%s only valid on file URLs", __PRETTY_FUNCTION__];
/* It is OK but silly to pass in empty attributes. */
if ([attributes count] == 0) return YES;
/* Attempt to set all attribute values in the dictionary. Any individual errors are collected and returned as a group. */
__block NSMutableArray *collectedErrors = nil;
if (outError) {
collectedErrors = [NSMutableArray arrayWithCapacity:[attributes count]];
}
[attributes enumerateKeysAndObjectsUsingBlock:^(id name, id value, BOOL *stop) {
NSError *error = nil;
/* Preflight passed value for binary plist serialization. MUST do this because NSPropertyListSerialization doesn't ALWAYS return an error when something goes wrong, such as attempting to serialize an NSNull. */
if ( ! [NSPropertyListSerialization propertyList:value isValidForFormat:NSPropertyListBinaryFormat_v1_0])
{
if (collectedErrors) {
NSMutableDictionary *errInfo = [NSMutableDictionary dictionary];
[errInfo setObject:name forKey:SOExtendedAttributeNameKey];
[errInfo setObject:[NSString stringWithFormat:@"Value of class %@ cannot be serialized into a plist", NSStringFromClass([value class])] forKey:NSLocalizedDescriptionKey];
[errInfo setObject:value forKey:@"value"];
error = [NSError errorWithDomain:SOExtendedAttributesErrorDomain code:SOExtendedAttributesValueCantBeSerialized userInfo:errInfo];
[collectedErrors addObject:error];
}
} else {
/* Serialize value to binary plist */
NSError *dataError = nil;
NSData *data = [NSPropertyListSerialization dataWithPropertyList:value format:NSPropertyListBinaryFormat_v1_0 options:0 error:&dataError];
if (data == nil) {
if (collectedErrors) {
NSMutableDictionary *augmentedErrorInfo = [[dataError userInfo] mutableCopy];
[augmentedErrorInfo setObject:name forKey:SOExtendedAttributeNameKey];
error = [NSError errorWithDomain:[dataError domain] code:[dataError code] userInfo:augmentedErrorInfo];
[collectedErrors addObject:error];
}
}
else {
/* Set data as extended attribute value */
NSError *xattrError = nil;
BOOL didSet = [self setExtendedAttributeData:data name:name error:&xattrError];
if (!didSet && xattrError && collectedErrors) {
[collectedErrors addObject:xattrError];
}
}
}
}];
/* Did we get any errors? */
BOOL hasErrors = [collectedErrors count] > 0;
if (hasErrors && outError)
{
if ([collectedErrors count] == 1) {
*outError = [collectedErrors lastObject];
} else {
/* Bundle up multiple collected errors using SOUnderlyingErrorsKey */
NSMutableDictionary *errInfo = [NSMutableDictionary dictionary];
[errInfo setObject:NSLocalizedString(@"Failed to set one or more extended attributes.", @"Error message description for SOExtendedAttributesSetValueError.")
forKey:NSLocalizedDescriptionKey];
[errInfo setObject:self forKey:NSURLErrorKey];
[errInfo setObject:collectedErrors forKey:SOUnderlyingErrorsKey];
*outError = [NSError errorWithDomain:SOExtendedAttributesErrorDomain code:SOExtendedAttributesSetValueError userInfo:errInfo];
}
return NO;
}
/* Got here? No errors. */
return YES;
}
#pragma mark - Individual Attributes
- (BOOL) hasExtendedAttributeWithName:(NSString *)name
{
if (!name || [name isEqualToString:@""]) return NO;
NSError *error = nil;
NSArray *attributeNames = [self namesOfExtendedAttributesWithError:&error];
if (!attributeNames)
{
NSLog (@"ERROR: Could not get list of attributes names: %@; %@", error, [error userInfo]);
}
return [attributeNames containsObject:name];
}
- (id) valueOfExtendedAttributeWithName:(NSString *)name error:(NSError * __autoreleasing *)outError
{
if (![self isFileURL]) [NSException raise:NSInternalInconsistencyException format:@"%s only valid on file URLs", __PRETTY_FUNCTION__];
if (!name || [name isEqualToString:@""]) [NSException raise:NSInvalidArgumentException format:@"%s name parameter can't be nil", __PRETTY_FUNCTION__];
id retrievedValue = nil;
NSData *data = [self dataForExtendedAttribute:name error:outError];
if (data) {
retrievedValue = [NSPropertyListSerialization propertyListWithData:data options:NSPropertyListImmutable format:NULL error:outError];
}
return retrievedValue;
}
- (BOOL) setExtendedAttributeValue:(id)value forName:(NSString *)name error:(NSError * __autoreleasing *)outError
{
BOOL didSet = NO;
if (value == nil) {
didSet = [self removeExtendedAttributeWithName:name error:outError];
} else {
didSet = [self setExtendedAttributes:@{name : value} error:outError];
}
return didSet;
}
- (BOOL) removeExtendedAttributeWithName:(NSString *)name error:(NSError * __autoreleasing *)outError
{
if (![self isFileURL]) [NSException raise:NSInternalInconsistencyException format:@"%s only valid on file URLs", __PRETTY_FUNCTION__];
if (!name || [name isEqualToString:@""]) [NSException raise:NSInvalidArgumentException format:@"%s name parameter can't be nil", __PRETTY_FUNCTION__];
int err = removexattr([[self path] fileSystemRepresentation], [name UTF8String], xattrDefaultOptions);
if (err != 0)
{
/* Ignore any ENOATTR error ('attribute not found'), but capture and return all others. */
if (errno != ENOATTR)
{
if (outError) {
NSError *posixError = SOPOSIXErrorForURL(self);
NSMutableDictionary *augmentedErrorInfo = [[posixError userInfo] mutableCopy];
[augmentedErrorInfo setObject:name forKey:SOExtendedAttributeNameKey];
*outError = [NSError errorWithDomain:[posixError domain] code:[posixError code] userInfo:augmentedErrorInfo];
}
return NO;
}
}
return YES;
}
@end
/*
Copyright (c) 2012-2014, Standard Orbit Software, LLC. 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 name of the Standard Orbit Software, LLC nor the names of its 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 HOLDER 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.
*/