-
Notifications
You must be signed in to change notification settings - Fork 405
/
FrozenNotation.m
executable file
·231 lines (181 loc) · 6.63 KB
/
FrozenNotation.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
//
// FrozenNotation.m
// Notation
//
// Created by Zachary Schneirov on 4/4/06.
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
This file is part of Notational Velocity.
Notational Velocity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Notational Velocity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Notational Velocity. If not, see <http://www.gnu.org/licenses/>. */
#import "FrozenNotation.h"
#import "PassphraseRetriever.h"
#import "NSData_transformations.h"
#import "NotationPrefs.h"
@implementation FrozenNotation
- (id)initWithCoder:(NSCoder*)decoder {
if ([decoder containsValueForKey:VAR_STR(prefs)]) {
prefs = [[decoder decodeObjectForKey:VAR_STR(prefs)] retain];
notesData = [[decoder decodeObjectForKey:VAR_STR(notesData)] retain];
deletedNoteSet = [[decoder decodeObjectForKey:VAR_STR(deletedNoteSet)] retain];
} else {
NSLog(@"FrozenNotation: decoding legacy %@", decoder);
prefs = [[decoder decodeObject] retain];
notesData = [[decoder decodeObject] retain];
(void)[decoder decodeObject];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)coder {
if ([coder allowsKeyedCoding]) {
[coder encodeObject:prefs forKey:VAR_STR(prefs)];
[coder encodeObject:notesData forKey:VAR_STR(notesData)];
[coder encodeObject:deletedNoteSet forKey:VAR_STR(deletedNoteSet)];
} else {
[coder encodeObject:prefs];
[coder encodeObject:notesData];
[coder encodeObject:deletedNoteSet];
}
}
- (id)initWithNotes:(NSMutableArray*)notes deletedNotes:(NSMutableSet*)antiNotes prefs:(NotationPrefs*)somePrefs {
if ([super init]) {
notesData = [[NSMutableData alloc] init];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:notesData];
[archiver encodeObject:notes forKey:@"notes"];
[archiver finishEncoding];
[archiver release];
prefs = [somePrefs retain];
deletedNoteSet = [antiNotes retain];
NSMutableData *oldNotesData = notesData;
notesData = [[notesData compressedData] retain];
[oldNotesData release];
//ostensibly to create more entropy in the first blocks, relying on CBC dependency to crack
//[notesData reverseBytes];
if ([somePrefs doesEncryption]) {
//compress?, reverse?, encrypt notesData based on notationprefs
//we also want to have the salt reset here, but that requires knowing the original password
if (![prefs encryptDataInNewSession:notesData]) {
NSLog(@"Couldn't encrypt data!");
return nil;
}
}
if (![notesData length]) {
NSLog(@"%s: empty notesData; returning nil", _cmd);
return nil;
}
}
return self;
}
- (void)dealloc {
[allNotes release];
[notesData release];
[prefs release];
[deletedNoteSet release];
[super dealloc];
}
+ (NSData*)frozenDataWithExistingNotes:(NSMutableArray*)notes
deletedNotes:(NSMutableSet*)antiNotes
prefs:(NotationPrefs*)prefs {
FrozenNotation *frozenNotation = [[FrozenNotation alloc] initWithNotes:notes deletedNotes:antiNotes prefs:prefs];
if (!frozenNotation)
return nil;
NSData *encodedNotationData = [NSKeyedArchiver archivedDataWithRootObject:frozenNotation];
[frozenNotation autorelease];
return encodedNotationData;
}
- (NSMutableArray*)unpackedNotesWithPrefs:(NotationPrefs*)somePrefs returningError:(OSStatus*)err {
//decrypt notesData if necessary, then unarchive
*err = noErr;
@try {
if ([somePrefs doesEncryption]) {
if (![somePrefs decryptDataWithCurrentSettings:notesData]) {
NSLog(@"Error decrypting data!");
*err = kNoAuthErr;
return nil;
}
}
NSMutableData *oldNotesData = notesData;
notesData = [[notesData uncompressedData] retain];
[oldNotesData autorelease];
if (!notesData) {
*err = kCompressionErr;
NSLog(@"Error decompressing data");
return nil;
}
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:notesData];
allNotes = [[unarchiver decodeObjectForKey:@"notes"] retain];
[unarchiver autorelease];
} @catch (NSException *e) {
*err = kCoderErr;
NSLog(@"(VERIFY) Error unarchiving notes from data (%@, %@)", [e name], [e reason]);
return nil;
}
return allNotes;
}
- (NSMutableArray*)unpackedNotesReturningError:(OSStatus*)err {
//decrypt notesData, grabbing password from from keychain or user as necessary, then unarchive
*err = noErr;
if (!allNotes) {
@try {
if ([prefs doesEncryption]) {
BOOL keychainGood = YES;
if (![prefs storesPasswordInKeychain] || !(keychainGood = [prefs canLoadPassphraseData:[prefs passwordDataFromKeychain]])) {
if (!keychainGood) {
//reset keychain identifier in case database file was duplicated and password was changed, and this is the old DB
[prefs forgetKeychainIdentifier];
}
int result = [[PassphraseRetriever retrieverWithNotationPrefs:prefs] loadedUserPassphraseData];
if (!result) {
//must have clicked cancel or equivalent
*err = kPassCanceledErr;
return (nil);
}
//if result is 1, passphrase should already be loaded
}
if (![prefs decryptDataWithCurrentSettings:notesData]) {
NSLog(@"Error decrypting data!");
*err = kNoAuthErr;
return(nil);
}
}
//[notesData reverseBytes];
NSMutableData *oldNotesData = notesData;
notesData = [[notesData uncompressedData] retain];
[oldNotesData autorelease];
if (!notesData) {
*err = kCompressionErr;
NSLog(@"Error decompressing data");
return(nil);
}
BOOL keyedArchiveFailed = NO;
@try {
NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:notesData];
allNotes = [[unarchiver decodeObjectForKey:@"notes"] retain];
[unarchiver autorelease];
} @catch (NSException *e) {
keyedArchiveFailed = YES;
}
if (keyedArchiveFailed)
allNotes = [[NSUnarchiver unarchiveObjectWithData:notesData] retain];
} @catch (NSException *e) {
*err = kCoderErr;
NSLog(@"Error unarchiving notes from data (%@, %@)", [e name], [e reason]);
return(nil);
}
}
return allNotes;
}
- (NSMutableSet*)deletedNotes {
return deletedNoteSet;
}
- (NotationPrefs*)notationPrefs {
return prefs;
}
@end