diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 00:59:32 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 11:04:30 +1000 |
commit | 2e8e8d67ae75454b835990107bdd81ea3e04a268 (patch) | |
tree | 712dafc9ca7542e711bb4df58e6d02c683c3cbd0 | |
parent | e8fb0c108f83dbdd3dcd6110fa58fea7581d75f4 (diff) | |
download | busybox-w32-2e8e8d67ae75454b835990107bdd81ea3e04a268.tar.gz busybox-w32-2e8e8d67ae75454b835990107bdd81ea3e04a268.tar.bz2 busybox-w32-2e8e8d67ae75454b835990107bdd81ea3e04a268.zip |
win32: ash: forkshell_prepare()
-rw-r--r-- | shell/ash.c | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 4710f7153..6a1e78e19 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -13172,6 +13172,14 @@ static short profile_buf[16384]; | |||
13172 | extern int etext(); | 13172 | extern int etext(); |
13173 | #endif | 13173 | #endif |
13174 | 13174 | ||
13175 | #if ENABLE_PLATFORM_MINGW32 | ||
13176 | static const forkpoint_fn forkpoints[] = { | ||
13177 | NULL | ||
13178 | }; | ||
13179 | |||
13180 | static struct forkshell* forkshell_prepare(struct forkshell *fs); | ||
13181 | #endif | ||
13182 | |||
13175 | /* | 13183 | /* |
13176 | * Main routine. We initialize things, parse the arguments, execute | 13184 | * Main routine. We initialize things, parse the arguments, execute |
13177 | * profiles if we're a login shell, and then call cmdloop to execute | 13185 | * profiles if we're a login shell, and then call cmdloop to execute |
@@ -13315,6 +13323,16 @@ int ash_main(int argc UNUSED_PARAM, char **argv) | |||
13315 | 13323 | ||
13316 | /* | 13324 | /* |
13317 | * forkshell_prepare() and friends | 13325 | * forkshell_prepare() and friends |
13326 | * | ||
13327 | * The sequence is as follows: | ||
13328 | * - funcblocksize, funcstringsize, nodeptrsize are initialized | ||
13329 | * - forkshell_size(fs) is called to calculate the exact memory needed | ||
13330 | * - a new struct is allocated | ||
13331 | * - funcblock, funcstring, nodeptr are initialized from the new block | ||
13332 | * - forkshell_copy(fs) is called to copy recursively everything over | ||
13333 | * it will record all pointers along the way, to nodeptr | ||
13334 | * | ||
13335 | * When this memory is mapped elsewhere, pointer fixup will be needed | ||
13318 | */ | 13336 | */ |
13319 | #define SLIST_SIZE_BEGIN(name,type) \ | 13337 | #define SLIST_SIZE_BEGIN(name,type) \ |
13320 | static void \ | 13338 | static void \ |
@@ -13676,6 +13694,58 @@ forkshell_copy(struct forkshell *fs) | |||
13676 | SAVE_PTR4(new->n, new->argv, new->string, new->strlist); | 13694 | SAVE_PTR4(new->n, new->argv, new->string, new->strlist); |
13677 | return new; | 13695 | return new; |
13678 | } | 13696 | } |
13697 | |||
13698 | static struct forkshell * | ||
13699 | forkshell_prepare(struct forkshell *fs) | ||
13700 | { | ||
13701 | struct forkshell *new; | ||
13702 | int size, fp, nodeptr_offset; | ||
13703 | HANDLE h; | ||
13704 | SECURITY_ATTRIBUTES sa; | ||
13705 | |||
13706 | for (fp = 0; forkpoints[fp] && forkpoints[fp] != fs->fp; fp++) | ||
13707 | ; | ||
13708 | |||
13709 | if (!forkpoints[fp]) | ||
13710 | bb_error_msg_and_die("invalid forkpoint %08x", (int)fs->fp); | ||
13711 | fs->fpid = fp; | ||
13712 | |||
13713 | /* Calculate size of "new" */ | ||
13714 | fs->gvp = ash_ptr_to_globals_var; | ||
13715 | fs->gmp = ash_ptr_to_globals_misc; | ||
13716 | fs->cmdtable = cmdtable; | ||
13717 | fs->localvars = localvars; | ||
13718 | |||
13719 | nodeptrsize = 1; /* NULL terminated */ | ||
13720 | funcblocksize = 0; | ||
13721 | funcstringsize = 0; | ||
13722 | forkshell_size(fs); | ||
13723 | size = funcblocksize + funcstringsize + nodeptrsize*sizeof(int); | ||
13724 | |||
13725 | /* Allocate, initialize pointers */ | ||
13726 | memset(&sa, 0, sizeof(sa)); | ||
13727 | sa.nLength = sizeof(sa); | ||
13728 | sa.lpSecurityDescriptor = NULL; | ||
13729 | sa.bInheritHandle = TRUE; | ||
13730 | h = CreateFileMapping(INVALID_HANDLE_VALUE, &sa, PAGE_READWRITE, 0, size, NULL); | ||
13731 | new = (struct forkshell *)MapViewOfFile(h, FILE_MAP_WRITE, 0,0, 0); | ||
13732 | /* new = ckmalloc(size); */ | ||
13733 | funcblock = new; | ||
13734 | funcstring = (char *) funcblock + funcblocksize; | ||
13735 | nodeptr = (int*)((char *) funcstring + funcstringsize); | ||
13736 | nodeptr_offset = (int) nodeptr - (int) new; | ||
13737 | |||
13738 | /* Now pack them all */ | ||
13739 | forkshell_copy(fs); | ||
13740 | |||
13741 | /* Finish it up */ | ||
13742 | *nodeptr = 0; | ||
13743 | new->size = size; | ||
13744 | new->nodeptr_offset = nodeptr_offset; | ||
13745 | new->old_base = new; | ||
13746 | new->hMapFile = h; | ||
13747 | return new; | ||
13748 | } | ||
13679 | /*- | 13749 | /*- |
13680 | * Copyright (c) 1989, 1991, 1993, 1994 | 13750 | * Copyright (c) 1989, 1991, 1993, 1994 |
13681 | * The Regents of the University of California. All rights reserved. | 13751 | * The Regents of the University of California. All rights reserved. |