2008-12-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / Mono.Cecil / Mono.Cecil / AssemblyStripper.cs
1 //
2 // AssemblyStripper.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@novell.com)
6 //
7 // (C) 2008 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.Collections;
30 using System.IO;
31
32 using Mono.Cecil.Binary;
33 using Mono.Cecil.Cil;
34 using Mono.Cecil.Metadata;
35
36 namespace Mono.Cecil {
37
38         class AssemblyStripper {
39
40                 AssemblyDefinition assembly;
41                 BinaryWriter writer;
42
43                 Image original;
44                 Image stripped;
45
46                 ReflectionWriter reflection_writer;
47                 MetadataWriter metadata_writer;
48
49                 TablesHeap original_tables;
50                 TablesHeap stripped_tables;
51
52                 AssemblyStripper (AssemblyDefinition assembly, BinaryWriter writer)
53                 {
54                         this.assembly = assembly;
55                         this.writer = writer;
56                 }
57
58                 void Strip ()
59                 {
60                         FullLoad ();
61                         ClearMethodBodies ();
62                         CopyOriginalImage ();
63                         PatchMethods ();
64                         PatchFields ();
65                         PatchResources ();
66                         Write ();
67                 }
68
69                 void FullLoad ()
70                 {
71                         assembly.MainModule.FullLoad ();
72                 }
73
74                 void ClearMethodBodies ()
75                 {
76                         foreach (TypeDefinition type in assembly.MainModule.Types) {
77                                 ClearMethodBodies (type.Constructors);
78                                 ClearMethodBodies (type.Methods);
79                         }
80                 }
81
82                 static void ClearMethodBodies (ICollection methods)
83                 {
84                         foreach (MethodDefinition method in methods) {
85                                 if (!method.HasBody)
86                                         continue;
87
88                                 method.Body.ExceptionHandlers.Clear();
89                                 method.Body.Variables.Clear ();
90                                 method.Body.Instructions.Clear ();
91                                 method.Body.CilWorker.Emit (OpCodes.Ret);
92                         }
93                 }
94
95                 void CopyOriginalImage ()
96                 {
97                         original = assembly.MainModule.Image;
98                         stripped = Image.CreateImage();
99
100                         stripped.Accept (new CopyImageVisitor (original));
101
102                         assembly.MainModule.Image = stripped;
103
104                         original_tables = original.MetadataRoot.Streams.TablesHeap;
105                         stripped_tables = stripped.MetadataRoot.Streams.TablesHeap;
106
107                         TableCollection tables = original_tables.Tables;
108                         foreach (IMetadataTable table in tables)
109                                 stripped_tables.Tables.Add(table);
110
111                         stripped_tables.Valid = original_tables.Valid;
112                         stripped_tables.Sorted = original_tables.Sorted;
113
114                         reflection_writer = new ReflectionWriter (assembly.MainModule);
115                         reflection_writer.StructureWriter = new StructureWriter (assembly, writer);
116                         reflection_writer.CodeWriter.Stripped = true;
117
118                         metadata_writer = reflection_writer.MetadataWriter;
119
120                         PatchHeap (metadata_writer.StringWriter, original.MetadataRoot.Streams.StringsHeap);
121                         PatchHeap (metadata_writer.GuidWriter, original.MetadataRoot.Streams.GuidHeap);
122                         PatchHeap (metadata_writer.UserStringWriter, original.MetadataRoot.Streams.UserStringsHeap);
123                         PatchHeap (metadata_writer.BlobWriter, original.MetadataRoot.Streams.BlobHeap);
124
125                         if (assembly.EntryPoint != null)
126                                 metadata_writer.EntryPointToken = assembly.EntryPoint.MetadataToken.ToUInt ();
127                 }
128
129                 static void PatchHeap (MemoryBinaryWriter heap_writer, MetadataHeap heap)
130                 {
131                         heap_writer.BaseStream.Position = 0;
132                         heap_writer.Write (heap.Data);
133                 }
134
135                 void PatchMethods ()
136                 {
137                         MethodTable methodTable = (MethodTable) stripped_tables [MethodTable.RId];
138                         if (methodTable == null)
139                                 return;
140
141                         for (int i = 0; i < methodTable.Rows.Count; i++) {
142                                 MethodRow methodRow = methodTable[i];
143
144                                 MetadataToken methodToken = MetadataToken.FromMetadataRow (TokenType.Method, i);
145
146                                 MethodDefinition method = (MethodDefinition) assembly.MainModule.LookupByToken (methodToken);
147
148                                 methodRow.RVA = reflection_writer.CodeWriter.WriteMethodBody (method);
149                         }
150                 }
151
152                 void PatchFields ()
153                 {
154                         FieldRVATable fieldRvaTable = (FieldRVATable) stripped_tables [FieldRVATable.RId];
155                         if (fieldRvaTable == null)
156                                 return;
157
158                         for (int i = 0; i < fieldRvaTable.Rows.Count; i++) {
159                                 FieldRVARow fieldRvaRow = fieldRvaTable [i];
160
161                                 MetadataToken fieldToken = new MetadataToken (TokenType.Field, fieldRvaRow.Field);
162
163                                 FieldDefinition field = (FieldDefinition) assembly.MainModule.LookupByToken (fieldToken);
164
165                                 fieldRvaRow.RVA = metadata_writer.GetDataCursor ();
166                                 metadata_writer.AddData (field.InitialValue.Length + 3 & (~3));
167                                 metadata_writer.AddFieldInitData (field.InitialValue);
168                         }
169                 }
170
171                 void PatchResources ()
172                 {
173                         ManifestResourceTable resourceTable = (ManifestResourceTable) stripped_tables [ManifestResourceTable.RId];
174                         if (resourceTable == null)
175                                 return;
176
177                         for (int i = 0; i < resourceTable.Rows.Count; i++) {
178                                 ManifestResourceRow resourceRow = resourceTable [i];
179
180                                 if (resourceRow.Implementation.RID != 0)
181                                         continue;
182
183                                 foreach (Resource resource in assembly.MainModule.Resources) {
184                                         EmbeddedResource er = resource as EmbeddedResource;
185                                         if (er == null)
186                                                 continue;
187
188                                         if (resource.Name != original.MetadataRoot.Streams.StringsHeap [resourceRow.Name])
189                                                 continue;
190
191                                         resourceRow.Offset = metadata_writer.AddResource (er.Data);
192                                 }
193                         }
194                 }
195
196                 void Write ()
197                 {
198                         stripped.MetadataRoot.Accept (metadata_writer);
199                 }
200
201                 public static void StripAssembly (AssemblyDefinition assembly, string file)
202                 {
203                         using (FileStream fs = new FileStream (file, FileMode.Create, FileAccess.Write, FileShare.None)) {
204                                 new AssemblyStripper (assembly, new BinaryWriter (fs)).Strip ();
205                         }
206                 }
207         }
208 }