Skip to content

Commit e187b00

Browse files
committed
Don't modify MonoImageStorage:raw_data
instead just keep track of the webcil offset in the MonoImageStorage. This introduces a situation where MonoImage:raw_data is different from MonoImageStorage:raw_data. The one to use for accessing IL and metadata is MonoImage:raw_data. The storage pointer is just used by the image loading machinery
1 parent 7c0643d commit e187b00

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

src/mono/mono/metadata/metadata-internals.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,12 @@ typedef struct {
282282
/* Module entry point is _CorDllMain. */
283283
guint8 has_entry_point : 1;
284284
#endif
285+
#ifdef ENABLE_WEBCIL
286+
/* set to a non-zero value when we load a webcil-in-wasm image.
287+
* Note that in that case MonoImage:raw_data is not equal to MonoImageStorage:raw_data
288+
*/
289+
int32_t webcil_section_adjustment;
290+
#endif
285291
} MonoImageStorage;
286292

287293
struct _MonoImage {
@@ -297,7 +303,7 @@ struct _MonoImage {
297303

298304
MonoImageStorage *storage;
299305

300-
/* Aliases storage->raw_data when storage is non-NULL. Otherwise NULL. */
306+
/* Points into storage->raw_data when storage is non-NULL. Otherwise NULL. */
301307
char *raw_data;
302308
guint32 raw_data_len;
303309

src/mono/mono/metadata/webcil-loader.c

+9-5
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,16 @@ webcil_image_load_pe_data (MonoImage *image)
137137
goto invalid_image;
138138
/* HACK! RVAs and debug table entry pointers are from the beginning of the webcil payload. adjust MonoImage:raw_data to point to it */
139139
g_assert (image->ref_count == 1);
140-
g_assert (image->storage->ref.ref == 1);
140+
// NOTE: image->storage->raw_data could be shared if we loaded this image multiple times (for different ALCs, for example)
141+
// Do not adjust image->storage->raw_data.
142+
#ifdef ENABLE_WEBCIL
143+
int32_t old_adjustment;
144+
old_adjustment = mono_atomic_cas_i32 ((volatile gint32*)&image->storage->webcil_section_adjustment, webcil_section_adjustment, 0);
145+
g_assert (old_adjustment == 0 || old_adjustment == webcil_section_adjustment);
146+
#endif
141147
mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_ASSEMBLY, "Adjusting offset image %s [%p].", image->name, image);
142-
image->storage->raw_data += webcil_section_adjustment;
143-
image->storage->raw_data_len -= webcil_section_adjustment;
144-
image->raw_data = image->storage->raw_data;
145-
image->raw_data_len = image->storage->raw_data_len;
148+
image->raw_data += webcil_section_adjustment;
149+
image->raw_data_len -= webcil_section_adjustment;
146150
offset -= webcil_section_adjustment;
147151
// parts of ecma-335 loading depend on 4-byte alignment of the image
148152
g_assertf (((intptr_t)image->raw_data) % 4 == 0, "webcil image %s [%p] raw data %p not 4 byte aligned\n", image->name, image, image->raw_data);

0 commit comments

Comments
 (0)