-
Notifications
You must be signed in to change notification settings - Fork 128
/
MFClient.m
445 lines (370 loc) · 14.8 KB
/
MFClient.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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
//
// MFClient.m
// MacFusion2
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import "MFClient.h"
#import "MFClientFS.h"
#import "MFClientPlugin.h"
#import "MFConstants.h"
#import "MFClientRecent.h"
#import <Security/Security.h>
#import "MFCore.h"
#import "MFLogReader.h"
#import "MFLogging.h"
#import "MFSecurity.h"
#define ORDERING_FILE_PATH @"~/Library/Application Support/Macfusion/Ordering.plist"
@interface MFClient(PrivateAPI)
- (void)storeFilesystem:(MFClientFS *)fs;
- (void)storePlugin:(MFClientPlugin *)plugin;
- (void)removeFilesystem:(MFClientFS *)fs;
- (void)loadOrdering;
- (void)setupKeychainMonitoring;
- (void)writeOrdering;
- (void)initializeIvars;
@property(readwrite, retain) NSMutableArray *persistentFilesystems;
@property(readwrite, retain) NSMutableArray *temporaryFilesystems;
@property(readwrite, retain) NSMutableArray *plugins;
@property(readwrite, retain) NSMutableArray *recents;
@end
@implementation MFClient
static MFClient *sharedClient = nil;
#pragma mark Singleton methods
+ (MFClient *)sharedClient {
if (sharedClient == nil) {
[[self alloc] init];
}
return sharedClient;
}
+ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
if ([key isEqualToString:@"filesystems"] || [key isEqualToString:@"mountedFilesystems"]) {
return [NSSet setWithObjects:@"persistentFilesystems", @"temporaryFilesystems", nil];
} else {
return [super keyPathsForValuesAffectingValueForKey: key];
}
}
+ (MFClient *)allocWithZone:(NSZone *)zone {
if (sharedClient == nil) {
sharedClient = [super allocWithZone: zone];
return sharedClient;
}
return nil;
}
- (void)registerForGeneralNotifications {
NSDistributedNotificationCenter *dnc = [NSDistributedNotificationCenter defaultCenter];
[dnc addObserver:self selector:@selector(handleRecentsUpdatedNotification:) name:kMFRecentsUpdatedNotification object:kMFDNCObject];
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self selector:@selector(handleApplicationTerminatingNotification:) name:NSApplicationWillTerminateNotification object:nil];
}
- (id)init {
self = [super init];
if (self != nil) {
[[MFLogging sharedLogging] setDelegate:self];
[self registerForGeneralNotifications];
[self initializeIvars];
[self setupKeychainMonitoring];
}
return self;
}
- (void)initializeIvars {
plugins = [NSMutableArray array];
recents = [NSMutableArray array];
persistentFilesystems = [NSMutableArray array];
temporaryFilesystems = [NSMutableArray array];
}
- (void)fillInitialStatus {
// Reset everything
[self initializeIvars];
// Fill plugins
NSArray *remotePlugins = [server plugins];
NSArray *remoteFilesystems = [server filesystems];
pluginsDictionary = [NSMutableDictionary dictionaryWithCapacity:10];
for(id remotePlugin in remotePlugins) {
Class PluginClientClass = NSClassFromString([remotePlugin subclassNameForClassName: NSStringFromClass( [MFClientPlugin class ] )]);
if (!PluginClientClass) {
MFLogS(self, @"Problem getting client plugin class for plugin %@", remotePlugin);
PluginClientClass = [MFClientPlugin class];
}
MFClientPlugin *plugin = [[PluginClientClass alloc] initWithRemotePlugin:remotePlugin];
if (plugin) {
[self storePlugin: plugin];
} else {
MFLogS(self, @"Could not init client plugin from server plugin %@", remotePlugin);
}
}
// Fill filesystems
filesystemsDictionary = [NSMutableDictionary dictionaryWithCapacity:10];
for(id remoteFS in remoteFilesystems) {
Class FSClientClass = NSClassFromString([[remoteFS plugin] subclassNameForClassName:NSStringFromClass([MFClientFS class])]);
if (!FSClientClass) {
MFLogS(self, @"Problem getting client fs class for fs %@", remoteFS);
FSClientClass = [MFClientFS class];
}
MFClientPlugin *plugin = [pluginsDictionary objectForKey: [remoteFS pluginID]];
MFClientFS *fs = [FSClientClass clientFSWithRemoteFS: remoteFS clientPlugin: plugin];
if (fs) {
[self storeFilesystem: fs];
}
else {
MFLogSO(self, remoteFS, @"Could not init client fs from server fs %@", remoteFS);
}
}
// Fill Recents
NSMutableArray *recentsFromServer = [[server recents] mutableCopy];
for (NSDictionary *recent in recentsFromServer) {
[[self mutableArrayValueForKey:@"recents"] addObject:[[MFClientRecent alloc] initWithParameterDictionary: recent]];
}
[self loadOrdering];
}
- (BOOL)establishCommunication {
// Set up DO
connection = [NSConnection connectionWithRegisteredName:kMFDistributedObjectName host:nil];
[connection setRequestTimeout:5.0f];
[connection setReplyTimeout:5.0f];
id serverObject = [connection rootProxy];
[serverObject setProtocolForProxy:@protocol(MFServerProtocol)];
server = (id <MFServerProtocol>)serverObject;
[serverObject registerClient: self];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleConnectionDied:) name:NSConnectionDidDieNotification object:connection];
if (serverObject) {
[MFLogReader sharedReader]; // Tell the log reader to update
return YES;
} else {
return NO;
}
}
- (BOOL)setup {
if ([self establishCommunication]) {
[self fillInitialStatus];
return YES;
}
return NO;
}
#pragma mark Server Callback Handling
- (void)noteStatusChangedForFSWithUUID:(NSString *)uuid {
MFClientFS *fs = [self filesystemWithUUID:uuid];
[fs noteStatusInfoChanged];
MFLogSO(self, fs, @"Note status changed for fs %@ to %@", fs, fs.status);
}
- (void)noteParametersChangedForFSWithUUID:(NSString *)uuid {
MFClientFS *fs = [self filesystemWithUUID:uuid];
MFLogSO(self, fs, @"Note parameters changed for fs %@", fs);
[fs noteParametersChanged];
}
- (void)noteFilesystemAddedWithUUID:(NSString *)uuid {
MFLogS(self, @"Note fs added with uuid %@", uuid);
id remoteFilesystem = [server filesystemWithUUID:uuid];
if (![self filesystemWithUUID:uuid]) {
MFClientPlugin *plugin = [pluginsDictionary objectForKey: [remoteFilesystem pluginID]];
MFClientFS *fs = [MFClientFS clientFSWithRemoteFS:remoteFilesystem clientPlugin:plugin];
[self storeFilesystem:fs ];
}
}
- (void)noteFilesystemRemovedWithUUID:(NSString *)uuid {
MFLogS(self, @"Note fs removed with uuid %@", uuid);
MFClientFS *fs = [self filesystemWithUUID:uuid];
[self removeFilesystem: fs];
}
- (void)noteRecentAdded:(NSDictionary *)recentParameters {
[[self mutableArrayValueForKey:@"recents"] addObject:[[MFClientRecent alloc] initWithParameterDictionary: recentParameters ]];
if ([[self recents] count] > 10) {
[[self mutableArrayValueForKey:@"recents"] removeObjectAtIndex: 0];
}
}
#pragma mark Action methods
- (MFClientFS *)newFilesystemWithPlugin:(MFClientPlugin *)plugin {
NSAssert(plugin, @"MFClient asked to make new filesystem with nil plugin");
id newRemoteFS = [server newFilesystemWithPluginName: plugin.ID];
return [self filesystemWithUUID:[newRemoteFS uuid]];
}
- (MFClientFS *)quickMountFilesystemWithURL:(NSURL *)url error:(NSError **)error {
id remoteFS = [server quickMountWithURL:url];
if (!remoteFS) {
NSError *serverError = [server recentError];
if (serverError && error)
*error = serverError;
return nil;
} else {
if ([self filesystemWithUUID:[remoteFS uuid]]) {
return [self filesystemWithUUID:[remoteFS uuid]];
}
MFClientPlugin *plugin = [self pluginWithID: [remoteFS pluginID]];
MFClientFS *newFS = [[MFClientFS alloc] initWithRemoteFS: remoteFS clientPlugin: plugin ];
[self storeFilesystem: newFS];
return newFS;
}
}
- (void)deleteFilesystem:(MFClientFS *)fs {
NSString *uuid = [fs uuid];
[server deleteFilesystemWithUUID:uuid];
}
- (void)handleConnectionDied:(NSNotification *)note {
MFLogS(self, @"Connection died %@", note);
if ([delegate respondsToSelector: @selector(handleConnectionDied)]) {
[delegate handleConnectionDied];
}
}
#pragma mark Recents
- (MFClientFS *)mountRecent:(MFClientRecent *)recent error:(NSError **)error {
NSURL* url = [NSURL URLWithString: recent.descriptionString];
if (url) {
MFClientFS* fs = [self quickMountFilesystemWithURL:url error:error];
if (fs) {
return fs;
}
}
return nil;
}
#pragma mark Security
OSStatus myKeychainCallback ( SecKeychainEvent keychainEvent,
SecKeychainCallbackInfo *info,
void *context ) {
MFClient *self = (MFClient *)context;
// MFLogS(self, @"Keychain callback received event is %d", keychainEvent);
SecKeychainItemRef itemRef = info -> item;
NSString *uuid = mfsecUUIDForKeychainItemRef(itemRef);
MFClientFS *fs = [self filesystemWithUUID:uuid];
if (fs) {
// MFLogS(self, @"Updating secrets for fs %@ due to keychain change", fs);
[fs updateSecrets];
}
return 0;
}
- (void)setupKeychainMonitoring {
SecKeychainEventMask eventMask = kSecUpdateEventMask | kSecAddEventMask;
SecKeychainAddCallback(myKeychainCallback , eventMask, self);
}
#pragma mark Logging
- (void)sendASLMessageDict:(NSDictionary*)messageDict {
[server sendASLMessageDict: messageDict];
}
- (void)recordASLMessageDict:(NSDictionary*)messageDict {
[[MFLogReader sharedReader] recordASLMessageDict: messageDict];
}
#pragma mark Accessors and Setters
- (NSArray *)filesystems {
NSMutableArray *filesystems = [NSMutableArray array];
[filesystems addObjectsFromArray: temporaryFilesystems];
[filesystems addObjectsFromArray: persistentFilesystems];
return [filesystems copy];
}
- (NSArray *)mountedFilesystems {
return [self.filesystems filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"self.isMounted == YES"]];
}
- (void)storePlugin:(MFClientPlugin *)plugin {
NSAssert(plugin && plugin.ID, @"plugin or ID null when storing plugin in MfClient");
[pluginsDictionary setObject: plugin forKey: plugin.ID ];
if ([plugins indexOfObject: plugin] == NSNotFound) {
[[self mutableArrayValueForKey:@"plugins"] addObject: plugin];
}
}
- (void)storeFilesystem:(MFClientFS *)fs {
NSAssert(fs && fs.uuid, @"FS or fs.uuid is nil when storing fs in MFClient");
[filesystemsDictionary setObject: fs forKey: fs.uuid];
if ([fs isPersistent] && [persistentFilesystems indexOfObject: fs] == NSNotFound) {
[[self mutableArrayValueForKey:@"persistentFilesystems"] addObject:fs];
} else if ( (![fs isPersistent]) && [temporaryFilesystems indexOfObject: fs] == NSNotFound) {
[[self mutableArrayValueForKey:@"temporaryFilesystems"] addObject: fs];
}
}
- (void)removeFilesystem:(MFClientFS *)fs {
NSAssert(fs, @"Asked to remove nil fs in MFClient");
[filesystemsDictionary removeObjectForKey: fs.uuid];
if ([fs isPersistent] && [persistentFilesystems indexOfObject: fs] != NSNotFound) {
[[self mutableArrayValueForKey:@"persistentFilesystems"]
removeObject: fs];
} else if (![fs isPersistent] && [temporaryFilesystems indexOfObject: fs] != NSNotFound) {
[[self mutableArrayValueForKey:@"temporaryFilesystems"] removeObject: fs];
}
}
- (MFClientFS *)filesystemWithUUID:(NSString *)uuid {
NSAssert(uuid, @"uuid nil when requesting FS in MFClient");
return [filesystemsDictionary objectForKey:uuid];
}
- (MFClientPlugin *)pluginWithID:(NSString *)anID {
NSAssert(anID, @"id nil when requesting plugin in MFClient");
return [pluginsDictionary objectForKey:anID];
}
# pragma mark UI stuff
- (void)moveUUIDS:(NSArray*)uuids toRow:(NSUInteger)row {
NSMutableArray *filesystemsToInsert = [NSMutableArray array];
NSMutableIndexSet *indexesToDelete = [NSMutableIndexSet indexSet];
for(NSString *uuid in uuids) {
MFClientFS *fs = [self filesystemWithUUID:uuid];
if (fs && [fs isPersistent]) {
[filesystemsToInsert addObject: fs];
[indexesToDelete addIndex: [persistentFilesystems indexOfObject:fs]];
}
}
NSIndexSet *indexesToAdd = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(row, [filesystemsToInsert count])];
BOOL lastRow = (row == [persistentFilesystems count]);
NSMutableArray *updatedFilesystems = [self.persistentFilesystems mutableCopy];
if (lastRow) {
[updatedFilesystems addObjectsFromArray: filesystemsToInsert];
[updatedFilesystems removeObjectsAtIndexes:indexesToDelete];
} else if ([indexesToAdd firstIndex] < [indexesToDelete firstIndex]) {
[updatedFilesystems removeObjectsAtIndexes:indexesToDelete];
[updatedFilesystems insertObjects:filesystemsToInsert
atIndexes:indexesToAdd];
} else {
[updatedFilesystems insertObjects:filesystemsToInsert atIndexes:indexesToAdd];
[updatedFilesystems removeObjectsAtIndexes:indexesToDelete];
}
[self willChangeValueForKey: @"persistentFilesystems"];
persistentFilesystems = updatedFilesystems;
[self didChangeValueForKey: @"persistentFilesystems"];
// Set the ordering correctly now
for(MFClientFS *fs in persistentFilesystems) {
[fs setDisplayOrder: [persistentFilesystems indexOfObject: fs]];
}
[self writeOrdering];
}
- (void)writeOrdering {
NSArray *uuidOrdering = [self.persistentFilesystems valueForKey: @"uuid"];
NSString *fullPath = [ORDERING_FILE_PATH stringByExpandingTildeInPath];
NSString *dirPath = [fullPath stringByDeletingLastPathComponent];
[[NSFileManager defaultManager] createDirectoryAtPath: dirPath withIntermediateDirectories:YES attributes:nil error:NULL];
[uuidOrdering writeToFile: fullPath atomically:YES];
}
- (void)loadOrdering {
NSString *fullPath = [ORDERING_FILE_PATH stringByExpandingTildeInPath];
NSArray *uuidOrdering = [NSArray arrayWithContentsOfFile:fullPath];
if (uuidOrdering) {
for(NSString *uuid in uuidOrdering)
if ([self filesystemWithUUID:uuid]) {
[[self filesystemWithUUID:uuid] setDisplayOrder:[uuidOrdering indexOfObject:uuid]];
}
}
[self willChangeValueForKey: @"persistentFilesystems"];
[persistentFilesystems sortUsingDescriptors:[NSArray arrayWithObject: [[NSSortDescriptor alloc] initWithKey:@"displayOrder" ascending:YES]]];
[self didChangeValueForKey: @"persistentFilesystems"];
}
- (void)handleApplicationTerminatingNotification:(NSNotification *)note {
[server unregisterClient: self];
}
- (NSString *)createMountIconForFilesystem:(MFClientFS *)fs atPath:(NSURL *)dirPathURL {
if (![fs isPersistent]) {
// We shouldn't be creating a mount icon for a non-persistent fs
return nil;
}
NSString *dirPath = [dirPathURL path];
NSString *filename = [NSString stringWithFormat: @"%@.fusion", [fs name]];
NSString *fullPath = [dirPath stringByAppendingPathComponent: filename];
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:[fs uuid], kMFFSUUIDParameter, nil];
[dict writeToFile: fullPath atomically: YES];
NSImage *iconImage = [NSImage imageNamed:@"macfusionIcon.icns"];
[[NSWorkspace sharedWorkspace] setIcon:iconImage forFile:fullPath options:0];
return filename;
}
@synthesize delegate, persistentFilesystems, temporaryFilesystems, plugins, recents;
@end