2000-02-17 20:38:33 +01:00
|
|
|
/* fork.cc
|
|
|
|
|
2007-01-12 16:26:02 +01:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006,
|
|
|
|
2007 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2005-01-12 23:40:46 +01:00
|
|
|
#include "cygerrno.h"
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2001-10-01 06:10:07 +02:00
|
|
|
#include "path.h"
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 02:37:18 +02:00
|
|
|
#include "fhandler.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "dtable.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "sigproc.h"
|
|
|
|
#include "pinfo.h"
|
2000-09-03 06:16:35 +02:00
|
|
|
#include "cygheap.h"
|
2000-09-01 22:54:22 +02:00
|
|
|
#include "child_info.h"
|
2004-11-26 05:15:10 +01:00
|
|
|
#include "cygtls.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "perprocess.h"
|
|
|
|
#include "dll_init.h"
|
2002-08-16 21:41:39 +02:00
|
|
|
#include "sync.h"
|
2002-10-14 22:25:52 +02:00
|
|
|
#include "shared_info.h"
|
2002-08-16 21:41:39 +02:00
|
|
|
#include "cygmalloc.h"
|
2002-10-19 02:57:06 +02:00
|
|
|
#include "cygthread.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-10-28 19:34:29 +02:00
|
|
|
#define NPIDS_HELD 4
|
2004-09-15 01:44:50 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Timeout to wait for child to start, parent to init child, etc. */
|
|
|
|
/* FIXME: Once things stabilize, bump up to a few minutes. */
|
|
|
|
#define FORK_WAIT_TIMEOUT (300 * 1000) /* 300 seconds */
|
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
class frok
|
|
|
|
{
|
|
|
|
dll *first_dll;
|
|
|
|
bool load_dlls;
|
|
|
|
child_info_fork ch;
|
|
|
|
const char *error;
|
|
|
|
int child_pid;
|
|
|
|
int this_errno;
|
2007-02-22 13:34:55 +01:00
|
|
|
int __stdcall parent (volatile char * volatile here);
|
|
|
|
int __stdcall child (volatile char * volatile here);
|
2005-09-28 17:18:49 +02:00
|
|
|
friend int fork ();
|
|
|
|
};
|
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
class lock_signals
|
|
|
|
{
|
|
|
|
bool worked;
|
|
|
|
public:
|
|
|
|
lock_signals ()
|
|
|
|
{
|
|
|
|
worked = sig_send (NULL, __SIGHOLD) == 0;
|
|
|
|
}
|
|
|
|
operator int () const
|
|
|
|
{
|
|
|
|
return worked;
|
|
|
|
}
|
|
|
|
void dont_bother ()
|
|
|
|
{
|
|
|
|
worked = false;
|
|
|
|
}
|
|
|
|
~lock_signals ()
|
|
|
|
{
|
|
|
|
if (worked)
|
|
|
|
sig_send (NULL, __SIGNOHOLD);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class lock_pthread
|
|
|
|
{
|
|
|
|
bool bother;
|
|
|
|
public:
|
|
|
|
lock_pthread (): bother (1)
|
|
|
|
{
|
|
|
|
pthread::atforkprepare ();
|
|
|
|
}
|
|
|
|
void dont_bother ()
|
|
|
|
{
|
|
|
|
bother = false;
|
|
|
|
}
|
|
|
|
~lock_pthread ()
|
|
|
|
{
|
|
|
|
if (bother)
|
|
|
|
pthread::atforkparent ();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class hold_everything
|
|
|
|
{
|
2007-03-01 19:43:38 +01:00
|
|
|
public: /* DELETEME*/
|
2007-02-22 13:34:55 +01:00
|
|
|
bool& ischild;
|
|
|
|
/* Note the order of the locks below. It is important,
|
|
|
|
to avoid races, that the lock order be preserved.
|
2007-07-07 18:43:03 +02:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
pthread is first because it serves as a master lock
|
|
|
|
against other forks being attempted while this one is active.
|
2007-07-07 18:43:03 +02:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
signals is next to stop signal processing for the duration
|
|
|
|
of the fork.
|
|
|
|
|
|
|
|
process is last. If it is put before signals, then a deadlock
|
|
|
|
could be introduced if the process attempts to exit due to a signal. */
|
|
|
|
lock_pthread pthread;
|
|
|
|
lock_signals signals;
|
|
|
|
lock_process process;
|
|
|
|
|
|
|
|
public:
|
|
|
|
hold_everything (bool& x): ischild (x) {}
|
|
|
|
operator int () const {return signals;}
|
|
|
|
|
|
|
|
~hold_everything()
|
|
|
|
{
|
|
|
|
if (ischild)
|
|
|
|
{
|
|
|
|
pthread.dont_bother ();
|
|
|
|
process.dont_bother ();
|
|
|
|
signals.dont_bother ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2006-03-13 19:29:48 +01:00
|
|
|
static void
|
2004-12-05 20:41:26 +01:00
|
|
|
resume_child (HANDLE forker_finished)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
SetEvent (forker_finished);
|
2000-10-13 00:15:47 +02:00
|
|
|
debug_printf ("signalled child");
|
2006-03-13 19:29:48 +01:00
|
|
|
return;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2005-04-14 19:08:02 +02:00
|
|
|
/* Notify parent that it is time for the next step. */
|
2000-10-13 00:15:47 +02:00
|
|
|
static void __stdcall
|
2002-09-22 05:38:57 +02:00
|
|
|
sync_with_parent (const char *s, bool hang_self)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-10-13 00:15:47 +02:00
|
|
|
debug_printf ("signalling parent: %s", s);
|
2004-12-05 20:41:26 +01:00
|
|
|
fork_info->ready (false);
|
2000-10-13 00:15:47 +02:00
|
|
|
if (hang_self)
|
|
|
|
{
|
2002-06-15 23:59:32 +02:00
|
|
|
HANDLE h = fork_info->forker_finished;
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Wait for the parent to fill in our stack and heap.
|
|
|
|
Don't wait forever here. If our parent dies we don't want to clog
|
|
|
|
the system. If the wait fails, we really can't continue so exit. */
|
|
|
|
DWORD psync_rc = WaitForSingleObject (h, FORK_WAIT_TIMEOUT);
|
|
|
|
debug_printf ("awake");
|
|
|
|
switch (psync_rc)
|
|
|
|
{
|
|
|
|
case WAIT_TIMEOUT:
|
2004-02-12 04:01:58 +01:00
|
|
|
api_fatal ("WFSO timed out %s", s);
|
2000-10-13 00:15:47 +02:00
|
|
|
break;
|
|
|
|
case WAIT_FAILED:
|
|
|
|
if (GetLastError () == ERROR_INVALID_HANDLE &&
|
2002-06-15 23:59:32 +02:00
|
|
|
WaitForSingleObject (fork_info->forker_finished, 1) != WAIT_FAILED)
|
2000-10-13 00:15:47 +02:00
|
|
|
break;
|
2004-02-12 04:01:58 +01:00
|
|
|
api_fatal ("WFSO failed %s, fork_finished %p, %E", s,
|
2002-06-15 23:59:32 +02:00
|
|
|
fork_info->forker_finished);
|
2000-10-13 00:15:47 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug_printf ("no problems");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
int __stdcall
|
2007-02-22 13:34:55 +01:00
|
|
|
frok::child (volatile char * volatile here)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-09-28 17:18:49 +02:00
|
|
|
HANDLE& hParent = ch.parent;
|
2005-03-22 20:00:31 +01:00
|
|
|
extern void fixup_hooks_after_fork ();
|
2004-01-19 06:46:54 +01:00
|
|
|
extern void fixup_timers_after_fork ();
|
2000-10-13 00:15:47 +02:00
|
|
|
debug_printf ("child is running. pid %d, ppid %d, stack here %p",
|
|
|
|
myself->pid, myself->ppid, __builtin_frame_address (0));
|
|
|
|
|
2003-12-07 23:37:12 +01:00
|
|
|
sync_with_parent ("after longjmp", true);
|
2002-09-30 06:35:18 +02:00
|
|
|
sigproc_printf ("hParent %p, child 1 first_dll %p, load_dlls %d", hParent,
|
2001-09-07 23:32:07 +02:00
|
|
|
first_dll, load_dlls);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
/* If we've played with the stack, stacksize != 0. That means that
|
|
|
|
fork() was invoked from other than the main thread. Make sure that
|
|
|
|
the threadinfo information is properly set up. */
|
2004-02-18 23:32:15 +01:00
|
|
|
if (fork_info->stacksize)
|
2004-02-12 04:01:58 +01:00
|
|
|
{
|
|
|
|
_main_tls = &_my_tls;
|
|
|
|
_main_tls->init_thread (NULL, NULL);
|
|
|
|
_main_tls->local_clib = *_impure_ptr;
|
|
|
|
_impure_ptr = &_main_tls->local_clib;
|
|
|
|
}
|
|
|
|
|
2007-02-23 16:15:50 +01:00
|
|
|
set_cygwin_privileges (hProcToken);
|
|
|
|
clear_procimptoken ();
|
|
|
|
cygheap->user.reimpersonate ();
|
2005-04-03 15:06:43 +02:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
char c;
|
|
|
|
if (GetEnvironmentVariable ("FORKDEBUG", &c, 1))
|
|
|
|
try_to_debug ();
|
|
|
|
char buf[80];
|
|
|
|
/* This is useful for debugging fork problems. Use gdb to attach to
|
|
|
|
the pid reported here. */
|
|
|
|
if (GetEnvironmentVariable ("CYGWIN_FORK_SLEEP", buf, sizeof (buf)))
|
|
|
|
{
|
|
|
|
small_printf ("Sleeping %d after fork, pid %u\n", atoi (buf), GetCurrentProcessId ());
|
2002-09-22 05:38:57 +02:00
|
|
|
Sleep (atoi (buf));
|
2000-10-13 00:15:47 +02:00
|
|
|
}
|
|
|
|
#endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-06-12 13:31:05 +02:00
|
|
|
set_file_api_mode (current_codepage);
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
MALLOC_CHECK;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-04-01 13:47:00 +02:00
|
|
|
#ifdef USE_SERVER
|
|
|
|
/* Incredible but true: If we use sockets and SYSV IPC shared memory,
|
|
|
|
there's a good chance that a duplicated socket in the child occupies
|
|
|
|
memory which is needed to duplicate shared memory from the parent
|
|
|
|
process, if the shared memory hasn't been duplicated already.
|
|
|
|
The same goes very likely for "normal" mmap shared memory, too, but
|
|
|
|
with SYSV IPC it was the first time observed. So, *never* fixup
|
|
|
|
fdtab before fixing up shared memory. */
|
|
|
|
if (fixup_shms_after_fork ())
|
|
|
|
api_fatal ("recreate_shm areas after fork failed");
|
|
|
|
#endif
|
2002-10-21 03:00:58 +02:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
MALLOC_CHECK;
|
|
|
|
|
|
|
|
/* If we haven't dynamically loaded any dlls, just signal
|
|
|
|
the parent. Otherwise, load all the dlls, tell the parent
|
|
|
|
that we're done, and wait for the parent to fill in the.
|
|
|
|
loaded dlls' data/bss. */
|
|
|
|
if (!load_dlls)
|
2002-10-22 22:16:31 +02:00
|
|
|
{
|
|
|
|
cygheap->fdtab.fixup_after_fork (hParent);
|
2003-12-07 23:37:12 +01:00
|
|
|
sync_with_parent ("performed fork fixup", false);
|
2002-10-22 22:16:31 +02:00
|
|
|
}
|
2000-10-13 00:15:47 +02:00
|
|
|
else
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-10-13 00:15:47 +02:00
|
|
|
dlls.load_after_fork (hParent, first_dll);
|
2002-10-22 22:16:31 +02:00
|
|
|
cygheap->fdtab.fixup_after_fork (hParent);
|
2003-12-07 23:37:12 +01:00
|
|
|
sync_with_parent ("loaded dlls", true);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2006-03-18 20:17:21 +01:00
|
|
|
init_console_handler (myself->ctty >= 0);
|
2005-07-06 22:05:03 +02:00
|
|
|
ForceCloseHandle1 (fork_info->forker_finished, forker_finished);
|
2000-07-15 04:48:11 +02:00
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
pthread::atforkchild ();
|
2004-01-19 06:46:54 +01:00
|
|
|
fixup_timers_after_fork ();
|
2000-10-17 01:55:58 +02:00
|
|
|
cygbench ("fork-child");
|
2005-08-11 18:30:48 +02:00
|
|
|
ld_preload ();
|
2005-10-29 17:19:34 +02:00
|
|
|
fixup_hooks_after_fork ();
|
|
|
|
_my_tls.fixup_after_fork ();
|
2006-03-29 08:35:25 +02:00
|
|
|
wait_for_sigthread (true);
|
2005-11-04 18:38:32 +01:00
|
|
|
cygwin_finished_initializing = true;
|
2000-10-13 00:15:47 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
#define NO_SLOW_PID_REUSE
|
2003-04-24 03:57:07 +02:00
|
|
|
#ifndef NO_SLOW_PID_REUSE
|
2000-11-15 07:27:48 +01:00
|
|
|
static void
|
|
|
|
slow_pid_reuse (HANDLE h)
|
|
|
|
{
|
2005-05-19 01:30:02 +02:00
|
|
|
static NO_COPY HANDLE last_fork_procs[NPIDS_HELD];
|
|
|
|
static NO_COPY unsigned nfork_procs;
|
2000-11-15 07:27:48 +01:00
|
|
|
|
2000-11-15 07:46:19 +01:00
|
|
|
if (nfork_procs >= (sizeof (last_fork_procs) / sizeof (last_fork_procs [0])))
|
2000-11-15 07:27:48 +01:00
|
|
|
nfork_procs = 0;
|
2004-12-05 20:41:26 +01:00
|
|
|
/* Keep a list of handles to child processes sitting around to prevent
|
2000-11-15 07:27:48 +01:00
|
|
|
Windows from reusing the same pid n times in a row. Having the same pids
|
|
|
|
close in succesion confuses bash. Keeping a handle open will stop
|
|
|
|
windows from reusing the same pid. */
|
|
|
|
if (last_fork_procs[nfork_procs])
|
2000-11-15 07:46:19 +01:00
|
|
|
ForceCloseHandle1 (last_fork_procs[nfork_procs], fork_stupidity);
|
|
|
|
if (DuplicateHandle (hMainProc, h, hMainProc, &last_fork_procs[nfork_procs],
|
2000-11-15 07:27:48 +01:00
|
|
|
0, FALSE, DUPLICATE_SAME_ACCESS))
|
2000-11-15 07:46:19 +01:00
|
|
|
ProtectHandle1 (last_fork_procs[nfork_procs], fork_stupidity);
|
|
|
|
else
|
2000-11-15 07:27:48 +01:00
|
|
|
{
|
|
|
|
last_fork_procs[nfork_procs] = NULL;
|
|
|
|
system_printf ("couldn't create last_fork_proc, %E");
|
|
|
|
}
|
|
|
|
nfork_procs++;
|
|
|
|
}
|
2003-03-22 02:45:18 +01:00
|
|
|
#endif
|
2000-11-15 07:27:48 +01:00
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
int __stdcall
|
2007-02-22 13:34:55 +01:00
|
|
|
frok::parent (volatile char * volatile stack_here)
|
2000-10-13 00:15:47 +02:00
|
|
|
{
|
2004-12-05 20:41:26 +01:00
|
|
|
HANDLE forker_finished;
|
2000-10-13 00:15:47 +02:00
|
|
|
DWORD rc;
|
2005-09-28 17:18:49 +02:00
|
|
|
child_pid = -1;
|
|
|
|
error = NULL;
|
|
|
|
this_errno = 0;
|
|
|
|
bool fix_impersonation = false;
|
|
|
|
pinfo child;
|
2006-03-18 20:17:21 +01:00
|
|
|
static char errbuf[256];
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-09-05 19:30:04 +02:00
|
|
|
int c_flags = GetPriorityClass (hMainProc);
|
2005-10-29 22:33:59 +02:00
|
|
|
debug_printf ("priority class %d", c_flags);
|
2000-10-13 00:15:47 +02:00
|
|
|
|
|
|
|
/* If we don't have a console, then don't create a console for the
|
|
|
|
child either. */
|
2002-09-19 17:12:48 +02:00
|
|
|
HANDLE console_handle = CreateFile ("CONOUT$", GENERIC_WRITE,
|
|
|
|
FILE_SHARE_WRITE, &sec_none_nih,
|
|
|
|
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,
|
|
|
|
NULL);
|
2000-10-13 00:15:47 +02:00
|
|
|
|
2002-09-19 17:12:48 +02:00
|
|
|
if (console_handle != INVALID_HANDLE_VALUE)
|
2000-10-13 00:15:47 +02:00
|
|
|
CloseHandle (console_handle);
|
|
|
|
else
|
|
|
|
c_flags |= DETACHED_PROCESS;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-26 12:13:41 +02:00
|
|
|
/* Some file types (currently only sockets) need extra effort in the
|
|
|
|
parent after CreateProcess and before copying the datastructures
|
|
|
|
to the child. So we have to start the child in suspend state,
|
|
|
|
unfortunately, to avoid a race condition. */
|
2001-04-18 23:10:15 +02:00
|
|
|
if (cygheap->fdtab.need_fixup_before ())
|
2000-10-26 12:13:41 +02:00
|
|
|
c_flags |= CREATE_SUSPENDED;
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Remember the address of the first loaded dll and decide
|
|
|
|
if we need to load dlls. We do this here so that this
|
|
|
|
information will be available in the parent and, when
|
|
|
|
the stack is copied, in the child. */
|
|
|
|
first_dll = dlls.start.next;
|
|
|
|
load_dlls = dlls.reload_on_fork && dlls.loaded_dlls;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* This will help some of the confusion. */
|
|
|
|
fflush (stdout);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
forker_finished = CreateEvent (&sec_all, FALSE, FALSE, NULL);
|
|
|
|
if (forker_finished == NULL)
|
|
|
|
{
|
2005-09-28 17:18:49 +02:00
|
|
|
this_errno = geterrno_from_win_error ();
|
2005-09-30 02:18:30 +02:00
|
|
|
error = "unable to allocate forker_finished event";
|
2000-10-13 00:15:47 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-07-13 22:00:27 +02:00
|
|
|
ProtectHandleINH (forker_finished);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
ch.forker_finished = forker_finished;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-10-29 22:33:59 +02:00
|
|
|
ch.stackbottom = _tlsbase;
|
2007-02-22 13:34:55 +01:00
|
|
|
ch.stacktop = (void *) stack_here;
|
2005-10-29 22:33:59 +02:00
|
|
|
ch.stacksize = (char *) ch.stackbottom - (char *) stack_here;
|
|
|
|
debug_printf ("stack - bottom %p, top %p, size %d",
|
|
|
|
ch.stackbottom, ch.stacktop, ch.stacksize);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-03-13 19:29:48 +01:00
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
STARTUPINFO si;
|
|
|
|
|
|
|
|
memset (&si, 0, sizeof (si));
|
2000-10-13 00:15:47 +02:00
|
|
|
si.cb = sizeof (STARTUPINFO);
|
2006-12-05 11:59:21 +01:00
|
|
|
|
2004-12-05 20:41:26 +01:00
|
|
|
si.lpReserved2 = (LPBYTE) &ch;
|
2002-09-22 05:38:57 +02:00
|
|
|
si.cbReserved2 = sizeof (ch);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-03-29 08:35:25 +02:00
|
|
|
syscall_printf ("CreateProcess (%s, %s, 0, 0, 1, %p, 0, 0, %p, %p)",
|
|
|
|
myself->progname, myself->progname, c_flags, &si, &pi);
|
|
|
|
bool locked = __malloc_lock ();
|
|
|
|
time_t start_time = time (NULL);
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Remove impersonation */
|
2003-06-30 15:07:36 +02:00
|
|
|
cygheap->user.deimpersonate ();
|
2005-09-28 17:18:49 +02:00
|
|
|
fix_impersonation = true;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-03-13 22:10:14 +01:00
|
|
|
while (1)
|
2000-10-13 00:15:47 +02:00
|
|
|
{
|
2006-03-13 22:10:14 +01:00
|
|
|
rc = CreateProcess (myself->progname, /* image to run */
|
|
|
|
myself->progname, /* what we send in arg0 */
|
|
|
|
&sec_none_nih,
|
|
|
|
&sec_none_nih,
|
|
|
|
TRUE, /* inherit handles from parent */
|
|
|
|
c_flags,
|
|
|
|
NULL, /* environment filled in later */
|
|
|
|
0, /* use current drive/directory */
|
|
|
|
&si,
|
|
|
|
&pi);
|
|
|
|
|
|
|
|
if (!rc)
|
|
|
|
{
|
|
|
|
this_errno = geterrno_from_win_error ();
|
|
|
|
error = "CreateProcessA failed";
|
|
|
|
memset (&pi, 0, sizeof (pi));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-06-16 21:36:07 +02:00
|
|
|
|
2006-03-13 22:10:14 +01:00
|
|
|
/* Fixup the parent datastructure if needed and resume the child's
|
|
|
|
main thread. */
|
|
|
|
if (c_flags & CREATE_SUSPENDED)
|
|
|
|
{
|
|
|
|
cygheap->fdtab.fixup_before_fork (pi.dwProcessId);
|
|
|
|
ResumeThread (pi.hThread);
|
|
|
|
}
|
2000-10-26 12:13:41 +02:00
|
|
|
|
2006-03-18 20:17:21 +01:00
|
|
|
CloseHandle (pi.hThread);
|
|
|
|
|
|
|
|
/* Protect the handle but name it similarly to the way it will
|
|
|
|
be called in subproc handling. */
|
|
|
|
ProtectHandle1 (pi.hProcess, childhProc);
|
|
|
|
|
2006-03-13 22:10:14 +01:00
|
|
|
strace.write_childpid (ch, pi.dwProcessId);
|
|
|
|
|
|
|
|
/* Wait for subproc to initialize itself. */
|
|
|
|
if (!ch.sync (pi.dwProcessId, pi.hProcess, FORK_WAIT_TIMEOUT))
|
|
|
|
{
|
2006-03-18 20:17:21 +01:00
|
|
|
DWORD exit_code = ch.proc_retry (pi.hProcess);
|
2006-03-15 01:29:14 +01:00
|
|
|
if (!exit_code)
|
|
|
|
continue;
|
2006-03-13 22:10:14 +01:00
|
|
|
this_errno = EAGAIN;
|
2006-03-14 22:01:35 +01:00
|
|
|
/* Not thread safe, but do we care? */
|
2006-03-18 20:17:21 +01:00
|
|
|
__small_sprintf (errbuf, "died waiting for longjmp before initialization, "
|
2006-03-14 22:01:35 +01:00
|
|
|
"retry %d, exit code %p", ch.retry, exit_code);
|
2006-03-18 20:17:21 +01:00
|
|
|
error = errbuf;
|
2006-03-13 22:10:14 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-12-29 21:46:34 +01:00
|
|
|
|
2006-03-29 08:35:25 +02:00
|
|
|
/* Restore impersonation */
|
|
|
|
cygheap->user.reimpersonate ();
|
|
|
|
fix_impersonation = false;
|
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
child_pid = cygwin_pid (pi.dwProcessId);
|
|
|
|
child.init (child_pid, 1, NULL);
|
2004-08-31 05:34:04 +02:00
|
|
|
|
2004-12-05 20:41:26 +01:00
|
|
|
if (!child)
|
2003-09-26 05:20:30 +02:00
|
|
|
{
|
2005-09-28 17:18:49 +02:00
|
|
|
this_errno = get_errno () == ENOMEM ? ENOMEM : EAGAIN;
|
|
|
|
#ifdef DEBUGGING
|
2005-09-30 02:18:30 +02:00
|
|
|
error = "pinfo failed";
|
2005-09-28 17:18:49 +02:00
|
|
|
#else
|
2003-09-26 05:20:30 +02:00
|
|
|
syscall_printf ("pinfo failed");
|
2005-09-28 17:18:49 +02:00
|
|
|
#endif
|
2003-09-26 05:20:30 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-03-13 22:10:14 +01:00
|
|
|
child->start_time = start_time; /* Register child's starting time. */
|
2005-07-29 16:22:56 +02:00
|
|
|
child->nice = myself->nice;
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Initialize things that are done later in dll_crt0_1 that aren't done
|
|
|
|
for the forkee. */
|
2004-12-05 20:41:26 +01:00
|
|
|
strcpy (child->progname, myself->progname);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Fill in fields in the child's process table entry. */
|
2004-12-05 20:41:26 +01:00
|
|
|
child->dwProcessId = pi.dwProcessId;
|
|
|
|
child.hProcess = pi.hProcess;
|
2001-02-10 05:20:52 +01:00
|
|
|
|
|
|
|
/* Hopefully, this will succeed. The alternative to doing things this
|
|
|
|
way is to reserve space prior to calling CreateProcess and then fill
|
|
|
|
it in afterwards. This requires more bookkeeping than I like, though,
|
|
|
|
so we'll just do it the easy way. So, terminate any child process if
|
|
|
|
we can't actually record the pid in the internal table. */
|
2004-12-23 15:57:08 +01:00
|
|
|
if (!child.remember (false))
|
2001-02-10 05:20:52 +01:00
|
|
|
{
|
|
|
|
TerminateProcess (pi.hProcess, 1);
|
2005-09-28 17:18:49 +02:00
|
|
|
this_errno = EAGAIN;
|
2005-09-30 02:18:30 +02:00
|
|
|
#ifdef DEBUGGING0
|
|
|
|
error = "child.remember failed";
|
2005-09-28 17:18:49 +02:00
|
|
|
#endif
|
2001-02-10 05:20:52 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2003-04-24 03:57:07 +02:00
|
|
|
#ifndef NO_SLOW_PID_REUSE
|
2001-02-10 05:20:52 +01:00
|
|
|
slow_pid_reuse (pi.hProcess);
|
2003-03-22 02:45:18 +01:00
|
|
|
#endif
|
2000-10-13 00:15:47 +02:00
|
|
|
|
|
|
|
/* CHILD IS STOPPED */
|
|
|
|
debug_printf ("child is alive (but stopped)");
|
|
|
|
|
2006-03-29 08:35:25 +02:00
|
|
|
/* Initialize, in order: stack, dll data, dll bss.
|
|
|
|
data, bss, heap were done earlier (in dcrt0.cc)
|
|
|
|
Note: variables marked as NO_COPY will not be copied since they are
|
|
|
|
placed in a protected segment. */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
MALLOC_CHECK;
|
2005-12-17 05:36:39 +01:00
|
|
|
const void *impure_beg;
|
|
|
|
const void *impure_end;
|
|
|
|
const char *impure;
|
2003-12-23 17:26:31 +01:00
|
|
|
if (&_my_tls == _main_tls)
|
2005-12-17 05:36:39 +01:00
|
|
|
impure_beg = impure_end = impure = NULL;
|
2003-12-23 17:26:31 +01:00
|
|
|
else
|
|
|
|
{
|
2005-12-17 05:36:39 +01:00
|
|
|
impure = "impure";
|
2003-12-23 17:26:31 +01:00
|
|
|
impure_beg = _impure_ptr;
|
|
|
|
impure_end = _impure_ptr + 1;
|
|
|
|
}
|
2005-12-17 05:36:39 +01:00
|
|
|
rc = child_copy (pi.hProcess, true,
|
|
|
|
"stack", stack_here, ch.stackbottom,
|
|
|
|
impure, impure_beg, impure_end,
|
|
|
|
NULL);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-08-16 21:41:39 +02:00
|
|
|
__malloc_unlock ();
|
2004-02-12 04:01:58 +01:00
|
|
|
locked = false;
|
2000-10-13 00:15:47 +02:00
|
|
|
MALLOC_CHECK;
|
|
|
|
if (!rc)
|
2006-03-13 19:29:48 +01:00
|
|
|
{
|
|
|
|
this_errno = get_errno ();
|
2006-03-18 20:17:21 +01:00
|
|
|
DWORD exit_code;
|
|
|
|
if (!GetExitCodeProcess (pi.hProcess, &exit_code))
|
|
|
|
exit_code = 0xdeadbeef;
|
|
|
|
__small_sprintf (errbuf, "pid %u, exitval %p", pi.dwProcessId, exit_code);
|
|
|
|
error = errbuf;
|
2006-03-13 19:29:48 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Now fill data/bss of any DLLs that were linked into the program. */
|
|
|
|
for (dll *d = dlls.istart (DLL_LINK); d; d = dlls.inext ())
|
|
|
|
{
|
|
|
|
debug_printf ("copying data/bss of a linked dll");
|
2005-12-17 05:36:39 +01:00
|
|
|
if (!child_copy (pi.hProcess, true,
|
|
|
|
"linked dll data", d->p.data_start, d->p.data_end,
|
|
|
|
"linked dll bss", d->p.bss_start, d->p.bss_end,
|
|
|
|
NULL))
|
2005-09-28 17:18:49 +02:00
|
|
|
{
|
|
|
|
this_errno = get_errno ();
|
|
|
|
#ifdef DEBUGGING
|
2006-03-18 20:17:21 +01:00
|
|
|
DWORD exit_code;
|
|
|
|
if (!GetExitCodeProcess (pi.hProcess, &exit_code))
|
|
|
|
exit_code = 0xdeadbeef;
|
|
|
|
__small_sprintf (errbuf, "pid %u, exitval %p", pi.dwProcessId, exit_code);
|
|
|
|
error = errbuf;
|
2005-09-28 17:18:49 +02:00
|
|
|
#endif
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2006-03-13 19:29:48 +01:00
|
|
|
/* Start thread, and then wait for it to reload dlls. */
|
|
|
|
resume_child (forker_finished);
|
|
|
|
if (!ch.sync (child->pid, pi.hProcess, FORK_WAIT_TIMEOUT))
|
2004-12-05 20:41:26 +01:00
|
|
|
{
|
2005-09-28 17:18:49 +02:00
|
|
|
this_errno = EAGAIN;
|
2005-09-30 02:18:30 +02:00
|
|
|
error = "died waiting for dll loading";
|
2004-12-05 20:41:26 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
/* If DLLs were loaded in the parent, then the child has reloaded all
|
|
|
|
of them and is now waiting to have all of the individual data and
|
|
|
|
bss sections filled in. */
|
|
|
|
if (load_dlls)
|
|
|
|
{
|
|
|
|
/* CHILD IS STOPPED */
|
|
|
|
/* write memory of reloaded dlls */
|
|
|
|
for (dll *d = dlls.istart (DLL_LOAD); d; d = dlls.inext ())
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-10-13 00:15:47 +02:00
|
|
|
debug_printf ("copying data/bss for a loaded dll");
|
2005-12-17 05:36:39 +01:00
|
|
|
if (!child_copy (pi.hProcess, true,
|
|
|
|
"loaded dll data", d->p.data_start, d->p.data_end,
|
|
|
|
"loaded dll bss", d->p.bss_start, d->p.bss_end,
|
|
|
|
NULL))
|
2005-09-28 17:18:49 +02:00
|
|
|
{
|
|
|
|
this_errno = get_errno ();
|
|
|
|
#ifdef DEBUGGING
|
2005-09-30 02:18:30 +02:00
|
|
|
error = "copying data/bss for a loaded dll";
|
2005-09-28 17:18:49 +02:00
|
|
|
#endif
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2000-10-13 00:15:47 +02:00
|
|
|
/* Start the child up again. */
|
2005-07-06 22:05:03 +02:00
|
|
|
resume_child (forker_finished);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
ForceCloseHandle (forker_finished);
|
|
|
|
forker_finished = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-12-05 20:41:26 +01:00
|
|
|
return child_pid;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Common cleanup code for failure cases */
|
2005-09-28 17:18:49 +02:00
|
|
|
cleanup:
|
|
|
|
if (fix_impersonation)
|
|
|
|
cygheap->user.reimpersonate ();
|
2004-02-12 04:01:58 +01:00
|
|
|
if (locked)
|
|
|
|
__malloc_unlock ();
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Remember to de-allocate the fd table. */
|
2005-09-05 19:30:04 +02:00
|
|
|
if (pi.hProcess && !child.hProcess)
|
2000-02-17 20:38:33 +01:00
|
|
|
ForceCloseHandle1 (pi.hProcess, childhProc);
|
|
|
|
if (forker_finished)
|
|
|
|
ForceCloseHandle (forker_finished);
|
2005-09-28 17:18:49 +02:00
|
|
|
debug_printf ("returning -1");
|
2000-02-17 20:38:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-10-13 00:15:47 +02:00
|
|
|
extern "C" int
|
|
|
|
fork ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-09-28 17:18:49 +02:00
|
|
|
frok grouped;
|
2000-10-13 00:15:47 +02:00
|
|
|
|
|
|
|
debug_printf ("entering");
|
2005-06-01 05:46:56 +02:00
|
|
|
grouped.first_dll = NULL;
|
2000-10-14 07:52:38 +02:00
|
|
|
grouped.load_dlls = 0;
|
2000-10-13 00:15:47 +02:00
|
|
|
|
2005-10-29 17:19:34 +02:00
|
|
|
int res;
|
2007-02-22 13:34:55 +01:00
|
|
|
bool ischild = false;
|
2005-10-29 17:19:34 +02:00
|
|
|
|
2000-10-25 05:54:50 +02:00
|
|
|
myself->set_has_pgid_children ();
|
|
|
|
|
2005-06-01 05:46:56 +02:00
|
|
|
if (grouped.ch.parent == NULL)
|
|
|
|
return -1;
|
|
|
|
if (grouped.ch.subproc_ready == NULL)
|
2004-12-05 20:41:26 +01:00
|
|
|
{
|
|
|
|
system_printf ("unable to allocate subproc_ready event, %E");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-10-13 00:15:47 +02:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
{
|
|
|
|
hold_everything held_everything (ischild);
|
2005-12-23 02:24:14 +01:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
if (!held_everything)
|
|
|
|
{
|
|
|
|
if (exit_state)
|
|
|
|
Sleep (INFINITE);
|
|
|
|
set_errno (EAGAIN);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-11-17 17:36:00 +01:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
ischild = !!setjmp (grouped.ch.jmp);
|
2005-11-17 17:36:00 +01:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
volatile char * volatile esp;
|
|
|
|
__asm__ volatile ("movl %%esp,%0": "=r" (esp));
|
|
|
|
|
|
|
|
if (!ischild)
|
2006-03-22 17:42:45 +01:00
|
|
|
res = grouped.parent (esp);
|
2007-02-22 13:34:55 +01:00
|
|
|
else
|
2007-03-01 19:43:38 +01:00
|
|
|
{
|
|
|
|
res = grouped.child (esp);
|
|
|
|
ischild = true; /* might have been reset by fork mem copy */
|
|
|
|
}
|
2007-02-22 13:34:55 +01:00
|
|
|
}
|
2000-10-13 00:15:47 +02:00
|
|
|
|
|
|
|
MALLOC_CHECK;
|
2005-09-28 17:18:49 +02:00
|
|
|
if (ischild || res > 0)
|
|
|
|
/* everything is ok */;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!grouped.error)
|
2005-09-30 02:18:30 +02:00
|
|
|
syscall_printf ("fork failed - child pid %d, errno %d", grouped.child_pid, grouped.this_errno);
|
2005-09-28 17:18:49 +02:00
|
|
|
else
|
2005-09-30 02:18:30 +02:00
|
|
|
{
|
|
|
|
char buf[strlen (grouped.error) + sizeof ("child %d - , errno 4294967295 ")];
|
|
|
|
strcpy (buf, "child %d - ");
|
|
|
|
strcat (buf, grouped.error);
|
|
|
|
strcat (buf, ", errno %d");
|
|
|
|
system_printf (buf, grouped.child_pid, grouped.this_errno);
|
|
|
|
}
|
|
|
|
|
2005-09-28 17:18:49 +02:00
|
|
|
set_errno (grouped.this_errno);
|
|
|
|
}
|
2005-10-21 16:08:19 +02:00
|
|
|
syscall_printf ("%d = fork()", res);
|
2000-10-13 00:15:47 +02:00
|
|
|
return res;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2000-11-15 07:27:48 +01:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
void
|
|
|
|
fork_init ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /*DEBUGGING*/
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#ifdef NEWVFORK
|
|
|
|
/* Dummy function to force second assignment below to actually be
|
|
|
|
carried out */
|
|
|
|
static vfork_save *
|
|
|
|
get_vfork_val ()
|
|
|
|
{
|
|
|
|
return vfork_storage.val ();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-08-18 07:49:26 +02:00
|
|
|
extern "C" int
|
2000-02-17 20:38:33 +01:00
|
|
|
vfork ()
|
|
|
|
{
|
|
|
|
#ifndef NEWVFORK
|
2004-02-01 19:29:12 +01:00
|
|
|
debug_printf ("stub called");
|
2000-02-17 20:38:33 +01:00
|
|
|
return fork ();
|
|
|
|
#else
|
|
|
|
vfork_save *vf = get_vfork_val ();
|
2000-08-03 05:02:41 +02:00
|
|
|
char **esp, **pp;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
if (vf == NULL)
|
|
|
|
vf = vfork_storage.create ();
|
2001-09-14 06:37:57 +02:00
|
|
|
else if (vf->pid)
|
|
|
|
return fork ();
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
// FIXME the tls stuff could introduce a signal race if a child process
|
|
|
|
// exits quickly.
|
2000-02-17 20:38:33 +01:00
|
|
|
if (!setjmp (vf->j))
|
|
|
|
{
|
|
|
|
vf->pid = -1;
|
2000-08-03 05:02:41 +02:00
|
|
|
__asm__ volatile ("movl %%esp,%0": "=r" (vf->vfork_esp):);
|
2000-02-17 20:38:33 +01:00
|
|
|
__asm__ volatile ("movl %%ebp,%0": "=r" (vf->vfork_ebp):);
|
2003-11-28 21:55:59 +01:00
|
|
|
for (pp = (char **) vf->frame, esp = vf->vfork_esp;
|
2001-09-15 02:47:44 +02:00
|
|
|
esp <= vf->vfork_ebp + 2; pp++, esp++)
|
2000-08-03 05:02:41 +02:00
|
|
|
*pp = *esp;
|
2002-08-18 07:49:26 +02:00
|
|
|
vf->ctty = myself->ctty;
|
|
|
|
vf->sid = myself->sid;
|
|
|
|
vf->pgid = myself->pgid;
|
2004-01-03 19:15:03 +01:00
|
|
|
cygheap->ctty_on_hold = cygheap->ctty;
|
2005-11-14 05:28:45 +01:00
|
|
|
vf->console_count = cygheap->console_count;
|
|
|
|
debug_printf ("cygheap->ctty_on_hold %p, cygheap->console_count %d", cygheap->ctty_on_hold, cygheap->console_count);
|
2001-06-24 23:57:50 +02:00
|
|
|
int res = cygheap->fdtab.vfork_child_dup () ? 0 : -1;
|
|
|
|
debug_printf ("%d = vfork()", res);
|
2004-02-12 04:01:58 +01:00
|
|
|
_my_tls.call_signal_handler (); // FIXME: racy
|
2003-11-28 21:55:59 +01:00
|
|
|
vf->tls = _my_tls;
|
2001-06-24 23:57:50 +02:00
|
|
|
return res;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
vf = get_vfork_val ();
|
2001-09-14 02:49:00 +02:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
for (pp = (char **) vf->frame, esp = vf->vfork_esp;
|
2001-09-15 02:47:44 +02:00
|
|
|
esp <= vf->vfork_ebp + 2; pp++, esp++)
|
2001-09-14 02:49:00 +02:00
|
|
|
*esp = *pp;
|
|
|
|
|
2001-09-15 02:47:44 +02:00
|
|
|
cygheap->fdtab.vfork_parent_restore ();
|
|
|
|
|
2002-08-18 07:49:26 +02:00
|
|
|
myself->ctty = vf->ctty;
|
|
|
|
myself->sid = vf->sid;
|
|
|
|
myself->pgid = vf->pgid;
|
2004-01-03 19:15:03 +01:00
|
|
|
termios_printf ("cygheap->ctty %p, cygheap->ctty_on_hold %p", cygheap->ctty, cygheap->ctty_on_hold);
|
2005-11-14 05:28:45 +01:00
|
|
|
cygheap->console_count = vf->console_count;
|
2002-08-18 07:49:26 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
if (vf->pid < 0)
|
|
|
|
{
|
2002-08-18 07:49:26 +02:00
|
|
|
int exitval = vf->exitval;
|
2001-09-14 06:39:56 +02:00
|
|
|
vf->pid = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
if ((vf->pid = fork ()) == 0)
|
|
|
|
exit (exitval);
|
|
|
|
}
|
|
|
|
|
2001-09-14 06:37:57 +02:00
|
|
|
int pid = vf->pid;
|
|
|
|
vf->pid = 0;
|
2001-10-04 04:34:20 +02:00
|
|
|
debug_printf ("exiting vfork, pid %d", pid);
|
2001-09-15 02:47:44 +02:00
|
|
|
sig_dispatch_pending ();
|
2003-11-28 21:55:59 +01:00
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
_my_tls.call_signal_handler (); // FIXME: racy
|
2003-11-28 21:55:59 +01:00
|
|
|
_my_tls = vf->tls;
|
2001-09-14 06:37:57 +02:00
|
|
|
return pid;
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif
|
|
|
|
}
|
2005-06-01 05:46:56 +02:00
|
|
|
|
2005-12-17 05:36:39 +01:00
|
|
|
/* Copy memory from one process to another. */
|
|
|
|
|
|
|
|
bool
|
|
|
|
child_copy (HANDLE hp, bool write, ...)
|
2005-06-01 05:46:56 +02:00
|
|
|
{
|
2005-12-17 05:36:39 +01:00
|
|
|
va_list args;
|
|
|
|
va_start (args, write);
|
|
|
|
static const char *huh[] = {"read", "write"};
|
|
|
|
|
|
|
|
char *what;
|
|
|
|
while ((what = va_arg (args, char *)))
|
|
|
|
{
|
|
|
|
char *low = va_arg (args, char *);
|
|
|
|
char *high = va_arg (args, char *);
|
|
|
|
DWORD todo = wincap.chunksize () ?: high - low;
|
|
|
|
char *here;
|
|
|
|
|
|
|
|
for (here = low; here < high; here += todo)
|
|
|
|
{
|
|
|
|
DWORD done = 0;
|
|
|
|
if (here + todo > high)
|
|
|
|
todo = high - here;
|
|
|
|
int res;
|
|
|
|
if (write)
|
|
|
|
res = WriteProcessMemory (hp, here, here, todo, &done);
|
|
|
|
else
|
|
|
|
res = ReadProcessMemory (hp, here, here, todo, &done);
|
2005-12-29 21:46:34 +01:00
|
|
|
debug_printf ("%s - hp %p low %p, high %p, res %d", what, hp, low, high, res);
|
2005-12-17 05:36:39 +01:00
|
|
|
if (!res || todo != done)
|
|
|
|
{
|
|
|
|
if (!res)
|
|
|
|
__seterrno ();
|
|
|
|
/* If this happens then there is a bug in our fork
|
|
|
|
implementation somewhere. */
|
|
|
|
system_printf ("%s %s copy failed, %p..%p, done %d, windows pid %u, %E",
|
2007-01-12 16:26:02 +01:00
|
|
|
what, huh[write], low, high, done, myself->dwProcessId);
|
2005-12-17 05:36:39 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
debug_printf ("done");
|
|
|
|
return true;
|
|
|
|
|
|
|
|
err:
|
|
|
|
TerminateProcess (hp, 1);
|
|
|
|
set_errno (EAGAIN);
|
|
|
|
return false;
|
2005-06-01 05:46:56 +02:00
|
|
|
}
|