3 * The main entry point for the mono executable
5 * The main entry point does a few things:
7 * * It probes whether the executable has a bundle appended
8 * at the end, and if so, registers the various bundled
9 * resources with Mono and executes the contained bundle
11 * * Parses the MONO_ENV_OPTIONS variable to treat the
12 * contents of the variable as command line arguments for
15 * * Launches Mono, by calling mono_main.
22 #include <mono/metadata/assembly.h>
23 #include <mono/metadata/mono-config.h>
24 #include <mono/utils/mono-mmap.h>
25 #include <mono/utils/mono-dl.h>
27 #include "mini-runtime.h"
35 # ifndef BUILDVER_INCLUDED
36 # include "buildver-boehm.h"
41 * If the MONO_ENV_OPTIONS environment variable is set, it uses this as a
42 * source of command line arguments that are passed to Mono before the
43 * command line arguments specified in the command line.
46 mono_main_with_options (int argc
, char *argv
[])
48 mono_parse_env_options (&argc
, &argv
);
50 return mono_main (argc
, argv
);
54 * The Mono executable can initialize itself from a payload attached
55 * at the end of the main program. The payload contains the
56 * main assembly, one or more managed assemblies, configuration
57 * files and other assets that are used instead of launching a
58 * program from the command line.
60 * The startup sequence probes for a magical signature at the end of
61 * the executable, if the 16 characters "xmonkeysloveplay" are found,
62 * the code expects the 64-bits just before it to contain an offset
63 * within the executable with a directory of assets.
65 * All pointers in the file format are encoded as little-endian values
67 * The format of the file is thus:
71 * lenght-16 Optional "xmonkeysloveplay", indicating that a
72 * bundled payload is contained in the executable.
73 * length-24 pointer to the directory in the file, address DIR
75 * DIR 32-bit value with the number of entries in the directory
76 * DIR+4 First directory entry.
78 * Each directory entry is made up of:
79 * 4-bytes uint32_t containing the size of a string (STR)
80 * STRING UTF8 encoded and \0 terminated string
81 * 8-bytes uint64_t offset in the file with the payload associated with STRING
82 * 4-bytes uint32_t size of the asset
84 * The following are the known directory entries, without the quotes:
85 * "assembly:NAME" An assembly with the name NAME, assembly is in the payload
86 * "config:NAME" A configuration file (usually file.dll.config) in the payload that is
87 * loaded as the config file for an assembly
88 * "systemconfig:" Treats as a Mono system configuration, payload contains the config file.
89 * "options:" The payload contains command line options to initialize Mono, as if you
90 had set them on MONO_ENV_OPTIONS
91 * "config_dir:DIR" Configures the MONO_PATH to point to point to DIR
92 * "machineconfig:" The payload contains the machine.config file to use at runtime
93 * "env:" Sets the environment variable to the value encoded in the payload
94 * payload contains: 1-byte lenght for the \0 terminated variable,
95 * followed by the value.
96 * "library:NAME" Bundled dynamic library NAME, payload contains the dynamic library
98 #define STREAM_INT(x) GUINT32_TO_LE((*(uint32_t*)x))
99 #define STREAM_LONG(x) GUINT64_TO_LE((*(uint64_t*)x))
102 * Loads a chunk of data from the file pointed to by the
103 * @fd starting at the file offset @offset for @size bytes
104 * and returns an allocated version of that string, or NULL
108 load_from_region (int fd
, uint64_t offset
, uint64_t size
)
115 loc
= lseek (fd
, offset
, SEEK_SET
);
116 } while (loc
== -1 && errno
== EINTR
);
119 buffer
= g_malloc (size
+ 1);
124 status
= read (fd
, buffer
, size
);
125 } while (status
== -1 && errno
== EINTR
);
133 /* Did we initialize the temporary directory for dynamic libraries */
134 static int bundle_save_library_initialized
;
136 /* List of bundled libraries we unpacked */
137 static GSList
*bundle_library_paths
;
139 /* Directory where we unpacked dynamic libraries */
140 static char *bundled_dylibrary_directory
;
143 delete_bundled_libraries (void)
147 for (list
= bundle_library_paths
; list
!= NULL
; list
= list
->next
){
150 rmdir (bundled_dylibrary_directory
);
154 bundle_save_library_initialize (void)
156 bundle_save_library_initialized
= 1;
157 char *path
= g_build_filename (g_get_tmp_dir (), "mono-bundle-XXXXXX", NULL
);
158 bundled_dylibrary_directory
= g_mkdtemp (path
);
160 if (bundled_dylibrary_directory
== NULL
)
162 atexit (delete_bundled_libraries
);
166 save_library (int fd
, uint64_t offset
, uint64_t size
, const char *destfname
)
169 char *file
, *buffer
, *err
, *internal_path
;
170 if (!bundle_save_library_initialized
)
171 bundle_save_library_initialize ();
173 file
= g_build_filename (bundled_dylibrary_directory
, destfname
, NULL
);
174 buffer
= load_from_region (fd
, offset
, size
);
175 g_file_set_contents (file
, buffer
, size
, NULL
);
177 lib
= mono_dl_open (file
, MONO_DL_LAZY
, &err
);
179 fprintf (stderr
, "Error loading shared library: %s %s\n", file
, err
);
182 // Register the name with "." as this is how it will be found when embedded
183 internal_path
= g_build_filename (".", destfname
, NULL
);
184 mono_loader_register_module (internal_path
, lib
);
185 g_free (internal_path
);
186 bundle_library_paths
= g_slist_append (bundle_library_paths
, file
);
193 search_directories(const char *envPath
, const char *program
, char **new_program
)
195 gchar
**paths
= NULL
;
198 paths
= g_strsplit (envPath
, G_SEARCHPATH_SEPARATOR_S
, 0);
201 for (i
= 0; paths
[i
]; ++i
) {
202 gchar
*path
= paths
[i
];
203 gint path_len
= strlen (path
);
210 dir
= opendir (path
);
214 while ((ent
= readdir (dir
))){
215 if (!strcmp (ent
->d_name
, program
)){
216 *new_program
= g_strdup_printf ("%s%s%s", path
, path
[path_len
- 1] == '/' ? "" : "/", program
);
232 probe_embedded (const char *program
, int *ref_argc
, char **ref_argv
[])
234 MonoBundledAssembly last
= { NULL
, 0, 0 };
235 char sigbuffer
[16+sizeof (uint64_t)];
236 gboolean status
= FALSE
;
237 uint64_t directory_location
;
238 off_t sigstart
, baseline
= 0;
239 uint64_t directory_size
;
242 unsigned char *mapaddress
= NULL
;
243 void *maphandle
= NULL
;
245 char *entry_point
= NULL
;
249 int fd
= open (program
, O_RDONLY
);
252 // Also search through the PATH in case the program was run from a different directory
253 gchar
* envPath
= getenv ("PATH");
255 gchar
*new_program
= NULL
;
256 if (search_directories (envPath
, program
, &new_program
)){
257 fd
= open (new_program
, O_RDONLY
);
258 g_free (new_program
);
266 if ((sigstart
= lseek (fd
, -24, SEEK_END
)) == -1)
268 if (read (fd
, sigbuffer
, sizeof (sigbuffer
)) == -1)
270 if (memcmp (sigbuffer
+sizeof(uint64_t), "xmonkeysloveplay", 16) != 0)
272 directory_location
= GUINT64_FROM_LE ((*(uint64_t *) &sigbuffer
[0]));
273 if (lseek (fd
, directory_location
, SEEK_SET
) == -1)
275 directory_size
= sigstart
-directory_location
;
276 directory
= g_malloc (directory_size
);
277 if (directory
== NULL
)
279 if (read (fd
, directory
, directory_size
) == -1)
282 items
= STREAM_INT (directory
);
285 assemblies
= g_array_new (0, 0, sizeof (MonoBundledAssembly
*));
286 for (i
= 0; i
< items
; i
++){
288 int strsize
= STREAM_INT (p
);
289 uint64_t offset
, item_size
;
292 offset
= STREAM_LONG(p
);
294 item_size
= STREAM_INT (p
);
297 if (mapaddress
== NULL
){
298 mapaddress
= mono_file_map (directory_location
-offset
, MONO_MMAP_READ
| MONO_MMAP_PRIVATE
, fd
, offset
, &maphandle
);
299 if (mapaddress
== NULL
){
300 perror ("Error mapping file");
305 if (strncmp (kind
, "assembly:", strlen ("assembly:")) == 0){
306 char *aname
= kind
+ strlen ("assembly:");
307 MonoBundledAssembly mba
= { aname
, mapaddress
+ offset
- baseline
, item_size
}, *ptr
;
308 ptr
= g_new (MonoBundledAssembly
, 1);
309 memcpy (ptr
, &mba
, sizeof (MonoBundledAssembly
));
310 g_array_append_val (assemblies
, ptr
);
311 if (entry_point
== NULL
)
313 } else if (strncmp (kind
, "config:", strlen ("config:")) == 0){
314 char *config
= kind
+ strlen ("config:");
315 char *aname
= g_strdup (config
);
316 aname
[strlen(aname
)-strlen(".config")] = 0;
317 mono_register_config_for_assembly (aname
, load_from_region (fd
, offset
, item_size
));
318 } else if (strncmp (kind
, "systemconfig:", strlen ("systemconfig:")) == 0){
319 mono_config_parse_memory (load_from_region (fd
, offset
, item_size
));
320 } else if (strncmp (kind
, "options:", strlen ("options:")) == 0){
321 mono_parse_options_from (load_from_region (fd
, offset
, item_size
), ref_argc
, ref_argv
);
322 } else if (strncmp (kind
, "config_dir:", strlen ("config_dir:")) == 0){
323 mono_set_dirs (getenv ("MONO_PATH"), load_from_region (fd
, offset
, item_size
));
324 } else if (strncmp (kind
, "machineconfig:", strlen ("machineconfig:")) == 0) {
325 mono_register_machine_config (load_from_region (fd
, offset
, item_size
));
326 } else if (strncmp (kind
, "env:", strlen ("env:")) == 0){
327 char *data
= load_from_region (fd
, offset
, item_size
);
328 uint8_t count
= *data
++;
329 char *value
= data
+ count
+ 1;
330 g_setenv (data
, value
, FALSE
);
331 } else if (strncmp (kind
, "library:", strlen ("library:")) == 0){
332 save_library (fd
, offset
, item_size
, kind
+ strlen ("library:"));
334 fprintf (stderr
, "Unknown stream on embedded package: %s\n", kind
);
338 g_array_append_val (assemblies
, last
);
340 mono_register_bundled_assemblies ((const MonoBundledAssembly
**) assemblies
->data
);
341 new_argv
= g_new (char *, (*ref_argc
)+1);
342 new_argv
[0] = (*ref_argv
)[0];
343 new_argv
[1] = entry_point
;
344 for (j
= 1; j
< *ref_argc
; j
++)
345 new_argv
[j
+1] = (*ref_argv
)[j
];
346 *ref_argv
= new_argv
;
361 #include <shellapi.h>
366 TCHAR szFileName
[MAX_PATH
];
373 argvw
= CommandLineToArgvW (GetCommandLine (), &argc
);
374 argv
= g_new0 (gchar
*, argc
+ 1);
375 for (i
= 0; i
< argc
; i
++)
376 argv
[i
] = g_utf16_to_utf8 (argvw
[i
], -1, NULL
, NULL
, NULL
);
381 if ((count
= GetModuleFileName (NULL
, szFileName
, MAX_PATH
)) != 0){
382 char *entry
= g_utf16_to_utf8 (szFileName
, count
, NULL
, NULL
, NULL
);
383 probe_embedded (entry
, &argc
, &argv
);
386 return mono_main_with_options (argc
, argv
);
392 main (int argc
, char* argv
[])
394 mono_build_date
= build_date
;
396 probe_embedded (argv
[0], &argc
, &argv
);
397 return mono_main_with_options (argc
, argv
);