* fhandler.cc (fcntl): Print flags in hex.

* dcrt0.cc (dll_crt0_0): Semi-revert 2006-03-14 change which moved pinfo_init
and uinfo_init here.
(dll_crt0_1): Ditto.
(__dll_crt0): Ditto.  Don't call update_envptrs here.
(dll_crt0_1): Ditto.  Move wait_for_sigthread call here from dll_crt0_0.
* environ.cc (environ_init): Call it here instead.
* sigproc.cc (my_readsig): New static variable.
(wait_for_sigthread): Set up read pipe here since we are assured that we have
the proper privileges when this is called.
(talktome): Eliminate second argument since it is available as a global now.
(wait_sig): Reflect use of my_readsig.
This commit is contained in:
Christopher Faylor 2006-03-22 16:42:45 +00:00
parent 69769b7cb5
commit 81010d21e6
6 changed files with 59 additions and 39 deletions

View File

@ -1,3 +1,22 @@
2006-03-22 Eric Blake <ebb9@byu.net>
* fhandler.cc (fcntl): Print flags in hex.
2006-03-22 Christopher Faylor <cgf@timesys.com>
* dcrt0.cc (dll_crt0_0): Semi-revert 2006-03-14 change which moved
pinfo_init and uinfo_init here.
(dll_crt0_1): Ditto.
(__dll_crt0): Ditto. Don't call update_envptrs here.
(dll_crt0_1): Ditto. Move wait_for_sigthread call here from dll_crt0_0.
* environ.cc (environ_init): Call it here instead.
* sigproc.cc (my_readsig): New static variable.
(wait_for_sigthread): Set up read pipe here since we are assured that
we have the proper privileges when this is called.
(talktome): Eliminate second argument since it is available as a global
now.
(wait_sig): Reflect use of my_readsig.
2006-03-22 Corinna Vinschen <corinna@vinschen.de> 2006-03-22 Corinna Vinschen <corinna@vinschen.de>
* thread.cc (pthread_cond::init): Disable validity test of object * thread.cc (pthread_cond::init): Disable validity test of object
@ -58,8 +77,8 @@
2006-03-19 Christopher Faylor <cgf@timesys.com> 2006-03-19 Christopher Faylor <cgf@timesys.com>
* dcrt0.cc (dll_crt0_0): Oops. We need to bother with setting this in * dcrt0.cc (dll_crt0_0): Oops. We need to bother with setting
the fork/exec case. init_console_handler in the fork/exec case.
2006-03-19 Christopher Faylor <cgf@timesys.com> 2006-03-19 Christopher Faylor <cgf@timesys.com>

View File

@ -754,12 +754,6 @@ dll_crt0_0 ()
user_data->resourcelocks->Init (); user_data->resourcelocks->Init ();
user_data->threadinterface->Init (); user_data->threadinterface->Init ();
if (!in_forkee)
{
pinfo_init (envp, envc);
uinfo_init (); /* initialize user info */
}
_cygtls::init (); _cygtls::init ();
/* Initialize events */ /* Initialize events */
@ -838,6 +832,7 @@ dll_crt0_1 (char *)
fork_init (); fork_init ();
} }
#endif #endif
pinfo_init (envp, envc);
/* Can be set only after environment has been initialized. */ /* Can be set only after environment has been initialized. */
if (wincap.has_security ()) if (wincap.has_security ())
@ -849,6 +844,14 @@ dll_crt0_1 (char *)
/* Allocate cygheap->fdtab */ /* Allocate cygheap->fdtab */
dtable_init (); dtable_init ();
uinfo_init (); /* initialize user info */
wait_for_sigthread ();
extern DWORD threadfunc_ix;
if (!threadfunc_ix)
system_printf ("internal error: couldn't determine location of thread function on stack. Expect signal problems.");
/* Connect to tty. */ /* Connect to tty. */
tty_init (); tty_init ();
@ -960,13 +963,7 @@ initialize_main_tls (char *padding)
extern "C" void __stdcall extern "C" void __stdcall
_dll_crt0 () _dll_crt0 ()
{ {
extern DWORD threadfunc_ix;
wait_for_sigthread ();
if (!threadfunc_ix)
system_printf ("internal error: couldn't determine location of thread function on stack. Expect signal problems.");
main_environ = user_data->envptr; main_environ = user_data->envptr;
update_envptrs ();
char padding[CYGTLS_PADSIZE]; char padding[CYGTLS_PADSIZE];

View File

@ -809,6 +809,7 @@ environ_init (char **envp, int envc)
out: out:
__cygwin_environ = envp; __cygwin_environ = envp;
update_envptrs ();
if (envp_passed_in) if (envp_passed_in)
{ {
p = getenv ("CYGWIN"); p = getenv ("CYGWIN");

View File

@ -1304,7 +1304,7 @@ int fhandler_base::fcntl (int cmd, void *arg)
break; break;
case F_GETFL: case F_GETFL:
res = get_flags (); res = get_flags ();
debug_printf ("GETFL: %d", res); debug_printf ("GETFL: %p", res);
break; break;
case F_SETFL: case F_SETFL:
{ {

View File

@ -178,6 +178,7 @@ frok::child (void *)
ld_preload (); ld_preload ();
fixup_hooks_after_fork (); fixup_hooks_after_fork ();
_my_tls.fixup_after_fork (); _my_tls.fixup_after_fork ();
wait_for_sigthread ();
cygwin_finished_initializing = true; cygwin_finished_initializing = true;
return 0; return 0;
} }
@ -545,10 +546,13 @@ fork ()
void *esp; void *esp;
__asm__ volatile ("movl %%esp,%0": "=r" (esp)); __asm__ volatile ("movl %%esp,%0": "=r" (esp));
if (!ischild) if (ischild)
res = grouped.parent (esp);
else
res = grouped.child (esp); res = grouped.child (esp);
else
{
res = grouped.parent (esp);
sig_send (NULL, __SIGNOHOLD);
}
MALLOC_CHECK; MALLOC_CHECK;
if (ischild || res > 0) if (ischild || res > 0)
@ -568,7 +572,6 @@ fork ()
set_errno (grouped.this_errno); set_errno (grouped.this_errno);
} }
sig_send (NULL, __SIGNOHOLD);
syscall_printf ("%d = fork()", res); syscall_printf ("%d = fork()", res);
return res; return res;
} }

View File

@ -64,7 +64,7 @@ HANDLE NO_COPY sigCONT; // Used to "STOP" a process
cygthread *hwait_sig; cygthread *hwait_sig;
Static HANDLE wait_sig_inited; // Control synchronization of Static HANDLE wait_sig_inited; // Control synchronization of
// message queue startup // message queue startup
static bool sigheld; // True if holding signals static NO_COPY bool sigheld; // True if holding signals
Static int nprocs; // Number of deceased children Static int nprocs; // Number of deceased children
Static char cprocs[(NPROCS + 1) * sizeof (pinfo)];// All my children info Static char cprocs[(NPROCS + 1) * sizeof (pinfo)];// All my children info
@ -76,13 +76,15 @@ static muto NO_COPY sync_proc_subproc; // Control access to subproc stuff
_cygtls NO_COPY *_sig_tls; _cygtls NO_COPY *_sig_tls;
Static HANDLE my_sendsig;
Static HANDLE my_readsig;
/* Function declarations */ /* Function declarations */
static int __stdcall checkstate (waitq *) __attribute__ ((regparm (1))); static int __stdcall checkstate (waitq *) __attribute__ ((regparm (1)));
static __inline__ bool get_proc_lock (DWORD, DWORD); static __inline__ bool get_proc_lock (DWORD, DWORD);
static bool __stdcall remove_proc (int); static bool __stdcall remove_proc (int);
static bool __stdcall stopped_or_terminated (waitq *, _pinfo *); static bool __stdcall stopped_or_terminated (waitq *, _pinfo *);
static DWORD WINAPI wait_sig (VOID *arg); static DWORD WINAPI wait_sig (VOID *arg);
static HANDLE NO_COPY my_sendsig;
/* wait_sig bookkeeping */ /* wait_sig bookkeeping */
@ -138,11 +140,17 @@ signal_fixup_after_exec ()
void __stdcall void __stdcall
wait_for_sigthread () wait_for_sigthread ()
{ {
PSECURITY_ATTRIBUTES sa_buf = (PSECURITY_ATTRIBUTES) alloca (1024);
if (!CreatePipe (&my_readsig, &my_sendsig, sec_user_nih (sa_buf), 0))
api_fatal ("couldn't create signal pipe, %E");
ProtectHandle (my_readsig);
myself->sendsig = my_sendsig;
sigproc_printf ("wait_sig_inited %p", wait_sig_inited); sigproc_printf ("wait_sig_inited %p", wait_sig_inited);
HANDLE hsig_inited = wait_sig_inited; HANDLE hsig_inited = wait_sig_inited;
WaitForSingleObject (hsig_inited, INFINITE); WaitForSingleObject (hsig_inited, INFINITE);
wait_sig_inited = NULL; wait_sig_inited = NULL;
ForceCloseHandle1 (hsig_inited, wait_sig_inited); ForceCloseHandle1 (hsig_inited, wait_sig_inited);
SetEvent (sigCONT);
} }
/* Get the sync_proc_subproc muto to control access to /* Get the sync_proc_subproc muto to control access to
@ -1049,7 +1057,7 @@ stopped_or_terminated (waitq *parent_w, _pinfo *child)
} }
static void static void
talktome (siginfo_t *si, HANDLE readsig) talktome (siginfo_t *si)
{ {
unsigned size = sizeof (*si); unsigned size = sizeof (*si);
sigproc_printf ("pid %d wants some information", si->si_pid); sigproc_printf ("pid %d wants some information", si->si_pid);
@ -1057,12 +1065,12 @@ talktome (siginfo_t *si, HANDLE readsig)
{ {
size_t n; size_t n;
DWORD nb; DWORD nb;
if (!ReadFile (readsig, &n, sizeof (n), &nb, NULL) || nb != sizeof (n)) if (!ReadFile (my_readsig, &n, sizeof (n), &nb, NULL) || nb != sizeof (n))
return; return;
siginfo_t *newsi = (siginfo_t *) alloca (size += n + 1); siginfo_t *newsi = (siginfo_t *) alloca (size += n + 1);
*newsi = *si; *newsi = *si;
newsi->_si_commune._si_str = (char *) (newsi + 1); newsi->_si_commune._si_str = (char *) (newsi + 1);
if (!ReadFile (readsig, newsi->_si_commune._si_str, n, &nb, NULL) || nb != n) if (!ReadFile (my_readsig, newsi->_si_commune._si_str, n, &nb, NULL) || nb != n)
return; return;
newsi->_si_commune._si_str[n] = '\0'; newsi->_si_commune._si_str[n] = '\0';
si = newsi; si = newsi;
@ -1121,17 +1129,10 @@ pending_signals::next ()
static DWORD WINAPI static DWORD WINAPI
wait_sig (VOID *) wait_sig (VOID *)
{ {
HANDLE readsig;
PSECURITY_ATTRIBUTES sa_buf = (PSECURITY_ATTRIBUTES) alloca (1024);
/* Initialization */ /* Initialization */
SetThreadPriority (GetCurrentThread (), WAIT_SIG_PRIORITY); SetThreadPriority (GetCurrentThread (), WAIT_SIG_PRIORITY);
sigCONT = CreateEvent (&sec_none_nih, FALSE, FALSE, NULL); sigCONT = CreateEvent (&sec_none_nih, FALSE, FALSE, NULL);
if (!CreatePipe (&readsig, &my_sendsig, sec_user_nih (sa_buf), 0))
api_fatal ("couldn't create signal pipe, %E");
ProtectHandle (readsig);
myself->sendsig = my_sendsig;
/* Setting dwProcessId flags that this process is now capable of receiving /* Setting dwProcessId flags that this process is now capable of receiving
signals. Prior to this, dwProcessId was set to the windows pid of signals. Prior to this, dwProcessId was set to the windows pid of
@ -1145,11 +1146,10 @@ wait_sig (VOID *)
SetEvent (wait_sig_inited); SetEvent (wait_sig_inited);
_sig_tls->init_threadlist_exceptions (); _sig_tls->init_threadlist_exceptions ();
debug_printf ("entering ReadFile loop, readsig %p, myself->sendsig %p", debug_printf ("entering ReadFile loop, my_readsig %p, myself->sendsig %p",
readsig, myself->sendsig); my_readsig, myself->sendsig);
sigpacket pack; sigpacket pack;
if (in_forkee)
pack.si.si_signo = __SIGHOLD; pack.si.si_signo = __SIGHOLD;
for (;;) for (;;)
{ {
@ -1157,7 +1157,7 @@ wait_sig (VOID *)
WaitForSingleObject (sigCONT, INFINITE); WaitForSingleObject (sigCONT, INFINITE);
DWORD nb; DWORD nb;
pack.tls = NULL; pack.tls = NULL;
if (!ReadFile (readsig, &pack, sizeof (pack), &nb, NULL)) if (!ReadFile (my_readsig, &pack, sizeof (pack), &nb, NULL))
break; break;
if (nb != sizeof (pack)) if (nb != sizeof (pack))
@ -1187,7 +1187,7 @@ wait_sig (VOID *)
switch (pack.si.si_signo) switch (pack.si.si_signo)
{ {
case __SIGCOMMUNE: case __SIGCOMMUNE:
talktome (&pack.si, readsig); talktome (&pack.si);
break; break;
case __SIGSTRACE: case __SIGSTRACE:
strace.hello (); strace.hello ();
@ -1260,7 +1260,7 @@ wait_sig (VOID *)
break; break;
} }
ForceCloseHandle (readsig); ForceCloseHandle (my_readsig);
sigproc_printf ("signal thread exiting"); sigproc_printf ("signal thread exiting");
ExitThread (0); ExitThread (0);
} }