1 | /* $Id: VBoxPeSetVersion.cpp 42239 2012-07-19 20:40:31Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Change the OS and SubSystem version to 4.0 (VS2010 trick).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include <Windows.h>
|
---|
32 | #include <stdio.h>
|
---|
33 | #include <string.h>
|
---|
34 |
|
---|
35 |
|
---|
36 | /** @todo Rewrite this so it can take options and print out error messages. */
|
---|
37 | int main(int argc, char **argv)
|
---|
38 | {
|
---|
39 | FILE *pFile = fopen(argv[1], "r+b");
|
---|
40 | if (!pFile)
|
---|
41 | return 1;
|
---|
42 | IMAGE_DOS_HEADER MzHdr;
|
---|
43 | if (fread(&MzHdr, sizeof(MzHdr), 1, pFile) != 1)
|
---|
44 | return 2;
|
---|
45 |
|
---|
46 | if (fseek(pFile, MzHdr.e_lfanew, SEEK_SET) != 0)
|
---|
47 | return 3;
|
---|
48 |
|
---|
49 | IMAGE_NT_HEADERS32 NtHdrs;
|
---|
50 | if (fread(&NtHdrs, sizeof(NtHdrs), 1, pFile) != 1)
|
---|
51 | return 4;
|
---|
52 | if (NtHdrs.Signature != IMAGE_NT_SIGNATURE)
|
---|
53 | return 5;
|
---|
54 | if (NtHdrs.FileHeader.Machine != IMAGE_FILE_MACHINE_I386)
|
---|
55 | return 6;
|
---|
56 | if (NtHdrs.OptionalHeader.Magic != IMAGE_NT_OPTIONAL_HDR32_MAGIC)
|
---|
57 | return 7;
|
---|
58 |
|
---|
59 | if (NtHdrs.OptionalHeader.Magic != IMAGE_NT_OPTIONAL_HDR32_MAGIC)
|
---|
60 | return 7;
|
---|
61 |
|
---|
62 | IMAGE_NT_HEADERS32 NtHdrsNew = NtHdrs;
|
---|
63 | if (NtHdrsNew.OptionalHeader.MajorOperatingSystemVersion > 4)
|
---|
64 | {
|
---|
65 | NtHdrsNew.OptionalHeader.MajorOperatingSystemVersion = 4;
|
---|
66 | NtHdrsNew.OptionalHeader.MinorOperatingSystemVersion = 0;
|
---|
67 | }
|
---|
68 | if (NtHdrsNew.OptionalHeader.MajorSubsystemVersion > 4)
|
---|
69 | {
|
---|
70 | NtHdrsNew.OptionalHeader.MajorSubsystemVersion = 4;
|
---|
71 | NtHdrsNew.OptionalHeader.MinorSubsystemVersion = 0;
|
---|
72 | }
|
---|
73 |
|
---|
74 | if (memcmp(&NtHdrsNew, &NtHdrs, sizeof(NtHdrs)))
|
---|
75 | {
|
---|
76 | /** @todo calc checksum. */
|
---|
77 | NtHdrsNew.OptionalHeader.CheckSum = 0;
|
---|
78 |
|
---|
79 | if (fseek(pFile, MzHdr.e_lfanew, SEEK_SET) != 0)
|
---|
80 | return 10;
|
---|
81 | if (fwrite(&NtHdrsNew, sizeof(NtHdrsNew), 1, pFile) != 1)
|
---|
82 | return 11;
|
---|
83 | }
|
---|
84 |
|
---|
85 | if (fclose(pFile) != 0)
|
---|
86 | return 29;
|
---|
87 | return 0;
|
---|
88 | }
|
---|
89 |
|
---|