2006-06-15 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / metadata-internals.h
1
2 #ifndef __MONO_METADATA_INTERNALS_H__
3 #define __MONO_METADATA_INTERNALS_H__
4
5 #include "mono/metadata/image.h"
6 #include "mono/metadata/blob.h"
7 #include "mono/metadata/mempool.h"
8 #include "mono/metadata/domain-internals.h"
9 #include "mono/utils/mono-hash.h"
10 #include "mono/utils/mono-compiler.h"
11 #include "mono/utils/monobitset.h"
12
13 struct _MonoAssembly {
14         /* 
15          * The number of appdomains which have this assembly loaded plus the number of 
16          * assemblies referencing this assembly through an entry in their image->references
17          * arrays. The later is needed because entries in the image->references array
18          * might point to assemblies which are only loaded in some appdomains, and without
19          * the additional reference, they can be freed at any time.
20          * The ref_count is initially 0.
21          */
22         int ref_count; /* use atomic operations only */
23         char *basedir;
24         MonoAssemblyName aname;
25         GModule *aot_module;
26         MonoImage *image;
27         GSList *friend_assembly_names;
28         guint8 in_gac;
29         guint8 dynamic;
30         guint8 corlib_internal;
31         gboolean ref_only;
32         /* security manager flags (one bit is for lazy initialization) */
33         guint32 ecma:2;         /* Has the ECMA key */
34         guint32 aptc:2;         /* Has the [AllowPartiallyTrustedCallers] attributes */
35         guint32 fulltrust:2;    /* Has FullTrust permission */
36         guint32 unmanaged:2;    /* Has SecurityPermissionFlag.UnmanagedCode permission */
37 };
38
39 typedef struct {
40         const char* data;
41         guint32  size;
42 } MonoStreamHeader;
43
44 struct _MonoTableInfo {
45         const char *base;
46         guint       rows     : 24;
47         guint       row_size : 8;
48
49         /*
50          * Tables contain up to 9 columns and the possible sizes of the
51          * fields in the documentation are 1, 2 and 4 bytes.  So we
52          * can encode in 2 bits the size.
53          *
54          * A 32 bit value can encode the resulting size
55          *
56          * The top eight bits encode the number of columns in the table.
57          * we only need 4, but 8 is aligned no shift required. 
58          */
59         guint32   size_bitfield;
60 };
61
62 #define REFERENCE_MISSING ((gpointer) -1)
63
64 struct _MonoImage {
65         /*
66          * The number of assemblies which reference this MonoImage though their 'image'
67          * field plus the number of images which reference this MonoImage through their 
68          * 'modules' field, plus the number of threads holding temporary references to
69          * this image between calls of mono_image_open () and mono_image_close ().
70          */
71         int   ref_count;
72         FILE *file_descr;
73         /* if file_descr is NULL the image was loaded from raw data */
74         char *raw_data;
75         guint32 raw_data_len;
76         guint8 raw_data_allocated;
77
78         /* Whenever this is a dynamically emitted module */
79         guint8 dynamic;
80
81         /* Whenever this is a reflection only image */
82         guint8 ref_only;
83
84         char *name;
85         const char *assembly_name;
86         const char *module_name;
87         char *version;
88         gint16 md_version_major, md_version_minor;
89         char *guid;
90         void *image_info;
91         MonoMemPool         *mempool;
92
93         char                *raw_metadata;
94                             
95         guint8               idx_string_wide, idx_guid_wide, idx_blob_wide;
96                             
97         MonoStreamHeader     heap_strings;
98         MonoStreamHeader     heap_us;
99         MonoStreamHeader     heap_blob;
100         MonoStreamHeader     heap_guid;
101         MonoStreamHeader     heap_tables;
102                             
103         const char          *tables_base;
104
105         /**/
106         MonoTableInfo        tables [MONO_TABLE_NUM];
107
108         /*
109          * references is initialized only by using the mono_assembly_open
110          * function, and not by using the lowlevel mono_image_open.
111          *
112          * It is NULL terminated.
113          */
114         MonoAssembly **references;
115
116         MonoImage **modules;
117         guint32 module_count;
118
119         MonoImage **files;
120
121         /*
122          * The Assembly this image was loaded from.
123          */
124         MonoAssembly *assembly;
125
126         /*
127          * Indexed by method tokens and typedef tokens.
128          */
129         GHashTable *method_cache;
130         GHashTable *class_cache;
131         /*
132          * Indexed by fielddef and memberref tokens
133          */
134         GHashTable *field_cache;
135
136         /* indexed by typespec tokens. */
137         GHashTable *typespec_cache;
138         /* indexed by token */
139         GHashTable *memberref_signatures;
140         GHashTable *helper_signatures;
141
142         /* Indexed by blob heap indexes */
143         GHashTable *method_signatures;
144
145         /*
146          * Indexes namespaces to hash tables that map class name to typedef token.
147          */
148         GHashTable *name_cache;
149
150         /*
151          * Indexed by MonoClass
152          */
153         GHashTable *array_cache;
154         GHashTable *ptr_cache;
155
156         /*
157          * indexed by MonoMethodSignature 
158          */
159         GHashTable *delegate_begin_invoke_cache;
160         GHashTable *delegate_end_invoke_cache;
161         GHashTable *delegate_invoke_cache;
162
163         /*
164          * indexed by MonoMethod pointers 
165          */
166         GHashTable *runtime_invoke_cache;
167         GHashTable *managed_wrapper_cache;
168         GHashTable *native_wrapper_cache;
169         GHashTable *remoting_invoke_cache;
170         GHashTable *synchronized_cache;
171         GHashTable *unbox_wrapper_cache;
172
173         /*
174          * indexed by MonoClass pointers
175          */
176         GHashTable *ldfld_wrapper_cache;
177         GHashTable *ldflda_wrapper_cache;
178         GHashTable *ldfld_remote_wrapper_cache;
179         GHashTable *stfld_wrapper_cache;
180         GHashTable *stfld_remote_wrapper_cache;
181         GHashTable *isinst_cache;
182         GHashTable *castclass_cache;
183         GHashTable *proxy_isinst_cache;
184
185         void *reflection_info;
186
187         /*
188          * user_info is a public field and is not touched by the
189          * metadata engine
190          */
191         void *user_info;
192
193         /* dll map entries */
194         GHashTable *dll_map;
195
196         /* interfaces IDs from this image */
197         MonoBitSet *interface_bitset;
198 };
199
200 enum {
201         MONO_SECTION_TEXT,
202         MONO_SECTION_RSRC,
203         MONO_SECTION_RELOC,
204         MONO_SECTION_MAX
205 };
206
207 typedef struct {
208         GHashTable *hash;
209         char *data;
210         guint32 alloc_size; /* malloced bytes */
211         guint32 index;
212         guint32 offset; /* from start of metadata */
213 } MonoDynamicStream;
214
215 typedef struct {
216         guint32 alloc_rows;
217         guint32 rows;
218         guint8  row_size; /*  calculated later with column_sizes */
219         guint8  columns;
220         guint32 next_idx;
221         guint32 *values; /* rows * columns */
222 } MonoDynamicTable;
223
224 struct _MonoDynamicAssembly {
225         MonoAssembly assembly;
226         char *strong_name;
227         guint32 strong_name_size;
228         guint8 run;
229         guint8 save;
230 };
231
232 struct _MonoDynamicImage {
233         MonoImage image;
234         guint32 meta_size;
235         guint32 text_rva;
236         guint32 metadata_rva;
237         guint32 image_base;
238         guint32 cli_header_offset;
239         guint32 iat_offset;
240         guint32 idt_offset;
241         guint32 ilt_offset;
242         guint32 imp_names_offset;
243         struct {
244                 guint32 rva;
245                 guint32 size;
246                 guint32 offset;
247                 guint32 attrs;
248         } sections [MONO_SECTION_MAX];
249         GHashTable *typespec;
250         GHashTable *typeref;
251         GHashTable *handleref;
252         MonoGHashTable *tokens;
253         GHashTable *blob_cache;
254         GList *array_methods;
255         GPtrArray *gen_params;
256         MonoGHashTable *token_fixups;
257         GHashTable *method_to_table_idx;
258         GHashTable *field_to_table_idx;
259         GHashTable *method_aux_hash;
260         gboolean run;
261         gboolean save;
262         gboolean initial_image;
263         guint32 pe_kind, machine;
264         char *strong_name;
265         guint32 strong_name_size;
266         char *win32_res;
267         guint32 win32_res_size;
268         MonoDynamicStream sheap;
269         MonoDynamicStream code; /* used to store method headers and bytecode */
270         MonoDynamicStream resources; /* managed embedded resources */
271         MonoDynamicStream us;
272         MonoDynamicStream blob;
273         MonoDynamicStream tstream;
274         MonoDynamicStream guid;
275         MonoDynamicTable tables [MONO_TABLE_NUM];
276 };
277
278 /* Contains information about assembly binding */
279 typedef struct _MonoAssemblyBindingInfo {
280         char *name;
281         char *culture;
282         guchar public_key_token [MONO_PUBLIC_KEY_TOKEN_LENGTH];
283         int major;
284         int minor;
285         AssemblyVersionSet old_version_bottom;
286         AssemblyVersionSet old_version_top;
287         AssemblyVersionSet new_version;
288         guint has_old_version_bottom : 1;
289         guint has_old_version_top : 1;
290         guint has_new_version : 1;
291         guint is_valid : 1;
292 } MonoAssemblyBindingInfo;
293
294 struct _MonoMethodHeader {
295         guint32      code_size;
296         const unsigned char  *code;
297         guint16      max_stack;
298         unsigned int num_clauses : 15;
299         /* if num_locals != 0, then the following apply: */
300         unsigned int init_locals : 1;
301         guint16      num_locals;
302         MonoExceptionClause *clauses;
303         MonoType    *locals [MONO_ZERO_LEN_ARRAY];
304 };
305
306 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
307 guint mono_aligned_addr_hash (gconstpointer ptr) MONO_INTERNAL;
308
309 void
310 mono_metadata_cleanup (void);
311
312 const char *   mono_meta_table_name              (int table) MONO_INTERNAL;
313 void           mono_metadata_compute_table_bases (MonoImage *meta) MONO_INTERNAL;
314
315 gboolean
316 mono_metadata_interfaces_from_typedef_full  (MonoImage             *image,
317                                                                                          guint32                table_index,
318                                                                                          MonoClass           ***interfaces,
319                                                                                          guint                 *count,
320                                                                                          MonoGenericContext    *context) MONO_INTERNAL;
321
322 MonoArrayType *
323 mono_metadata_parse_array_full              (MonoImage             *image,
324                                              MonoGenericContainer  *container,
325                                              const char            *ptr,
326                                              const char           **rptr) MONO_INTERNAL;
327
328 MonoType *
329 mono_metadata_parse_type_full               (MonoImage             *image,
330                                              MonoGenericContainer  *container,
331                                              MonoParseTypeMode      mode,
332                                              short                  opt_attrs,
333                                              const char            *ptr,
334                                              const char           **rptr);
335
336 MonoMethodSignature *
337 mono_metadata_parse_signature_full          (MonoImage             *image,
338                                              MonoGenericContainer  *generic_container,
339                                              guint32                token) MONO_INTERNAL;
340
341 MonoMethodSignature *
342 mono_metadata_parse_method_signature_full   (MonoImage             *image,
343                                              MonoGenericContainer  *generic_container,
344                                              int                     def,
345                                              const char             *ptr,
346                                              const char            **rptr);
347
348 MonoMethodHeader *
349 mono_metadata_parse_mh_full                 (MonoImage             *image,
350                                              MonoGenericContainer  *container,
351                                              const char            *ptr);
352
353 int* mono_metadata_get_param_attrs          (MonoImage *m, int def);
354
355 guint
356 mono_metadata_generic_method_hash           (MonoGenericMethod     *gmethod) MONO_INTERNAL;
357
358 gboolean
359 mono_metadata_generic_method_equal          (MonoGenericMethod     *g1,
360                                              MonoGenericMethod     *g2) MONO_INTERNAL;
361
362 MonoGenericInst *
363 mono_metadata_parse_generic_inst            (MonoImage             *image,
364                                              MonoGenericContainer  *container,
365                                              int                    count,
366                                              const char            *ptr,
367                                              const char           **rptr) MONO_INTERNAL;
368
369 MonoGenericInst *
370 mono_metadata_lookup_generic_inst           (MonoGenericInst       *ginst) MONO_INTERNAL;
371
372 MonoGenericClass *
373 mono_metadata_lookup_generic_class          (MonoGenericClass      *gclass) MONO_INTERNAL;
374
375 MonoGenericInst *
376 mono_metadata_inflate_generic_inst          (MonoGenericInst       *ginst,
377                                              MonoGenericContext    *context) MONO_INTERNAL;
378
379 void mono_dynamic_stream_reset (MonoDynamicStream* stream) MONO_INTERNAL;
380 void mono_assembly_addref      (MonoAssembly *assembly) MONO_INTERNAL;
381
382 void mono_config_parse_publisher_policy (const char *filename, MonoAssemblyBindingInfo *binding_info) MONO_INTERNAL;
383
384 gboolean
385 mono_assembly_name_parse_full                (const char           *name,
386                                               MonoAssemblyName     *aname,
387                                               gboolean save_public_key,
388                                               gboolean *is_version_defined) MONO_INTERNAL;
389
390 guint32 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner);
391
392 void mono_unload_interface_ids (MonoBitSet *bitset) MONO_INTERNAL;
393
394 #endif /* __MONO_METADATA_INTERNALS_H__ */
395