forked from scrod/nv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FrozenNotation.m
executable file
·226 lines (179 loc) · 6.61 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
//
// FrozenNotation.m
// Notation
//
// Created by Zachary Schneirov on 4/4/06.
/*Copyright (c) 2010, Zachary Schneirov. 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 Notational Velocity nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission. */
#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