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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
|
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
iml.c
Abstract:
This module contains routines for creating and accessing Installation
Modification Log files (.IML)
Author:
Steve Wood (stevewo) 15-Jan-1996
Revision History:
--*/
#include "instutil.h"
#include "iml.h"
PWSTR
FormatImlPath(
PWSTR DirectoryPath,
PWSTR InstallationName
)
{
PWSTR ImlPath;
ULONG n;
n = wcslen( DirectoryPath ) + wcslen( InstallationName ) + 8;
ImlPath = HeapAlloc( GetProcessHeap(), 0, (n * sizeof( WCHAR )) );
if (ImlPath != NULL) {
_snwprintf( ImlPath, n, L"%s%s.IML", DirectoryPath, InstallationName );
}
return ImlPath;
}
PINSTALLATION_MODIFICATION_LOGFILE
CreateIml(
PWSTR ImlPath,
BOOLEAN IncludeCreateFileContents
)
{
HANDLE FileHandle;
PINSTALLATION_MODIFICATION_LOGFILE pIml;
pIml = NULL;
FileHandle = CreateFile( ImlPath,
GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ,
NULL,
OPEN_ALWAYS,
0,
NULL
);
if (FileHandle != INVALID_HANDLE_VALUE) {
pIml = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof( *pIml ) );
if (pIml != NULL) {
pIml->Signature = IML_SIGNATURE;
pIml->FileHandle = FileHandle;
pIml->FileOffset = ROUND_UP( sizeof( *pIml ), 8 );
if (IncludeCreateFileContents) {
pIml->Flags = IML_FLAG_CONTAINS_NEWFILECONTENTS;
}
SetFilePointer( pIml->FileHandle, pIml->FileOffset, NULL, FILE_BEGIN );
}
}
return pIml;
}
PINSTALLATION_MODIFICATION_LOGFILE
LoadIml(
PWSTR ImlPath
)
{
HANDLE FileHandle, MappingHandle;
PINSTALLATION_MODIFICATION_LOGFILE pIml;
pIml = NULL;
FileHandle = CreateFile( ImlPath,
GENERIC_READ,
FILE_SHARE_READ,
NULL,
OPEN_EXISTING,
0,
NULL
);
if (FileHandle != INVALID_HANDLE_VALUE) {
MappingHandle = CreateFileMapping( FileHandle,
NULL,
PAGE_READONLY,
0,
0,
NULL
);
CloseHandle( FileHandle );
if (MappingHandle != NULL) {
pIml = MapViewOfFile( MappingHandle,
FILE_MAP_READ,
0,
0,
0
);
CloseHandle( MappingHandle );
if (pIml != NULL) {
if (pIml->Signature != IML_SIGNATURE) {
UnmapViewOfFile( pIml );
pIml = NULL;
SetLastError( ERROR_BAD_FORMAT );
}
}
}
}
return pIml;
}
BOOLEAN
CloseIml(
PINSTALLATION_MODIFICATION_LOGFILE pIml
)
{
HANDLE FileHandle;
BOOLEAN Result;
ULONG BytesWritten;
if (pIml->FileHandle == NULL) {
if (!UnmapViewOfFile( pIml )) {
return FALSE;
}
else {
Result = TRUE;
}
}
else {
FileHandle = pIml->FileHandle;
pIml->FileHandle = NULL;
if (!SetEndOfFile( FileHandle ) ||
SetFilePointer( FileHandle, 0, NULL, FILE_BEGIN ) != 0 ||
!WriteFile( FileHandle,
pIml,
sizeof( *pIml ),
&BytesWritten,
NULL
) ||
BytesWritten != sizeof( *pIml )
) {
Result = FALSE;
}
else {
Result = TRUE;
}
CloseHandle( FileHandle );
}
return Result;
}
POFFSET
ImlWrite(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
PVOID p,
ULONG Size
)
{
POFFSET Result;
ULONG BytesWritten;
if (!WriteFile( pIml->FileHandle,
p,
Size,
&BytesWritten,
NULL
) ||
BytesWritten != Size
) {
return 0;
}
Result = pIml->FileOffset;
pIml->FileOffset += ROUND_UP( Size, 8 );
SetFilePointer( pIml->FileHandle,
pIml->FileOffset,
NULL,
FILE_BEGIN
);
return Result;
}
POFFSET
ImlWriteString(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
PWSTR Name
)
{
if (Name == NULL) {
return 0;
}
else {
return ImlWrite( pIml, Name, (wcslen( Name ) + 1) * sizeof( WCHAR ) );
}
}
POFFSET
ImlWriteFileContents(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
PWSTR FileName
)
{
HANDLE hFindFirst, hFile, hMapping;
WIN32_FIND_DATA FindFileData;
PVOID p;
IML_FILE_RECORD_CONTENTS ImlFileContentsRecord;
hFindFirst = FindFirstFile( FileName, &FindFileData );
if (hFindFirst == INVALID_HANDLE_VALUE) {
return 0;
}
FindClose( hFindFirst );
ImlFileContentsRecord.LastWriteTime = FindFileData.ftLastWriteTime;
ImlFileContentsRecord.FileAttributes = FindFileData.dwFileAttributes;
if (!(ImlFileContentsRecord.FileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
ImlFileContentsRecord.FileSize = FindFileData.nFileSizeLow;
hFile = CreateFile( FileName,
GENERIC_READ,
FILE_SHARE_READ,
NULL,
OPEN_EXISTING,
0,
NULL
);
if (hFile == INVALID_HANDLE_VALUE) {
printf( "*** CreateFile( '%ws' ) failed (%u)\n", FileName, GetLastError() );
return 0;
}
if (ImlFileContentsRecord.FileSize != 0) {
hMapping = CreateFileMapping( hFile,
NULL,
PAGE_READONLY,
0,
0,
NULL
);
CloseHandle( hFile );
hFile = NULL;
if (hMapping == NULL) {
printf( "*** CreateFileMapping( '%ws' ) failed (%u)\n", FileName, GetLastError() );
return 0;
}
p = MapViewOfFile( hMapping,
FILE_MAP_READ,
0,
0,
0
);
CloseHandle( hMapping );
if (p == NULL) {
printf( "*** MapViewOfFile( '%ws' ) failed (%u)\n", FileName, GetLastError() );
return 0;
}
}
else {
CloseHandle( hFile );
p = NULL;
}
}
else {
ImlFileContentsRecord.FileSize = 0;
p = NULL;
}
ImlFileContentsRecord.Contents = ImlWrite( pIml, p, ImlFileContentsRecord.FileSize );
if (p != NULL) {
UnmapViewOfFile( p );
}
return ImlWrite( pIml,
&ImlFileContentsRecord,
sizeof( ImlFileContentsRecord )
);
}
BOOLEAN
ImlAddFileRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_FILE_ACTION Action,
PWSTR Name,
PWSTR BackupFileName,
PFILETIME BackupLastWriteTime,
DWORD BackupFileAttributes
)
{
IML_FILE_RECORD ImlFileRecord;
IML_FILE_RECORD_CONTENTS ImlFileContentsRecord;
memset( &ImlFileRecord, 0, sizeof( ImlFileRecord ) );
ImlFileRecord.Action = Action;
ImlFileRecord.Name = ImlWriteString( pIml, Name );
if (Action == CreateNewFile) {
if ((pIml->Flags & IML_FLAG_CONTAINS_NEWFILECONTENTS) != 0) {
ImlFileRecord.NewFile = ImlWriteFileContents( pIml, Name );
}
}
else
if (Action == ModifyOldFile ||
Action == DeleteOldFile
) {
if (BackupFileName != NULL) {
ImlFileRecord.OldFile = ImlWriteFileContents( pIml, BackupFileName );
}
if (Action == ModifyOldFile &&
(pIml->Flags & IML_FLAG_CONTAINS_NEWFILECONTENTS) != 0
) {
ImlFileRecord.NewFile = ImlWriteFileContents( pIml, Name );
}
}
else {
ImlFileContentsRecord.LastWriteTime = *BackupLastWriteTime;
ImlFileContentsRecord.FileAttributes = BackupFileAttributes;
ImlFileContentsRecord.FileSize = 0;
ImlFileContentsRecord.Contents = 0;
ImlFileRecord.OldFile = ImlWrite( pIml,
&ImlFileContentsRecord,
sizeof( ImlFileContentsRecord )
);
}
ImlFileRecord.Next = pIml->FileRecords;
pIml->FileRecords = ImlWrite( pIml, &ImlFileRecord, sizeof( ImlFileRecord ) );
pIml->NumberOfFileRecords += 1;
return TRUE;
}
BOOLEAN
ImlAddValueRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_VALUE_ACTION Action,
PWSTR Name,
DWORD ValueType,
ULONG ValueLength,
PVOID ValueData,
DWORD BackupValueType,
ULONG BackupValueLength,
PVOID BackupValueData,
POFFSET *Values
)
{
IML_VALUE_RECORD ImlValueRecord;
IML_VALUE_RECORD_CONTENTS ImlValueContentsRecord;
memset( &ImlValueRecord, 0, sizeof( ImlValueRecord ) );
ImlValueRecord.Action = Action;
ImlValueRecord.Name = ImlWriteString( pIml, Name );
if (Action != DeleteOldValue) {
ImlValueContentsRecord.Type = ValueType;
ImlValueContentsRecord.Length = ValueLength;
ImlValueContentsRecord.Data = ImlWrite( pIml, ValueData, ValueLength );
ImlValueRecord.NewValue = ImlWrite( pIml,
&ImlValueContentsRecord,
sizeof( ImlValueContentsRecord )
);
}
if (Action != CreateNewValue) {
ImlValueContentsRecord.Type = BackupValueType;
ImlValueContentsRecord.Length = BackupValueLength;
ImlValueContentsRecord.Data = ImlWrite( pIml, BackupValueData, BackupValueLength );
ImlValueRecord.OldValue = ImlWrite( pIml,
&ImlValueContentsRecord,
sizeof( ImlValueContentsRecord )
);
}
ImlValueRecord.Next = *Values;
*Values = ImlWrite( pIml, &ImlValueRecord, sizeof( ImlValueRecord ) );
return TRUE;
}
BOOLEAN
ImlAddKeyRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_KEY_ACTION Action,
PWSTR Name,
POFFSET Values
)
{
IML_KEY_RECORD ImlKeyRecord;
memset( &ImlKeyRecord, 0, sizeof( ImlKeyRecord ) );
ImlKeyRecord.Action = Action;
ImlKeyRecord.Name = ImlWriteString( pIml, Name );
ImlKeyRecord.Values = Values;
ImlKeyRecord.Next = pIml->KeyRecords;
pIml->KeyRecords = ImlWrite( pIml, &ImlKeyRecord, sizeof( ImlKeyRecord ) );
pIml->NumberOfKeyRecords += 1;
return TRUE;
}
BOOLEAN
ImlAddIniVariableRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_INIVARIABLE_ACTION Action,
PWSTR Name,
PWSTR OldValue,
PWSTR NewValue,
POFFSET *Variables
)
{
IML_INIVARIABLE_RECORD ImlIniVariableRecord;
memset( &ImlIniVariableRecord, 0, sizeof( ImlIniVariableRecord ) );
ImlIniVariableRecord.Action = Action;
ImlIniVariableRecord.Name = ImlWriteString( pIml, Name );
ImlIniVariableRecord.OldValue = ImlWriteString( pIml, OldValue );
ImlIniVariableRecord.NewValue = ImlWriteString( pIml, NewValue );
ImlIniVariableRecord.Next = *Variables;
*Variables = ImlWrite( pIml, &ImlIniVariableRecord, sizeof( ImlIniVariableRecord ) );
return TRUE;
}
BOOLEAN
ImlAddIniSectionRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_INISECTION_ACTION Action,
PWSTR Name,
POFFSET Variables,
POFFSET *Sections
)
{
IML_INISECTION_RECORD ImlIniSectionRecord;
memset( &ImlIniSectionRecord, 0, sizeof( ImlIniSectionRecord ) );
ImlIniSectionRecord.Action = Action;
ImlIniSectionRecord.Name = ImlWriteString( pIml, Name );
ImlIniSectionRecord.Variables = Variables;
ImlIniSectionRecord.Next = *Sections;
*Sections = ImlWrite( pIml, &ImlIniSectionRecord, sizeof( ImlIniSectionRecord ) );
return TRUE;
}
BOOLEAN
ImlAddIniRecord(
PINSTALLATION_MODIFICATION_LOGFILE pIml,
IML_INI_ACTION Action,
PWSTR Name,
PFILETIME BackupLastWriteTime,
POFFSET Sections
)
{
IML_INI_RECORD ImlIniRecord;
memset( &ImlIniRecord, 0, sizeof( ImlIniRecord ) );
ImlIniRecord.Action = Action;
ImlIniRecord.Name = ImlWriteString( pIml, Name );
ImlIniRecord.LastWriteTime = *BackupLastWriteTime;
ImlIniRecord.Sections = Sections;
ImlIniRecord.Next = pIml->IniRecords;
pIml->IniRecords = ImlWrite( pIml, &ImlIniRecord, sizeof( ImlIniRecord ) );
pIml->NumberOfIniRecords += 1;
return TRUE;
}
|