shim_init.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212
  1. /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
  2. /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
  3. /* Copyright (C) 2014 Stony Brook University
  4. This file is part of Graphene Library OS.
  5. Graphene Library OS is free software: you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public License
  7. as published by the Free Software Foundation, either version 3 of the
  8. License, or (at your option) any later version.
  9. Graphene Library OS is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. /*
  16. * shim_init.c
  17. *
  18. * This file contains entry and exit functions of library OS.
  19. */
  20. #include <shim_internal.h>
  21. #include <shim_table.h>
  22. #include <shim_tls.h>
  23. #include <shim_thread.h>
  24. #include <shim_handle.h>
  25. #include <shim_vma.h>
  26. #include <shim_checkpoint.h>
  27. #include <shim_fs.h>
  28. #include <shim_ipc.h>
  29. #include <shim_profile.h>
  30. #include <pal.h>
  31. #include <pal_debug.h>
  32. #include <pal_error.h>
  33. #include <sys/mman.h>
  34. #include <asm/unistd.h>
  35. #include <asm/fcntl.h>
  36. unsigned long allocsize;
  37. unsigned long allocshift;
  38. unsigned long allocmask;
  39. /* The following constants will help matching glibc version with compatible
  40. SHIM libraries */
  41. #include "glibc-version.h"
  42. const unsigned int glibc_version = GLIBC_VERSION;
  43. static void handle_failure (PAL_PTR event, PAL_NUM arg, PAL_CONTEXT * context)
  44. {
  45. shim_get_tls()->pal_errno = (arg <= PAL_ERROR_BOUND) ? arg : 0;
  46. }
  47. noreturn void __abort(void) {
  48. PAUSE();
  49. shim_terminate(-ENOTRECOVERABLE);
  50. }
  51. void warn (const char *format, ...)
  52. {
  53. va_list args;
  54. va_start (args, format);
  55. __SYS_VPRINTF(format, &args);
  56. va_end (args);
  57. }
  58. void __stack_chk_fail (void)
  59. {
  60. }
  61. static int pal_errno_to_unix_errno [PAL_ERROR_BOUND + 1] = {
  62. /* reserved */ 0,
  63. /* PAL_ERROR_NOTIMPLEMENTED */ ENOSYS,
  64. /* PAL_ERROR_NOTDEFINED */ ENOSYS,
  65. /* PAL_ERROR_NOTSUPPORT */ EACCES,
  66. /* PAL_ERROR_INVAL */ EINVAL,
  67. /* PAL_ERROR_TOOLONG */ ENAMETOOLONG,
  68. /* PAL_ERROR_DENIED */ EACCES,
  69. /* PAL_ERROR_BADHANDLE */ EFAULT,
  70. /* PAL_ERROR_STREAMEXIST */ EEXIST,
  71. /* PAL_ERROR_STREAMNOTEXIST */ ENOENT,
  72. /* PAL_ERROR_STREAMISFILE */ ENOTDIR,
  73. /* PAL_ERROR_STREAMISDIR */ EISDIR,
  74. /* PAL_ERROR_STREAMISDEVICE */ ESPIPE,
  75. /* PAL_ERROR_INTERRUPTED */ EINTR,
  76. /* PAL_ERROR_OVERFLOW */ EFAULT,
  77. /* PAL_ERROR_BADADDR */ EFAULT,
  78. /* PAL_ERROR_NOMEM */ ENOMEM,
  79. /* PAL_ERROR_NOTKILLABLE */ EACCES,
  80. /* PAL_ERROR_INCONSIST */ EFAULT,
  81. /* PAL_ERROR_TRYAGAIN */ EAGAIN,
  82. /* PAL_ERROR_ENDOFSTREAM */ 0,
  83. /* PAL_ERROR_NOTSERVER */ EINVAL,
  84. /* PAL_ERROR_NOTCONNECTION */ ENOTCONN,
  85. /* PAL_ERROR_ZEROSIZE */ 0,
  86. /* PAL_ERROR_CONNFAILED */ ECONNRESET,
  87. /* PAL_ERROR_ADDRNOTEXIST */ EADDRNOTAVAIL,
  88. };
  89. long convert_pal_errno (long err)
  90. {
  91. return (err >= 0 && err <= PAL_ERROR_BOUND) ?
  92. pal_errno_to_unix_errno[err] : 0;
  93. }
  94. unsigned long parse_int (const char * str)
  95. {
  96. unsigned long num = 0;
  97. int radix = 10;
  98. char c;
  99. if (str[0] == '0') {
  100. str++;
  101. radix = 8;
  102. if (str[0] == 'x') {
  103. str++;
  104. radix = 16;
  105. }
  106. }
  107. while ((c = *(str++))) {
  108. int val;
  109. if (c >= 'A' && c <= 'F')
  110. val = c - 'A' + 10;
  111. else if (c >= 'a' && c <= 'f')
  112. val = c - 'a' + 10;
  113. else if (c >= '0' && c <= '9')
  114. val = c - '0';
  115. else
  116. break;
  117. if (val >= radix)
  118. break;
  119. num = num * radix + val;
  120. }
  121. if (c == 'G' || c == 'g')
  122. num *= 1024 * 1024 * 1024;
  123. else if (c == 'M' || c == 'm')
  124. num *= 1024 * 1024;
  125. else if (c == 'K' || c == 'k')
  126. num *= 1024;
  127. return num;
  128. }
  129. long int glibc_option (const char * opt)
  130. {
  131. char cfg[CONFIG_MAX];
  132. if (strcmp_static(opt, "heap_size")) {
  133. ssize_t ret = get_config(root_config, "glibc.heap_size", cfg, CONFIG_MAX);
  134. if (ret <= 0) {
  135. debug("no glibc option: %s (err=%ld)\n", opt, ret);
  136. return -ENOENT;
  137. }
  138. long int heap_size = parse_int(cfg);
  139. debug("glibc option: heap_size = %ld\n", heap_size);
  140. return (long int) heap_size;
  141. }
  142. return -EINVAL;
  143. }
  144. void * migrated_memory_start;
  145. void * migrated_memory_end;
  146. void * migrated_shim_addr;
  147. const char ** initial_envp __attribute_migratable;
  148. /* library_paths is populated with LD_PRELOAD entries once during LibOS
  149. * initialization and is used in __load_interp_object() to search for ELF
  150. * program interpreter in specific paths. Once allocated, its memory is
  151. * never freed or updated. */
  152. char ** library_paths = NULL;
  153. struct shim_lock __master_lock;
  154. bool lock_enabled;
  155. void init_tcb (shim_tcb_t * tcb)
  156. {
  157. tcb->canary = SHIM_TLS_CANARY;
  158. tcb->self = tcb;
  159. }
  160. void copy_tcb (shim_tcb_t * new_tcb, const shim_tcb_t * old_tcb)
  161. {
  162. memset(new_tcb, 0, sizeof(shim_tcb_t));
  163. new_tcb->canary = SHIM_TLS_CANARY;
  164. new_tcb->self = new_tcb;
  165. new_tcb->tp = old_tcb->tp;
  166. memcpy(&new_tcb->context, &old_tcb->context, sizeof(struct shim_context));
  167. new_tcb->tid = old_tcb->tid;
  168. new_tcb->debug_buf = old_tcb->debug_buf;
  169. }
  170. /* This function is used to allocate tls before interpreter start running */
  171. void allocate_tls (__libc_tcb_t * tcb, bool user, struct shim_thread * thread)
  172. {
  173. assert(tcb);
  174. tcb->tcb = tcb;
  175. init_tcb(&tcb->shim_tcb);
  176. if (thread) {
  177. thread->tcb = tcb;
  178. thread->user_tcb = user;
  179. tcb->shim_tcb.tp = thread;
  180. tcb->shim_tcb.tid = thread->tid;
  181. } else {
  182. tcb->shim_tcb.tp = NULL;
  183. tcb->shim_tcb.tid = 0;
  184. }
  185. DkSegmentRegister(PAL_SEGMENT_FS, tcb);
  186. assert(shim_tls_check_canary());
  187. }
  188. void populate_tls (__libc_tcb_t * tcb, bool user)
  189. {
  190. assert(tcb);
  191. tcb->tcb = tcb;
  192. copy_tcb(&tcb->shim_tcb, shim_get_tls());
  193. struct shim_thread * thread = (struct shim_thread *) tcb->shim_tcb.tp;
  194. if (thread) {
  195. thread->tcb = tcb;
  196. thread->user_tcb = user;
  197. }
  198. DkSegmentRegister(PAL_SEGMENT_FS, tcb);
  199. assert(shim_tls_check_canary());
  200. }
  201. DEFINE_PROFILE_OCCURENCE(alloc_stack, memory);
  202. DEFINE_PROFILE_OCCURENCE(alloc_stack_count, memory);
  203. #define STACK_FLAGS (MAP_PRIVATE|MAP_ANONYMOUS)
  204. void * allocate_stack (size_t size, size_t protect_size, bool user)
  205. {
  206. size = ALIGN_UP(size);
  207. protect_size = ALIGN_UP(protect_size);
  208. /* preserve a non-readable, non-writable page below the user
  209. stack to stop user program to clobber other vmas */
  210. void * stack = NULL;
  211. int flags = STACK_FLAGS|(user ? 0 : VMA_INTERNAL);
  212. if (user) {
  213. stack = bkeep_unmapped_heap(size + protect_size, PROT_NONE,
  214. flags, NULL, 0, "stack");
  215. if (!stack)
  216. return NULL;
  217. stack = (void *)
  218. DkVirtualMemoryAlloc(stack, size + protect_size,
  219. 0, PAL_PROT_NONE);
  220. } else {
  221. stack = system_malloc(size + protect_size);
  222. }
  223. if (!stack)
  224. return NULL;
  225. ADD_PROFILE_OCCURENCE(alloc_stack, size + protect_size);
  226. INC_PROFILE_OCCURENCE(alloc_stack_count);
  227. stack += protect_size;
  228. // Ensure proper alignment for process' initial stack pointer value.
  229. stack += (16 - (uintptr_t)stack % 16) % 16;
  230. DkVirtualMemoryProtect(stack, size, PAL_PROT_READ|PAL_PROT_WRITE);
  231. if (bkeep_mprotect(stack, size, PROT_READ|PROT_WRITE, flags) < 0)
  232. return NULL;
  233. debug("allocated stack at %p (size = %ld)\n", stack, size);
  234. return stack;
  235. }
  236. static int populate_user_stack (void * stack, size_t stack_size,
  237. elf_auxv_t ** auxpp, int ** argcpp,
  238. const char *** argvp, const char *** envpp)
  239. {
  240. const int argc = **argcpp;
  241. const char ** argv = *argvp, ** envp = *envpp;
  242. const char ** new_argv = NULL, ** new_envp = NULL;
  243. elf_auxv_t *new_auxp = NULL;
  244. void * stack_bottom = stack;
  245. void * stack_top = stack + stack_size;
  246. #define ALLOCATE_TOP(size) \
  247. ({ if ((stack_top -= (size)) < stack_bottom) return -ENOMEM; \
  248. stack_top; })
  249. #define ALLOCATE_BOTTOM(size) \
  250. ({ if ((stack_bottom += (size)) > stack_top) return -ENOMEM; \
  251. stack_bottom - (size); })
  252. /* ld.so expects argc as long on stack, not int. */
  253. long * argcp = ALLOCATE_BOTTOM(sizeof(long));
  254. *argcp = **argcpp;
  255. if (!argv) {
  256. *(const char **) ALLOCATE_BOTTOM(sizeof(const char *)) = NULL;
  257. goto copy_envp;
  258. }
  259. new_argv = stack_bottom;
  260. while (argv) {
  261. for (const char ** a = argv ; *a ; a++) {
  262. const char ** t = ALLOCATE_BOTTOM(sizeof(const char *));
  263. int len = strlen(*a) + 1;
  264. char * abuf = ALLOCATE_TOP(len);
  265. memcpy(abuf, *a, len);
  266. *t = abuf;
  267. }
  268. *((const char **) ALLOCATE_BOTTOM(sizeof(const char *))) = NULL;
  269. copy_envp:
  270. if (!envp)
  271. break;
  272. new_envp = stack_bottom;
  273. argv = envp;
  274. envp = NULL;
  275. }
  276. if (!new_envp)
  277. *(const char **) ALLOCATE_BOTTOM(sizeof(const char *)) = NULL;
  278. /* reserve space for ELF aux vectors, populated later by LibOS */
  279. new_auxp = ALLOCATE_BOTTOM(REQUIRED_ELF_AUXV * sizeof(elf_auxv_t) +
  280. REQUIRED_ELF_AUXV_SPACE);
  281. /* x86_64 ABI requires 16 bytes alignment on stack on every function
  282. call. */
  283. size_t move_size = stack_bottom - stack;
  284. *argcpp = stack_top - move_size;
  285. *argcpp = ALIGN_DOWN_PTR(*argcpp, 16UL);
  286. **argcpp = argc;
  287. size_t shift = (void*)(*argcpp) - stack;
  288. memmove(*argcpp, stack, move_size);
  289. *argvp = new_argv ? (void *) new_argv + shift : NULL;
  290. *envpp = new_envp ? (void *) new_envp + shift : NULL;
  291. *auxpp = new_auxp ? (void *) new_auxp + shift : NULL;
  292. /* clear working area at the bottom */
  293. memset(stack, 0, shift);
  294. return 0;
  295. }
  296. unsigned long sys_stack_size = 0;
  297. int init_stack (const char ** argv, const char ** envp,
  298. int ** argcpp, const char *** argpp,
  299. elf_auxv_t ** auxpp)
  300. {
  301. if (!sys_stack_size) {
  302. sys_stack_size = DEFAULT_SYS_STACK_SIZE;
  303. if (root_config) {
  304. char stack_cfg[CONFIG_MAX];
  305. if (get_config(root_config, "sys.stack.size", stack_cfg,
  306. CONFIG_MAX) > 0)
  307. sys_stack_size = ALIGN_UP(parse_int(stack_cfg));
  308. }
  309. }
  310. struct shim_thread * cur_thread = get_cur_thread();
  311. if (!cur_thread || cur_thread->stack)
  312. return 0;
  313. void * stack = allocate_stack(sys_stack_size, allocsize, true);
  314. if (!stack)
  315. return -ENOMEM;
  316. if (initial_envp)
  317. envp = initial_envp;
  318. int ret = populate_user_stack(stack, sys_stack_size, auxpp, argcpp, &argv, &envp);
  319. if (ret < 0)
  320. return ret;
  321. *argpp = argv;
  322. initial_envp = envp;
  323. cur_thread->stack_top = stack + sys_stack_size;
  324. cur_thread->stack = stack;
  325. cur_thread->stack_red = stack - allocsize;
  326. return 0;
  327. }
  328. int read_environs (const char ** envp)
  329. {
  330. for (const char ** e = envp ; *e ; e++) {
  331. if (strpartcmp_static(*e, "LD_LIBRARY_PATH=")) {
  332. /* populate library_paths with entries from LD_LIBRARY_PATH envvar */
  333. const char * s = *e + static_strlen("LD_LIBRARY_PATH=");
  334. size_t npaths = 2; // One for the first entry, one for the last
  335. // NULL.
  336. for (const char * tmp = s ; *tmp ; tmp++)
  337. if (*tmp == ':')
  338. npaths++;
  339. char** paths = malloc(sizeof(const char *) *
  340. npaths);
  341. if (!paths)
  342. return -ENOMEM;
  343. size_t cnt = 0;
  344. while (*s) {
  345. const char * next;
  346. for (next = s ; *next && *next != ':' ; next++);
  347. size_t len = next - s;
  348. char * str = malloc(len + 1);
  349. if (!str) {
  350. for (size_t i = 0; i < cnt; i++)
  351. free(paths[i]);
  352. free(paths);
  353. return -ENOMEM;
  354. }
  355. memcpy(str, s, len);
  356. str[len] = 0;
  357. paths[cnt++] = str;
  358. s = *next ? next + 1 : next;
  359. }
  360. paths[cnt] = NULL;
  361. assert(!library_paths);
  362. library_paths = paths;
  363. return 0;
  364. }
  365. }
  366. return 0;
  367. }
  368. struct config_store * root_config = NULL;
  369. static void * __malloc (size_t size)
  370. {
  371. return malloc(size);
  372. }
  373. static void __free (void * mem)
  374. {
  375. free(mem);
  376. }
  377. int init_manifest (PAL_HANDLE manifest_handle)
  378. {
  379. int ret = 0;
  380. void * addr = NULL;
  381. size_t size = 0, map_size = 0;
  382. #define MAP_FLAGS (MAP_PRIVATE|MAP_ANONYMOUS|VMA_INTERNAL)
  383. if (PAL_CB(manifest_preload.start)) {
  384. addr = PAL_CB(manifest_preload.start);
  385. size = PAL_CB(manifest_preload.end) - PAL_CB(manifest_preload.start);
  386. } else {
  387. PAL_STREAM_ATTR attr;
  388. if (!DkStreamAttributesQueryByHandle(manifest_handle, &attr))
  389. return -PAL_ERRNO;
  390. size = attr.pending_size;
  391. map_size = ALIGN_UP(size);
  392. addr = bkeep_unmapped_any(map_size, PROT_READ, MAP_FLAGS,
  393. NULL, 0, "manifest");
  394. if (!addr)
  395. return -ENOMEM;
  396. void * ret_addr = DkStreamMap(manifest_handle, addr,
  397. PAL_PROT_READ, 0,
  398. ALIGN_UP(size));
  399. if (!ret_addr) {
  400. bkeep_munmap(addr, map_size, MAP_FLAGS);
  401. return -ENOMEM;
  402. } else {
  403. assert(addr == ret_addr);
  404. }
  405. }
  406. struct config_store * new_root_config = malloc(sizeof(struct config_store));
  407. if (!new_root_config) {
  408. ret = -ENOMEM;
  409. goto fail;
  410. }
  411. new_root_config->raw_data = addr;
  412. new_root_config->raw_size = size;
  413. new_root_config->malloc = __malloc;
  414. new_root_config->free = __free;
  415. const char * errstring = "Unexpected error";
  416. if ((ret = read_config(new_root_config, NULL, &errstring)) < 0) {
  417. SYS_PRINTF("Unable to read manifest file: %s\n", errstring);
  418. goto fail;
  419. }
  420. root_config = new_root_config;
  421. return 0;
  422. fail:
  423. if (map_size) {
  424. DkStreamUnmap(addr, map_size);
  425. if (bkeep_munmap(addr, map_size, MAP_FLAGS) < 0)
  426. BUG();
  427. }
  428. free(new_root_config);
  429. return ret;
  430. }
  431. #ifdef PROFILE
  432. struct shim_profile profile_root;
  433. #endif
  434. # define FIND_ARG_COMPONENTS(cookie, argc, argv, envp, auxp) \
  435. do { \
  436. void *_tmp = (cookie); \
  437. (argv) = _tmp; \
  438. _tmp += sizeof(char *) * ((argc) + 1); \
  439. (envp) = _tmp; \
  440. for ( ; *(char **) _tmp; _tmp += sizeof(char *)); \
  441. (auxp) = _tmp + sizeof(char *); \
  442. } while (0)
  443. #ifdef PROFILE
  444. static void set_profile_enabled (const char ** envp)
  445. {
  446. const char ** p;
  447. for (p = envp ; (*p) ; p++)
  448. if (strpartcmp_static(*p, "PROFILE_ENABLED="))
  449. break;
  450. if (!(*p))
  451. return;
  452. for (int i = 0 ; i < N_PROFILE ; i++)
  453. PROFILES[i].disabled = true;
  454. const char * str = (*p) + 16;
  455. bool enabled = false;
  456. while (*str) {
  457. const char * next = str;
  458. for ( ; (*next) && (*next) != ',' ; next++);
  459. if (next > str) {
  460. int len = next - str;
  461. for (int i = 0 ; i < N_PROFILE ; i++) {
  462. struct shim_profile * profile = &PROFILES[i];
  463. if (!memcmp(profile->name, str, len) && !profile->name[len]) {
  464. profile->disabled = false;
  465. if (profile->type == CATEGORY)
  466. enabled = true;
  467. }
  468. }
  469. }
  470. str = (*next) ? next + 1 : next;
  471. }
  472. while (enabled) {
  473. enabled = false;
  474. for (int i = 0 ; i < N_PROFILE ; i++) {
  475. struct shim_profile * profile = &PROFILES[i];
  476. if (!profile->disabled || profile->root == &profile_)
  477. continue;
  478. if (!profile->root->disabled) {
  479. profile->disabled = false;
  480. if (profile->type == CATEGORY)
  481. enabled = true;
  482. }
  483. }
  484. }
  485. for (int i = 0 ; i < N_PROFILE ; i++) {
  486. struct shim_profile * profile = &PROFILES[i];
  487. if (profile->type == CATEGORY || profile->disabled)
  488. continue;
  489. for (profile = profile->root ;
  490. profile != &profile_ && profile->disabled ;
  491. profile = profile->root)
  492. profile->disabled = false;
  493. }
  494. }
  495. #endif
  496. static int init_newproc (struct newproc_header * hdr)
  497. {
  498. BEGIN_PROFILE_INTERVAL();
  499. int bytes = DkStreamRead(PAL_CB(parent_process), 0,
  500. sizeof(struct newproc_header), hdr,
  501. NULL, 0);
  502. if (!bytes)
  503. return -PAL_ERRNO;
  504. SAVE_PROFILE_INTERVAL(child_wait_header);
  505. SAVE_PROFILE_INTERVAL_SINCE(child_receive_header, hdr->write_proc_time);
  506. return hdr->failure;
  507. }
  508. DEFINE_PROFILE_CATEGORY(pal, );
  509. DEFINE_PROFILE_INTERVAL(pal_startup_time, pal);
  510. DEFINE_PROFILE_INTERVAL(pal_host_specific_startup_time, pal);
  511. DEFINE_PROFILE_INTERVAL(pal_relocation_time, pal);
  512. DEFINE_PROFILE_INTERVAL(pal_linking_time, pal);
  513. DEFINE_PROFILE_INTERVAL(pal_manifest_loading_time, pal);
  514. DEFINE_PROFILE_INTERVAL(pal_allocation_time, pal);
  515. DEFINE_PROFILE_INTERVAL(pal_tail_startup_time, pal);
  516. DEFINE_PROFILE_INTERVAL(pal_child_creation_time, pal);
  517. DEFINE_PROFILE_CATEGORY(init, );
  518. DEFINE_PROFILE_INTERVAL(init_vma, init);
  519. DEFINE_PROFILE_INTERVAL(init_slab, init);
  520. DEFINE_PROFILE_INTERVAL(init_str_mgr, init);
  521. DEFINE_PROFILE_INTERVAL(init_internal_map, init);
  522. DEFINE_PROFILE_INTERVAL(init_fs, init);
  523. DEFINE_PROFILE_INTERVAL(init_dcache, init);
  524. DEFINE_PROFILE_INTERVAL(init_handle, init);
  525. DEFINE_PROFILE_INTERVAL(read_from_checkpoint, init);
  526. DEFINE_PROFILE_INTERVAL(read_from_file, init);
  527. DEFINE_PROFILE_INTERVAL(init_newproc, init);
  528. DEFINE_PROFILE_INTERVAL(init_mount_root, init);
  529. DEFINE_PROFILE_INTERVAL(init_from_checkpoint_file, init);
  530. DEFINE_PROFILE_INTERVAL(restore_from_file, init);
  531. DEFINE_PROFILE_INTERVAL(init_manifest, init);
  532. DEFINE_PROFILE_INTERVAL(init_ipc, init);
  533. DEFINE_PROFILE_INTERVAL(init_thread, init);
  534. DEFINE_PROFILE_INTERVAL(init_important_handles, init);
  535. DEFINE_PROFILE_INTERVAL(init_mount, init);
  536. DEFINE_PROFILE_INTERVAL(init_async, init);
  537. DEFINE_PROFILE_INTERVAL(init_stack, init);
  538. DEFINE_PROFILE_INTERVAL(read_environs, init);
  539. DEFINE_PROFILE_INTERVAL(init_loader, init);
  540. DEFINE_PROFILE_INTERVAL(init_ipc_helper, init);
  541. DEFINE_PROFILE_INTERVAL(init_signal, init);
  542. #define CALL_INIT(func, args ...) func(args)
  543. #define RUN_INIT(func, ...) \
  544. do { \
  545. int _err = CALL_INIT(func, ##__VA_ARGS__); \
  546. if (_err < 0) { \
  547. SYS_PRINTF("shim_init() in " #func " (%d)\n", _err); \
  548. shim_terminate(_err); \
  549. } \
  550. SAVE_PROFILE_INTERVAL(func); \
  551. } while (0)
  552. extern PAL_HANDLE thread_start_event;
  553. noreturn void* shim_init (int argc, void * args)
  554. {
  555. debug_handle = PAL_CB(debug_stream);
  556. cur_process.vmid = (IDTYPE) PAL_CB(process_id);
  557. /* create the initial TCB, shim can not be run without a tcb */
  558. __libc_tcb_t tcb;
  559. memset(&tcb, 0, sizeof(__libc_tcb_t));
  560. allocate_tls(&tcb, false, NULL);
  561. __disable_preempt(&tcb.shim_tcb); // Temporarily disable preemption for delaying any signal
  562. // that arrives during initialization
  563. debug_setbuf(&tcb.shim_tcb, true);
  564. debug("set tcb to %p\n", &tcb);
  565. #ifdef PROFILE
  566. unsigned long begin_time = GET_PROFILE_INTERVAL();
  567. #endif
  568. debug("host: %s\n", PAL_CB(host_type));
  569. DkSetExceptionHandler(&handle_failure, PAL_EVENT_FAILURE);
  570. allocsize = PAL_CB(alloc_align);
  571. allocshift = allocsize - 1;
  572. allocmask = ~allocshift;
  573. create_lock(&__master_lock);
  574. int * argcp = &argc;
  575. const char ** argv, ** envp, ** argp = NULL;
  576. elf_auxv_t * auxp;
  577. /* call to figure out where the arguments are */
  578. FIND_ARG_COMPONENTS(args, argc, argv, envp, auxp);
  579. #ifdef PROFILE
  580. set_profile_enabled(envp);
  581. #endif
  582. struct newproc_header hdr;
  583. void * cpaddr = NULL;
  584. #ifdef PROFILE
  585. unsigned long begin_create_time = 0;
  586. #endif
  587. BEGIN_PROFILE_INTERVAL();
  588. RUN_INIT(init_vma);
  589. RUN_INIT(init_slab);
  590. RUN_INIT(read_environs, envp);
  591. RUN_INIT(init_str_mgr);
  592. RUN_INIT(init_internal_map);
  593. RUN_INIT(init_fs);
  594. RUN_INIT(init_dcache);
  595. RUN_INIT(init_handle);
  596. debug("shim loaded at %p, ready to initialize\n", &__load_address);
  597. if (argc && argv[0][0] == '-') {
  598. if (strcmp_static(argv[0], "-resume") && argc >= 2) {
  599. const char * filename = *(argv + 1);
  600. argc -= 2;
  601. argv += 2;
  602. RUN_INIT(init_mount_root);
  603. RUN_INIT(init_from_checkpoint_file, filename, &hdr.checkpoint,
  604. &cpaddr);
  605. goto restore;
  606. }
  607. }
  608. if (PAL_CB(parent_process)) {
  609. RUN_INIT(init_newproc, &hdr);
  610. SAVE_PROFILE_INTERVAL_SET(child_created_in_new_process,
  611. hdr.create_time, begin_time);
  612. #ifdef PROFILE
  613. begin_create_time = hdr.begin_create_time;
  614. #endif
  615. if (hdr.checkpoint.hdr.size)
  616. RUN_INIT(do_migration, &hdr.checkpoint, &cpaddr);
  617. }
  618. if (cpaddr) {
  619. restore:
  620. thread_start_event = DkNotificationEventCreate(PAL_FALSE);
  621. RUN_INIT(restore_checkpoint,
  622. &hdr.checkpoint.hdr, &hdr.checkpoint.mem,
  623. (ptr_t) cpaddr, 0);
  624. }
  625. if (PAL_CB(manifest_handle))
  626. RUN_INIT(init_manifest, PAL_CB(manifest_handle));
  627. RUN_INIT(init_mount_root);
  628. RUN_INIT(init_ipc);
  629. RUN_INIT(init_thread);
  630. RUN_INIT(init_mount);
  631. RUN_INIT(init_important_handles);
  632. RUN_INIT(init_async);
  633. RUN_INIT(init_stack, argv, envp, &argcp, &argp, &auxp);
  634. RUN_INIT(init_loader);
  635. RUN_INIT(init_ipc_helper);
  636. RUN_INIT(init_signal);
  637. if (PAL_CB(parent_process)) {
  638. /* Notify the parent process */
  639. struct newproc_response res;
  640. res.child_vmid = cur_process.vmid;
  641. res.failure = 0;
  642. if (!DkStreamWrite(PAL_CB(parent_process), 0,
  643. sizeof(struct newproc_response),
  644. &res, NULL))
  645. shim_do_exit(-PAL_ERRNO);
  646. }
  647. debug("shim process initialized\n");
  648. #ifdef PROFILE
  649. if (begin_create_time)
  650. SAVE_PROFILE_INTERVAL_SINCE(child_total_migration_time,
  651. begin_create_time);
  652. #endif
  653. SAVE_PROFILE_INTERVAL_SET(pal_startup_time, 0, pal_control.startup_time);
  654. SAVE_PROFILE_INTERVAL_SET(pal_host_specific_startup_time, 0,
  655. pal_control.host_specific_startup_time);
  656. SAVE_PROFILE_INTERVAL_SET(pal_relocation_time, 0,
  657. pal_control.relocation_time);
  658. SAVE_PROFILE_INTERVAL_SET(pal_linking_time, 0, pal_control.linking_time);
  659. SAVE_PROFILE_INTERVAL_SET(pal_manifest_loading_time, 0,
  660. pal_control.manifest_loading_time);
  661. SAVE_PROFILE_INTERVAL_SET(pal_allocation_time, 0,
  662. pal_control.allocation_time);
  663. SAVE_PROFILE_INTERVAL_SET(pal_tail_startup_time, 0,
  664. pal_control.tail_startup_time);
  665. SAVE_PROFILE_INTERVAL_SET(pal_child_creation_time, 0,
  666. pal_control.child_creation_time);
  667. if (thread_start_event)
  668. DkEventSet(thread_start_event);
  669. shim_tcb_t * cur_tcb = shim_get_tls();
  670. struct shim_thread * cur_thread = (struct shim_thread *) cur_tcb->tp;
  671. if (cur_tcb->context.sp)
  672. restore_context(&cur_tcb->context);
  673. if (cur_thread->exec)
  674. execute_elf_object(cur_thread->exec, argcp, argp, auxp);
  675. shim_do_exit(0);
  676. }
  677. static int create_unique (int (*mkname) (char *, size_t, void *),
  678. int (*create) (const char *, void *),
  679. int (*output) (char *, size_t, const void *,
  680. struct shim_qstr *),
  681. char * name, size_t size, void * id, void * obj,
  682. struct shim_qstr * qstr)
  683. {
  684. int ret, len;
  685. while (1) {
  686. len = mkname(name, size, id);
  687. if (len < 0)
  688. return len;
  689. if ((ret = create(name, obj)) < 0)
  690. return ret;
  691. if (ret)
  692. continue;
  693. if (output)
  694. return output(name, size, id, qstr);
  695. if (qstr)
  696. qstrsetstr(qstr, name, len);
  697. return len;
  698. }
  699. }
  700. static int name_pipe (char * uri, size_t size, void * id)
  701. {
  702. IDTYPE pipeid;
  703. int len;
  704. int ret = DkRandomBitsRead(&pipeid, sizeof(pipeid));
  705. if (ret < 0)
  706. return -convert_pal_errno(-ret);
  707. debug("creating pipe: pipe.srv:%u\n", pipeid);
  708. if ((len = snprintf(uri, size, "pipe.srv:%u", pipeid)) == size)
  709. return -ERANGE;
  710. *((IDTYPE *) id) = pipeid;
  711. return len;
  712. }
  713. static int open_pipe (const char * uri, void * obj)
  714. {
  715. PAL_HANDLE pipe = DkStreamOpen(uri, 0, 0, 0, 0);
  716. if (!pipe)
  717. return PAL_NATIVE_ERRNO == PAL_ERROR_STREAMEXIST ? 1 :
  718. -PAL_ERRNO;
  719. if (obj)
  720. *((PAL_HANDLE *) obj) = pipe;
  721. else
  722. DkObjectClose(pipe);
  723. return 0;
  724. }
  725. static int pipe_addr (char * uri, size_t size, const void * id,
  726. struct shim_qstr * qstr)
  727. {
  728. IDTYPE pipeid = *((IDTYPE *) id);
  729. int len;
  730. if ((len = snprintf(uri, size, "pipe:%u", pipeid)) == size)
  731. return -ERANGE;
  732. if (qstr)
  733. qstrsetstr(qstr, uri, len);
  734. return len;
  735. }
  736. int create_pipe (IDTYPE * id, char * uri, size_t size, PAL_HANDLE * hdl,
  737. struct shim_qstr * qstr)
  738. {
  739. IDTYPE pipeid;
  740. int ret = create_unique(&name_pipe, &open_pipe, &pipe_addr,
  741. uri, size, &pipeid, hdl, qstr);
  742. if (ret > 0 && id)
  743. *id = pipeid;
  744. return ret;
  745. }
  746. static int name_path (char * path, size_t size, void * id)
  747. {
  748. unsigned int suffix;
  749. int prefix_len = strlen(path);
  750. int len;
  751. int ret = DkRandomBitsRead(&suffix, sizeof(suffix));
  752. if (ret < 0)
  753. return -convert_pal_errno(-ret);
  754. len = snprintf(path + prefix_len, size - prefix_len, "%08x", suffix);
  755. if (len == size)
  756. return -ERANGE;
  757. *((unsigned int *) id) = suffix;
  758. return prefix_len + len;
  759. }
  760. static int open_dir (const char * path, void * obj)
  761. {
  762. struct shim_handle * dir = NULL;
  763. if (obj) {
  764. dir = get_new_handle();
  765. if (!dir)
  766. return -ENOMEM;
  767. }
  768. int ret = open_namei(dir, NULL, path, O_CREAT|O_EXCL|O_DIRECTORY, 0700,
  769. NULL);
  770. if (ret < 0)
  771. return ret = -EEXIST ? 1 : ret;
  772. if (obj)
  773. *((struct shim_handle **) obj) = dir;
  774. return 0;
  775. }
  776. static int open_file (const char * path, void * obj)
  777. {
  778. struct shim_handle * file = NULL;
  779. if (obj) {
  780. file = get_new_handle();
  781. if (!file)
  782. return -ENOMEM;
  783. }
  784. int ret = open_namei(file, NULL, path, O_CREAT|O_EXCL|O_RDWR, 0600,
  785. NULL);
  786. if (ret < 0)
  787. return ret = -EEXIST ? 1 : ret;
  788. if (obj)
  789. *((struct shim_handle **) obj) = file;
  790. return 0;
  791. }
  792. static int open_pal_handle (const char * uri, void * obj)
  793. {
  794. PAL_HANDLE hdl;
  795. if (strpartcmp_static(uri, "dev:"))
  796. hdl = DkStreamOpen(uri, 0,
  797. PAL_SHARE_OWNER_X|PAL_SHARE_OWNER_W|
  798. PAL_SHARE_OWNER_R,
  799. PAL_CREATE_TRY|PAL_CREATE_ALWAYS,
  800. 0);
  801. else
  802. hdl = DkStreamOpen(uri, PAL_ACCESS_RDWR,
  803. PAL_SHARE_OWNER_W|PAL_SHARE_OWNER_R,
  804. PAL_CREATE_TRY|PAL_CREATE_ALWAYS,
  805. 0);
  806. if (!hdl) {
  807. if (PAL_NATIVE_ERRNO == PAL_ERROR_STREAMEXIST)
  808. return 0;
  809. else
  810. return -PAL_ERRNO;
  811. }
  812. if (obj) {
  813. *((PAL_HANDLE *) obj) = hdl;
  814. } else {
  815. DkObjectClose(hdl);
  816. }
  817. return 0;
  818. }
  819. static int output_path (char * path, size_t size, const void * id,
  820. struct shim_qstr * qstr)
  821. {
  822. int len = strlen(path);
  823. if (qstr)
  824. qstrsetstr(qstr, path, len);
  825. return len;
  826. }
  827. int create_dir (const char * prefix, char * path, size_t size,
  828. struct shim_handle ** hdl)
  829. {
  830. unsigned int suffix;
  831. if (prefix) {
  832. int len = strlen(prefix);
  833. if (len >= size)
  834. return -ERANGE;
  835. memcpy(path, prefix, len + 1);
  836. }
  837. return create_unique(&name_path, &open_dir, &output_path, path, size,
  838. &suffix, hdl, NULL);
  839. }
  840. int create_file (const char * prefix, char * path, size_t size,
  841. struct shim_handle ** hdl)
  842. {
  843. unsigned int suffix;
  844. if (prefix) {
  845. int len = strlen(prefix);
  846. if (len >= size)
  847. return -ERANGE;
  848. memcpy(path, prefix, len + 1);
  849. }
  850. return create_unique(&name_path, &open_file, &output_path, path, size,
  851. &suffix, hdl, NULL);
  852. }
  853. int create_handle (const char * prefix, char * uri, size_t size,
  854. PAL_HANDLE * hdl, unsigned int * id)
  855. {
  856. unsigned int suffix;
  857. if (prefix) {
  858. int len = strlen(prefix);
  859. if (len >= size)
  860. return -ERANGE;
  861. memcpy(uri, prefix, len + 1);
  862. }
  863. return create_unique(&name_path, &open_pal_handle, &output_path, uri, size,
  864. id ? : &suffix, hdl, NULL);
  865. }
  866. void check_stack_hook (void)
  867. {
  868. struct shim_thread * cur_thread = get_cur_thread();
  869. void * rsp;
  870. __asm__ volatile ("movq %%rsp, %0" : "=r"(rsp) :: "memory");
  871. if (rsp <= cur_thread->stack_top && rsp > cur_thread->stack) {
  872. if (rsp - cur_thread->stack < PAL_CB(pagesize))
  873. SYS_PRINTF("*** stack is almost drained (RSP = %p, stack = %p-%p) ***\n",
  874. rsp, cur_thread->stack, cur_thread->stack_top);
  875. } else {
  876. SYS_PRINTF("*** context dismatched with thread stack (RSP = %p, stack = %p-%p) ***\n",
  877. rsp, cur_thread->stack, cur_thread->stack_top);
  878. }
  879. }
  880. #ifdef PROFILE
  881. static void print_profile_result (PAL_HANDLE hdl, struct shim_profile * root,
  882. int level)
  883. {
  884. unsigned long total_interval_time = 0;
  885. unsigned long total_interval_count = 0;
  886. for (int i = 0 ; i < N_PROFILE ; i++) {
  887. struct shim_profile * profile = &PROFILES[i];
  888. if (profile->root != root || profile->disabled)
  889. continue;
  890. switch (profile->type) {
  891. case OCCURENCE: {
  892. unsigned int count =
  893. atomic_read(&profile->val.occurence.count);
  894. if (count) {
  895. for (int j = 0 ; j < level ; j++)
  896. __SYS_FPRINTF(hdl, " ");
  897. __SYS_FPRINTF(hdl, "- %s: %u times\n", profile->name, count);
  898. }
  899. break;
  900. }
  901. case INTERVAL: {
  902. unsigned int count =
  903. atomic_read(&profile->val.interval.count);
  904. if (count) {
  905. unsigned long time =
  906. atomic_read(&profile->val.interval.time);
  907. unsigned long ind_time = time / count;
  908. total_interval_time += time;
  909. total_interval_count += count;
  910. for (int j = 0 ; j < level ; j++)
  911. __SYS_FPRINTF(hdl, " ");
  912. __SYS_FPRINTF(hdl, "- (%11.11lu) %s: %u times, %lu msec\n",
  913. time, profile->name, count, ind_time);
  914. }
  915. break;
  916. }
  917. case CATEGORY:
  918. for (int j = 0 ; j < level ; j++)
  919. __SYS_FPRINTF(hdl, " ");
  920. __SYS_FPRINTF(hdl, "- %s:\n", profile->name);
  921. print_profile_result(hdl, profile, level + 1);
  922. break;
  923. }
  924. }
  925. if (total_interval_count) {
  926. __SYS_FPRINTF(hdl, " - (%11.11u) total: %u times, %lu msec\n",
  927. total_interval_time, total_interval_count,
  928. total_interval_time / total_interval_count);
  929. }
  930. }
  931. #endif /* PROFILE */
  932. static struct atomic_int in_terminate = { .counter = 0, };
  933. noreturn void shim_terminate (int err)
  934. {
  935. debug("teminating the whole process (%d)\n", err);
  936. /* do last clean-up of the process */
  937. shim_clean(err);
  938. DkProcessExit(err);
  939. }
  940. /* cleanup and terminate process, preserve exit code if err == 0 */
  941. int shim_clean (int err)
  942. {
  943. /* preventing multiple cleanup, this is mostly caused by
  944. assertion in shim_clean */
  945. atomic_inc(&in_terminate);
  946. if (atomic_read(&in_terminate) > 1)
  947. return 0;
  948. if (err != 0)
  949. cur_process.exit_code = err;
  950. store_all_msg_persist();
  951. #ifdef PROFILE
  952. if (ENTER_TIME) {
  953. switch (shim_get_tls()->context.syscall_nr) {
  954. case __NR_exit_group:
  955. SAVE_PROFILE_INTERVAL_SINCE(syscall_exit_group, ENTER_TIME);
  956. break;
  957. case __NR_exit:
  958. SAVE_PROFILE_INTERVAL_SINCE(syscall_exit, ENTER_TIME);
  959. break;
  960. }
  961. }
  962. if (ipc_cld_profile_send()) {
  963. MASTER_LOCK();
  964. PAL_HANDLE hdl = __open_shim_stdio();
  965. if (hdl) {
  966. __SYS_FPRINTF(hdl, "******************************\n");
  967. __SYS_FPRINTF(hdl, "profiling:\n");
  968. print_profile_result(hdl, &profile_root, 0);
  969. __SYS_FPRINTF(hdl, "******************************\n");
  970. }
  971. MASTER_UNLOCK();
  972. DkObjectClose(hdl);
  973. }
  974. #endif
  975. del_all_ipc_ports(0);
  976. if (shim_stdio && shim_stdio != (PAL_HANDLE) -1)
  977. DkObjectClose(shim_stdio);
  978. shim_stdio = NULL;
  979. debug("process %u exited with status %d\n", cur_process.vmid & 0xFFFF, cur_process.exit_code);
  980. MASTER_LOCK();
  981. DkProcessExit(cur_process.exit_code);
  982. return 0;
  983. }
  984. int message_confirm (const char * message, const char * options)
  985. {
  986. char answer;
  987. int noptions = strlen(options);
  988. char * option_str = __alloca(noptions * 2 + 3), * str = option_str;
  989. int ret = 0;
  990. *(str++) = ' ';
  991. *(str++) = '[';
  992. for (int i = 0 ; i < noptions ; i++) {
  993. *(str++) = options[i];
  994. *(str++) = '/';
  995. }
  996. str--;
  997. *(str++) = ']';
  998. *(str++) = ' ';
  999. MASTER_LOCK();
  1000. PAL_HANDLE hdl = __open_shim_stdio();
  1001. if (!hdl) {
  1002. MASTER_UNLOCK();
  1003. return -EACCES;
  1004. }
  1005. #define WRITE(buf, len) \
  1006. ({ int _ret = DkStreamWrite(hdl, 0, len, (void*)(buf), NULL); \
  1007. _ret ? : -PAL_ERRNO; })
  1008. #define READ(buf, len) \
  1009. ({ int _ret = DkStreamRead(hdl, 0, len, buf, NULL, 0); \
  1010. _ret ? : -PAL_ERRNO; })
  1011. if ((ret = WRITE(message, strlen(message))) < 0)
  1012. goto out;
  1013. if ((ret = WRITE(option_str, noptions * 2 + 3)) < 0)
  1014. goto out;
  1015. if ((ret = READ(&answer, 1)) < 0)
  1016. goto out;
  1017. out:
  1018. DkObjectClose(hdl);
  1019. MASTER_UNLOCK();
  1020. return (ret < 0) ? ret : answer;
  1021. }