2000-02-17 20:38:33 +01:00
|
|
|
/* exceptions.cc
|
|
|
|
|
2005-02-20 05:25:33 +01:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2006-01-02 03:57:54 +01:00
|
|
|
2005, 2006 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"
|
* wininfo.h (wininfo::timer_active): Delete.
(wininfo::itv): Ditto.
(wininfo::start_time): Ditto.
(wininfo::window_started): Ditto.
(wininfo::getitimer): Ditto.
(wininfo::setitimer): Ditto.
(wininfo::wininfo): Ditto.
(wininfo::lock): New method.
(wininfo::release): Ditto.
* window.cc: Use new lock/acquire wininfo methods throughout.
(wininfo::wininfo): Delete
(wininfo::getitimer): Ditto.
(wininfo::setitimer): Ditto.
(getitimer): Ditto.
(setitimer): Ditto.
(ualarm): Ditto.
(alarm): Ditto.
(wininfo::lock): Define new function.
(wininfo::release): Ditto.
(wininfo::process): Delete WM_TIMER handling.
* timer.cc (struct timetracker): Delete it, flags. Add it_interval,
interval_us, sleepto_us, running, init_muto(), syncthread, and gettime().
(ttstart): Make NO_COPY.
(lock_timer_tracker): New class.
(timer_tracker::timer_tracker): Distinguish ttstart case.
(timer_tracker::~timer_tracker): New destructor. Clean out events, and reset
magic.
(timer_tracker::init_muto): New method.
(to_us): Round up as per POSIX.
(timer_thread): Reorganize to match timer_tracker::settime and
timer_tracker::gettime. Call sig_send without wait. Call auto_release.
(timer_tracker::settime): Reorganize logic to avoid race. Call gettime to
recover old value.
(timer_tracker::gettime): New method.
(timer_create): Properly set errno on invalid timerid. Use new
lock_timer_tracker method.
(timer_delete): Ditto. Simplify code slightly.
(timer_gettime): New function.
(fixup_timers_after_fork): Reinit ttstart.
(getitimer): New implementation.
(setitimer): Ditto.
(ualarm): Ditto.
(alarm): Ditto.
* cygwin.din: Export timer_gettime.
* winsup.h: Remove has has_visible_window_station declaration.
* Makefile.in (DLL_OFILES): Add lsearch.o.
* cygthread.h (cygthread::notify_detached): New element.
(cygthread::cygthread): Take optional fourth argument signifying event to
signal on thread completion.
* cygthread.cc (cygthread::stub): Signal notify_detached event, if it exists.
(cygthread::cygthread): Initialize notify_detached from fourth argument.
(cygthread::detach): Wait for notify_detached field is present.
* lsearch.cc: New file.
* search.h: Ditto.
* include/cygwin/version.h: Bump API minor number to 126.
* cygwin.din: Export lsearch, lfind.
2005-03-27 03:57:38 +02:00
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
2000-08-22 07:10:20 +02:00
|
|
|
#include <imagehlp.h>
|
2001-11-15 04:25:52 +01:00
|
|
|
#include <stdlib.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 <setjmp.h>
|
2003-11-28 21:55:59 +01:00
|
|
|
#include <assert.h>
|
2005-12-27 21:07:59 +01:00
|
|
|
#include <syslog.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#include "exceptions.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "sync.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2003-11-28 21:55:59 +01:00
|
|
|
#include "cygtls.h"
|
|
|
|
#include "sigproc.h"
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2000-09-07 18:23:51 +02:00
|
|
|
#include "shared_info.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "perprocess.h"
|
|
|
|
#include "security.h"
|
2005-10-03 19:23:54 +02:00
|
|
|
#include "path.h"
|
|
|
|
#include "fhandler.h"
|
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-11-07 00:12:05 +01:00
|
|
|
#define CALL_HANDLER_RETRY 20
|
|
|
|
|
2003-11-15 00:40:06 +01:00
|
|
|
char debugger_command[2 * CYG_MAX_PATH + 20];
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern void sigdelayed ();
|
|
|
|
};
|
|
|
|
|
2005-09-20 04:06:57 +02:00
|
|
|
extern NO_COPY DWORD dwExeced;
|
|
|
|
int NO_COPY sigExeced;
|
2002-01-10 04:21:27 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
static BOOL WINAPI ctrl_c_handler (DWORD);
|
2005-02-07 06:28:49 +01:00
|
|
|
char windows_system_directory[1024];
|
2000-02-24 03:49:44 +01:00
|
|
|
static size_t windows_system_directory_length;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* This is set to indicate that we have already exited. */
|
|
|
|
|
|
|
|
static NO_COPY int exit_already = 0;
|
2005-12-23 23:50:20 +01:00
|
|
|
static muto NO_COPY mask_sync;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-10-13 03:35:15 +02:00
|
|
|
NO_COPY static struct
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
unsigned int code;
|
|
|
|
const char *name;
|
2001-10-13 03:35:15 +02:00
|
|
|
} status_info[] =
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
#define X(s) s, #s
|
|
|
|
{ X (STATUS_ABANDONED_WAIT_0) },
|
|
|
|
{ X (STATUS_ACCESS_VIOLATION) },
|
|
|
|
{ X (STATUS_ARRAY_BOUNDS_EXCEEDED) },
|
|
|
|
{ X (STATUS_BREAKPOINT) },
|
|
|
|
{ X (STATUS_CONTROL_C_EXIT) },
|
|
|
|
{ X (STATUS_DATATYPE_MISALIGNMENT) },
|
|
|
|
{ X (STATUS_FLOAT_DENORMAL_OPERAND) },
|
|
|
|
{ X (STATUS_FLOAT_DIVIDE_BY_ZERO) },
|
|
|
|
{ X (STATUS_FLOAT_INEXACT_RESULT) },
|
|
|
|
{ X (STATUS_FLOAT_INVALID_OPERATION) },
|
|
|
|
{ X (STATUS_FLOAT_OVERFLOW) },
|
|
|
|
{ X (STATUS_FLOAT_STACK_CHECK) },
|
|
|
|
{ X (STATUS_FLOAT_UNDERFLOW) },
|
|
|
|
{ X (STATUS_GUARD_PAGE_VIOLATION) },
|
|
|
|
{ X (STATUS_ILLEGAL_INSTRUCTION) },
|
|
|
|
{ X (STATUS_INTEGER_DIVIDE_BY_ZERO) },
|
|
|
|
{ X (STATUS_INTEGER_OVERFLOW) },
|
|
|
|
{ X (STATUS_INVALID_DISPOSITION) },
|
|
|
|
{ X (STATUS_IN_PAGE_ERROR) },
|
|
|
|
{ X (STATUS_NONCONTINUABLE_EXCEPTION) },
|
|
|
|
{ X (STATUS_NO_MEMORY) },
|
|
|
|
{ X (STATUS_PENDING) },
|
|
|
|
{ X (STATUS_PRIVILEGED_INSTRUCTION) },
|
|
|
|
{ X (STATUS_SINGLE_STEP) },
|
|
|
|
{ X (STATUS_STACK_OVERFLOW) },
|
|
|
|
{ X (STATUS_TIMEOUT) },
|
|
|
|
{ X (STATUS_USER_APC) },
|
|
|
|
{ X (STATUS_WAIT_0) },
|
|
|
|
{ 0, 0 }
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialization code. */
|
|
|
|
|
2005-06-30 04:52:14 +02:00
|
|
|
BOOL WINAPI
|
2006-03-18 20:17:21 +01:00
|
|
|
dummy_ctrl_c_handler (DWORD)
|
2005-06-30 04:52:14 +02:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
2006-03-16 03:57:37 +01:00
|
|
|
init_console_handler (bool install_handler)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-06-30 04:52:14 +02:00
|
|
|
BOOL res;
|
2006-03-18 20:17:21 +01:00
|
|
|
|
2006-03-22 04:20:28 +01:00
|
|
|
SetConsoleCtrlHandler (ctrl_c_handler, FALSE);
|
|
|
|
if (wincap.has_null_console_handler_routine ())
|
|
|
|
SetConsoleCtrlHandler (NULL, FALSE);
|
2005-06-30 04:52:14 +02:00
|
|
|
if (install_handler)
|
|
|
|
res = SetConsoleCtrlHandler (ctrl_c_handler, TRUE);
|
|
|
|
else if (wincap.has_null_console_handler_routine ())
|
|
|
|
res = SetConsoleCtrlHandler (NULL, TRUE);
|
|
|
|
else
|
|
|
|
res = SetConsoleCtrlHandler (dummy_ctrl_c_handler, TRUE);
|
|
|
|
if (!res)
|
2002-01-10 04:21:27 +01:00
|
|
|
system_printf ("SetConsoleCtrlHandler failed, %E");
|
2003-09-12 08:41:53 +02:00
|
|
|
}
|
2002-01-10 04:21:27 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
extern "C" void
|
|
|
|
error_start_init (const char *buf)
|
|
|
|
{
|
|
|
|
if (!buf || !*buf)
|
|
|
|
{
|
|
|
|
debugger_command[0] = '\0';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-04-03 10:45:21 +02:00
|
|
|
char pgm[CYG_MAX_PATH];
|
2003-11-15 00:40:06 +01:00
|
|
|
if (!GetModuleFileName (NULL, pgm, CYG_MAX_PATH))
|
2002-07-15 05:48:52 +02:00
|
|
|
strcpy (pgm, "cygwin1.dll");
|
|
|
|
for (char *p = strchr (pgm, '\\'); p; p = strchr (p, '\\'))
|
|
|
|
*p = '/';
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-06-09 15:29:12 +02:00
|
|
|
__small_sprintf (debugger_command, "%s \"%s\"", buf, pgm);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2001-04-30 05:09:19 +02:00
|
|
|
static void
|
|
|
|
open_stackdumpfile ()
|
|
|
|
{
|
|
|
|
if (myself->progname[0])
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
/* write to progname.stackdump if possible */
|
2001-09-06 20:06:27 +02:00
|
|
|
if (!myself->progname[0])
|
|
|
|
p = "unknown";
|
|
|
|
else if ((p = strrchr (myself->progname, '\\')))
|
2001-04-30 05:09:19 +02:00
|
|
|
p++;
|
|
|
|
else
|
|
|
|
p = myself->progname;
|
|
|
|
char corefile[strlen (p) + sizeof (".stackdump")];
|
|
|
|
__small_sprintf (corefile, "%s.stackdump", p);
|
|
|
|
HANDLE h = CreateFile (corefile, GENERIC_WRITE, 0, &sec_none_nih,
|
|
|
|
CREATE_ALWAYS, 0, 0);
|
|
|
|
if (h != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2004-11-26 05:15:10 +01:00
|
|
|
if (!myself->cygstarted)
|
2001-10-03 05:49:26 +02:00
|
|
|
system_printf ("Dumping stack trace to %s", corefile);
|
|
|
|
else
|
|
|
|
debug_printf ("Dumping stack trace to %s", corefile);
|
2001-04-30 05:09:19 +02:00
|
|
|
SetStdHandle (STD_ERROR_HANDLE, h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Utilities for dumping the stack, etc. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
exception (EXCEPTION_RECORD *e, CONTEXT *in)
|
|
|
|
{
|
2000-08-02 21:26:01 +02:00
|
|
|
const char *exception_name = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
for (int i = 0; status_info[i].name; i++)
|
|
|
|
{
|
|
|
|
if (status_info[i].code == e->ExceptionCode)
|
|
|
|
{
|
|
|
|
exception_name = status_info[i].name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exception_name)
|
|
|
|
small_printf ("Exception: %s at eip=%08x\r\n", exception_name, in->Eip);
|
|
|
|
else
|
2006-02-06 19:24:11 +01:00
|
|
|
small_printf ("Signal %d at eip=%08x\r\n", e->ExceptionCode, in->Eip);
|
2000-02-17 20:38:33 +01:00
|
|
|
small_printf ("eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\r\n",
|
2004-03-12 03:07:39 +01:00
|
|
|
in->Eax, in->Ebx, in->Ecx, in->Edx, in->Esi, in->Edi);
|
|
|
|
small_printf ("ebp=%08x esp=%08x program=%s, pid %u, thread %s\r\n",
|
|
|
|
in->Ebp, in->Esp, myself->progname, myself->pid, cygthread::name ());
|
2000-02-17 20:38:33 +01:00
|
|
|
small_printf ("cs=%04x ds=%04x es=%04x fs=%04x gs=%04x ss=%04x\r\n",
|
2004-03-12 03:07:39 +01:00
|
|
|
in->SegCs, in->SegDs, in->SegEs, in->SegFs, in->SegGs, in->SegSs);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* A class for manipulating the stack. */
|
|
|
|
class stack_info
|
|
|
|
{
|
2000-07-04 21:07:35 +02:00
|
|
|
int walk (); /* Uses the "old" method */
|
2000-07-03 22:14:06 +02:00
|
|
|
char *next_offset () {return *((char **) sf.AddrFrame.Offset);}
|
2001-05-05 04:44:36 +02:00
|
|
|
bool needargs;
|
|
|
|
DWORD dummy_frame;
|
2000-02-17 20:38:33 +01:00
|
|
|
public:
|
2001-05-05 04:44:36 +02:00
|
|
|
STACKFRAME sf; /* For storing the stack information */
|
|
|
|
void init (DWORD, bool, bool); /* Called the first time that stack info is needed */
|
2000-03-09 22:04:05 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Postfix ++ iterates over the stack, returning zero when nothing is left. */
|
2003-02-04 04:01:17 +01:00
|
|
|
int operator ++(int) { return walk (); }
|
2000-02-17 20:38:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The number of parameters used in STACKFRAME */
|
2000-07-04 21:07:35 +02:00
|
|
|
#define NPARAMS (sizeof (thestack.sf.Params) / sizeof (thestack.sf.Params[0]))
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* This is the main stack frame info for this process. */
|
2000-03-09 22:04:05 +01:00
|
|
|
static NO_COPY stack_info thestack;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Initialize everything needed to start iterating. */
|
|
|
|
void
|
2001-05-05 04:44:36 +02:00
|
|
|
stack_info::init (DWORD ebp, bool wantargs, bool goodframe)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-30 05:09:19 +02:00
|
|
|
# define debp ((DWORD *) ebp)
|
2000-07-04 21:07:35 +02:00
|
|
|
memset (&sf, 0, sizeof (sf));
|
2001-05-05 04:44:36 +02:00
|
|
|
if (!goodframe)
|
|
|
|
sf.AddrFrame.Offset = ebp;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dummy_frame = ebp;
|
|
|
|
sf.AddrFrame.Offset = (DWORD) &dummy_frame;
|
|
|
|
}
|
2001-04-30 05:09:19 +02:00
|
|
|
sf.AddrReturn.Offset = debp[1];
|
2000-02-17 20:38:33 +01:00
|
|
|
sf.AddrFrame.Mode = AddrModeFlat;
|
2001-05-05 04:44:36 +02:00
|
|
|
needargs = wantargs;
|
2001-04-30 05:09:19 +02:00
|
|
|
# undef debp
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Walk the stack by looking at successive stored 'bp' frames.
|
|
|
|
This is not foolproof. */
|
|
|
|
int
|
2000-03-09 22:04:05 +01:00
|
|
|
stack_info::walk ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
char **ebp;
|
2001-05-05 04:44:36 +02:00
|
|
|
if ((ebp = (char **) next_offset ()) == NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
|
|
|
|
2001-05-05 04:44:36 +02:00
|
|
|
sf.AddrFrame.Offset = (DWORD) ebp;
|
|
|
|
sf.AddrPC.Offset = sf.AddrReturn.Offset;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
if (!sf.AddrPC.Offset)
|
|
|
|
return 0; /* stack frames are exhausted */
|
|
|
|
|
|
|
|
/* The return address always follows the stack pointer */
|
|
|
|
sf.AddrReturn.Offset = (DWORD) *++ebp;
|
|
|
|
|
2001-05-05 04:44:36 +02:00
|
|
|
if (needargs)
|
|
|
|
/* The arguments follow the return address */
|
|
|
|
for (unsigned i = 0; i < NPARAMS; i++)
|
|
|
|
sf.Params[i] = (DWORD) *++ebp;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2000-07-03 22:14:06 +02:00
|
|
|
static void
|
2001-05-05 04:44:36 +02:00
|
|
|
stackdump (DWORD ebp, int open_file, bool isexception)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-30 05:09:19 +02:00
|
|
|
extern unsigned long rlim_core;
|
2006-02-20 03:04:31 +01:00
|
|
|
static bool already_dumped;
|
2001-04-30 05:09:19 +02:00
|
|
|
|
2006-02-20 03:04:31 +01:00
|
|
|
if (rlim_core == 0UL || (open_file && already_dumped))
|
2001-04-30 05:09:19 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (open_file)
|
|
|
|
open_stackdumpfile ();
|
|
|
|
|
2006-02-20 03:04:31 +01:00
|
|
|
already_dumped = true;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
int i;
|
|
|
|
|
2001-05-05 04:44:36 +02:00
|
|
|
thestack.init (ebp, 1, !isexception); /* Initialize from the input CONTEXT */
|
2000-02-17 20:38:33 +01:00
|
|
|
small_printf ("Stack trace:\r\nFrame Function Args\r\n");
|
2000-07-03 22:14:06 +02:00
|
|
|
for (i = 0; i < 16 && thestack++; i++)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-03-09 22:04:05 +01:00
|
|
|
small_printf ("%08x %08x ", thestack.sf.AddrFrame.Offset,
|
|
|
|
thestack.sf.AddrPC.Offset);
|
2000-02-17 20:38:33 +01:00
|
|
|
for (unsigned j = 0; j < NPARAMS; j++)
|
2000-03-09 22:04:05 +01:00
|
|
|
small_printf ("%s%08x", j == 0 ? " (" : ", ", thestack.sf.Params[j]);
|
2000-02-17 20:38:33 +01:00
|
|
|
small_printf (")\r\n");
|
|
|
|
}
|
2004-03-12 03:07:39 +01:00
|
|
|
small_printf ("End of stack trace%s\n",
|
2000-02-17 20:38:33 +01:00
|
|
|
i == 16 ? " (more stack frames may be present)" : "");
|
|
|
|
}
|
|
|
|
|
2005-12-27 21:07:59 +01:00
|
|
|
static bool
|
2005-12-27 21:20:09 +01:00
|
|
|
inside_kernel (CONTEXT *cx)
|
2005-12-27 21:07:59 +01:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
MEMORY_BASIC_INFORMATION m;
|
2006-02-23 20:21:21 +01:00
|
|
|
|
|
|
|
if (in_dllentry)
|
|
|
|
return true;
|
2005-12-27 21:07:59 +01:00
|
|
|
|
|
|
|
memset (&m, 0, sizeof m);
|
|
|
|
if (!VirtualQuery ((LPCVOID) cx->Eip, &m, sizeof m))
|
|
|
|
sigproc_printf ("couldn't get memory info, pc %p, %E", cx->Eip);
|
|
|
|
|
|
|
|
char *checkdir = (char *) alloca (windows_system_directory_length + 4);
|
|
|
|
memset (checkdir, 0, sizeof (checkdir));
|
|
|
|
|
|
|
|
# define h ((HMODULE) m.AllocationBase)
|
|
|
|
/* Apparently Windows 95 can sometimes return bogus addresses from
|
|
|
|
GetThreadContext. These resolve to a strange allocation base.
|
|
|
|
These should *never* be treated as interruptible. */
|
2006-02-28 21:02:16 +01:00
|
|
|
if (!h || m.State != MEM_COMMIT)
|
2005-12-27 21:07:59 +01:00
|
|
|
res = true;
|
2006-02-23 20:21:21 +01:00
|
|
|
else if (h == user_data->hmodule)
|
|
|
|
res = false;
|
2005-12-27 21:07:59 +01:00
|
|
|
else if (!GetModuleFileName (h, checkdir, windows_system_directory_length + 2))
|
2006-02-23 20:21:21 +01:00
|
|
|
res = false;
|
2005-12-27 21:07:59 +01:00
|
|
|
else
|
2006-02-23 20:21:21 +01:00
|
|
|
res = strncasematch (windows_system_directory, checkdir,
|
|
|
|
windows_system_directory_length);
|
|
|
|
sigproc_printf ("pc %p, h %p, inside_kernel %d", cx->Eip, h, res);
|
2005-12-27 21:07:59 +01:00
|
|
|
# undef h
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Temporary (?) function for external callers to get a stack dump */
|
|
|
|
extern "C" void
|
2000-07-04 21:07:35 +02:00
|
|
|
cygwin_stackdump ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
CONTEXT c;
|
|
|
|
c.ContextFlags = CONTEXT_FULL;
|
2000-05-07 05:29:08 +02:00
|
|
|
GetThreadContext (GetCurrentThread (), &c);
|
2001-05-05 04:44:36 +02:00
|
|
|
stackdump (c.Ebp, 0, 0);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-04 21:07:35 +02:00
|
|
|
#define TIME_TO_WAIT_FOR_DEBUGGER 10000
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
extern "C" int
|
2001-04-30 05:09:19 +02:00
|
|
|
try_to_debug (bool waitloop)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-01-28 06:51:15 +01:00
|
|
|
debug_printf ("debugger_command '%s'", debugger_command);
|
2005-07-17 02:51:03 +02:00
|
|
|
if (*debugger_command == '\0')
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2005-07-17 02:51:03 +02:00
|
|
|
if (being_debugged ())
|
|
|
|
{
|
|
|
|
DebugBreak ();
|
|
|
|
return 0;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
__small_sprintf (strchr (debugger_command, '\0'), " %u", GetCurrentProcessId ());
|
|
|
|
|
2003-02-07 16:00:57 +01:00
|
|
|
LONG prio = GetThreadPriority (GetCurrentThread ());
|
|
|
|
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_HIGHEST);
|
2000-02-23 05:07:13 +01:00
|
|
|
PROCESS_INFORMATION pi = {NULL, 0, 0, 0};
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-02-23 05:07:13 +01:00
|
|
|
STARTUPINFO si = {0, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL};
|
2000-02-17 20:38:33 +01:00
|
|
|
si.lpReserved = NULL;
|
|
|
|
si.lpDesktop = NULL;
|
|
|
|
si.dwFlags = 0;
|
|
|
|
si.cb = sizeof (si);
|
|
|
|
|
|
|
|
/* FIXME: need to know handles of all running threads to
|
|
|
|
suspend_all_threads_except (current_thread_id);
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* if any of these mutexes is owned, we will fail to start any cygwin app
|
|
|
|
until trapped app exits */
|
|
|
|
|
2004-05-17 17:27:56 +02:00
|
|
|
ReleaseMutex (tty_mutex);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-04 21:07:35 +02:00
|
|
|
/* prevent recursive exception handling */
|
|
|
|
char* rawenv = GetEnvironmentStrings () ;
|
|
|
|
for (char* p = rawenv; *p != '\0'; p = strchr (p, '\0') + 1)
|
|
|
|
{
|
2003-12-27 01:25:02 +01:00
|
|
|
if (strncmp (p, "CYGWIN=", strlen ("CYGWIN=")) == 0)
|
2000-07-04 21:07:35 +02:00
|
|
|
{
|
|
|
|
char* q = strstr (p, "error_start") ;
|
|
|
|
/* replace 'error_start=...' with '_rror_start=...' */
|
2003-12-27 01:25:02 +01:00
|
|
|
if (q)
|
|
|
|
{
|
|
|
|
*q = '_' ;
|
|
|
|
SetEnvironmentVariable ("CYGWIN", p + strlen ("CYGWIN=")) ;
|
|
|
|
}
|
2000-07-04 21:07:35 +02:00
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-15 16:50:20 +01:00
|
|
|
console_printf ("*** starting debugger for pid %u, tid %u\n",
|
|
|
|
cygwin_pid (GetCurrentProcessId ()), GetCurrentThreadId ());
|
2002-07-15 05:48:52 +02:00
|
|
|
BOOL dbg;
|
2000-02-17 20:38:33 +01:00
|
|
|
dbg = CreateProcess (NULL,
|
|
|
|
debugger_command,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
FALSE,
|
|
|
|
CREATE_NEW_CONSOLE | CREATE_NEW_PROCESS_GROUP,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&si,
|
|
|
|
&pi);
|
2001-04-30 05:09:19 +02:00
|
|
|
|
2001-11-24 04:11:39 +01:00
|
|
|
if (!dbg)
|
2004-09-03 03:53:12 +02:00
|
|
|
system_printf ("Failed to start debugger, %E");
|
2001-11-24 04:11:39 +01:00
|
|
|
else
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-30 05:09:19 +02:00
|
|
|
if (!waitloop)
|
2004-02-08 20:59:27 +01:00
|
|
|
return dbg;
|
2003-02-14 03:52:29 +01:00
|
|
|
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_IDLE);
|
2002-05-27 04:25:28 +02:00
|
|
|
while (!being_debugged ())
|
2005-10-01 01:52:13 +02:00
|
|
|
low_priority_sleep (0);
|
2004-01-26 19:52:02 +01:00
|
|
|
Sleep (2000);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2004-02-08 20:59:27 +01:00
|
|
|
console_printf ("*** continuing pid %u from debugger call (%d)\n",
|
|
|
|
cygwin_pid (GetCurrentProcessId ()), dbg);
|
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
SetThreadPriority (GetCurrentThread (), prio);
|
2004-02-08 20:59:27 +01:00
|
|
|
return dbg;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2005-12-03 05:23:35 +01:00
|
|
|
extern "C" DWORD __stdcall RtlUnwind (void *, void *, void *, DWORD);
|
2005-12-03 06:01:51 +01:00
|
|
|
static void __stdcall rtl_unwind (exception_list *, PEXCEPTION_RECORD) __attribute__ ((noinline, regparm (3)));
|
2005-12-03 05:23:35 +01:00
|
|
|
void __stdcall
|
2005-12-03 06:01:51 +01:00
|
|
|
rtl_unwind (exception_list *frame, PEXCEPTION_RECORD e)
|
2005-12-03 05:23:35 +01:00
|
|
|
{
|
|
|
|
__asm__ ("\n\
|
|
|
|
pushl %%ebx \n\
|
|
|
|
pushl %%edi \n\
|
|
|
|
pushl %%esi \n\
|
|
|
|
pushl $0 \n\
|
|
|
|
pushl %1 \n\
|
|
|
|
pushl $1f \n\
|
|
|
|
pushl %0 \n\
|
|
|
|
call _RtlUnwind@16 \n\
|
|
|
|
1: \n\
|
|
|
|
popl %%esi \n\
|
|
|
|
popl %%edi \n\
|
|
|
|
popl %%ebx \n\
|
|
|
|
": : "r" (frame), "r" (e));
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Main exception handler. */
|
|
|
|
|
2005-12-27 21:07:59 +01:00
|
|
|
extern "C" char *__progname;
|
2005-12-03 05:23:35 +01:00
|
|
|
int
|
2005-12-03 06:01:51 +01:00
|
|
|
_cygtls::handle_exceptions (EXCEPTION_RECORD *e, exception_list *frame, CONTEXT *in, void *)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-05-19 01:30:02 +02:00
|
|
|
static bool NO_COPY debugging;
|
|
|
|
static int NO_COPY recursed;
|
2005-07-03 04:40:30 +02:00
|
|
|
_cygtls& me = _my_tls;
|
2001-04-30 05:09:19 +02:00
|
|
|
|
2001-05-24 07:20:17 +02:00
|
|
|
if (debugging && ++debugging < 500000)
|
2001-05-05 07:07:20 +02:00
|
|
|
{
|
|
|
|
SetThreadPriority (hMainThread, THREAD_PRIORITY_NORMAL);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* If we've already exited, don't do anything here. Returning 1
|
|
|
|
tells Windows to keep looking for an exception handler. */
|
2005-12-03 05:23:35 +01:00
|
|
|
if (exit_already || e->ExceptionFlags)
|
2000-02-17 20:38:33 +01:00
|
|
|
return 1;
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
siginfo_t si = {0};
|
2005-09-26 16:51:48 +02:00
|
|
|
si.si_code = SI_KERNEL;
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Coerce win32 value to posix value. */
|
2005-12-03 05:23:35 +01:00
|
|
|
switch (e->ExceptionCode)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
case STATUS_FLOAT_DENORMAL_OPERAND:
|
|
|
|
case STATUS_FLOAT_DIVIDE_BY_ZERO:
|
|
|
|
case STATUS_FLOAT_INVALID_OPERATION:
|
|
|
|
case STATUS_FLOAT_STACK_CHECK:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_FLTSUB;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_INEXACT_RESULT:
|
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_FLTRES;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_OVERFLOW:
|
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_FLTOVF;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_FLOAT_UNDERFLOW:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_FLTUND;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_INTEGER_DIVIDE_BY_ZERO:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_INTDIV;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_INTEGER_OVERFLOW:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGFPE;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = FPE_INTOVF;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_ILLEGAL_INSTRUCTION:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGILL;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = ILL_ILLOPC;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_PRIVILEGED_INSTRUCTION:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGILL;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = ILL_PRVOPC;
|
2004-01-19 06:46:54 +01:00
|
|
|
break;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_NONCONTINUABLE_EXCEPTION:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGILL;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = ILL_ILLADR;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_TIMEOUT:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGALRM;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
|
2005-12-01 21:52:00 +01:00
|
|
|
case STATUS_GUARD_PAGE_VIOLATION:
|
|
|
|
si.si_signo = SIGBUS;
|
|
|
|
si.si_code = BUS_OBJERR;
|
|
|
|
break;
|
|
|
|
|
2005-12-27 21:07:59 +01:00
|
|
|
case STATUS_DATATYPE_MISALIGNMENT:
|
|
|
|
si.si_signo = SIGBUS;
|
|
|
|
si.si_code = BUS_ADRALN;
|
|
|
|
break;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_ACCESS_VIOLATION:
|
2005-12-07 12:16:47 +01:00
|
|
|
if (mmap_is_attached_page (e->ExceptionInformation[1]))
|
|
|
|
{
|
|
|
|
si.si_signo = SIGBUS;
|
|
|
|
si.si_code = BUS_OBJERR;
|
|
|
|
}
|
2005-12-27 21:07:59 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
MEMORY_BASIC_INFORMATION m;
|
|
|
|
VirtualQuery ((PVOID) e->ExceptionInformation[1], &m, sizeof m);
|
|
|
|
si.si_signo = SIGSEGV;
|
|
|
|
si.si_code = m.State == MEM_FREE ? SEGV_MAPERR : SEGV_ACCERR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
case STATUS_ARRAY_BOUNDS_EXCEEDED:
|
|
|
|
case STATUS_IN_PAGE_ERROR:
|
|
|
|
case STATUS_NO_MEMORY:
|
|
|
|
case STATUS_INVALID_DISPOSITION:
|
|
|
|
case STATUS_STACK_OVERFLOW:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGSEGV;
|
2005-09-26 15:23:47 +02:00
|
|
|
si.si_code = SEGV_MAPERR;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_CONTROL_C_EXIT:
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = SIGINT;
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_INVALID_HANDLE:
|
|
|
|
/* CloseHandle will throw this exception if it is given an
|
|
|
|
invalid handle. We don't care about the exception; we just
|
|
|
|
want CloseHandle to return an error. This can be revisited
|
|
|
|
if gcc ever supports Windows style structured exception
|
|
|
|
handling. */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* If we don't recognize the exception, we have to assume that
|
|
|
|
we are doing structured exception handling, and we let
|
|
|
|
something else handle it. */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-12-03 05:23:35 +01:00
|
|
|
rtl_unwind (frame, e);
|
2005-12-03 06:01:51 +01:00
|
|
|
|
2005-12-03 05:23:35 +01:00
|
|
|
debug_printf ("In cygwin_except_handler exc %p at %p sp %p", e->ExceptionCode, in->Eip, in->Esp);
|
|
|
|
debug_printf ("In cygwin_except_handler sig %d at %p", si.si_signo, in->Eip);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-01-19 06:46:54 +01:00
|
|
|
if (global_sigs[si.si_signo].sa_mask & SIGTOMASK (si.si_signo))
|
|
|
|
syscall_printf ("signal %d, masked %p", si.si_signo,
|
|
|
|
global_sigs[si.si_signo].sa_mask);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-03 22:14:06 +02:00
|
|
|
debug_printf ("In cygwin_except_handler calling %p",
|
2004-01-19 06:46:54 +01:00
|
|
|
global_sigs[si.si_signo].sa_handler);
|
2000-07-03 22:14:06 +02:00
|
|
|
|
2005-12-03 05:23:35 +01:00
|
|
|
DWORD *ebp = (DWORD *) in->Esp;
|
2000-07-03 22:14:06 +02:00
|
|
|
for (DWORD *bpend = (DWORD *) __builtin_frame_address (0); ebp > bpend; ebp--)
|
2005-12-03 05:23:35 +01:00
|
|
|
if (*ebp == in->SegCs && ebp[-1] == in->Eip)
|
2000-07-03 22:14:06 +02:00
|
|
|
{
|
|
|
|
ebp -= 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
if (me.fault_guarded ())
|
|
|
|
me.return_from_fault ();
|
|
|
|
|
|
|
|
me.copy_context (in);
|
|
|
|
if (!cygwin_finished_initializing
|
|
|
|
|| &me == _sig_tls
|
|
|
|
|| (void *) global_sigs[si.si_signo].sa_handler == (void *) SIG_DFL
|
|
|
|
|| (void *) global_sigs[si.si_signo].sa_handler == (void *) SIG_IGN
|
|
|
|
|| (void *) global_sigs[si.si_signo].sa_handler == (void *) SIG_ERR)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
/* Print the exception to the console */
|
2004-11-26 05:15:10 +01:00
|
|
|
if (!myself->cygstarted)
|
2004-03-12 03:07:39 +01:00
|
|
|
for (int i = 0; status_info[i].name; i++)
|
2005-12-03 05:23:35 +01:00
|
|
|
if (status_info[i].code == e->ExceptionCode)
|
2004-03-12 03:07:39 +01:00
|
|
|
{
|
2004-01-19 06:46:54 +01:00
|
|
|
system_printf ("Exception: %s", status_info[i].name);
|
2004-03-12 03:07:39 +01:00
|
|
|
break;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Another exception could happen while tracing or while exiting.
|
|
|
|
Only do this once. */
|
2001-04-30 05:09:19 +02:00
|
|
|
if (recursed++)
|
2000-07-04 21:07:35 +02:00
|
|
|
system_printf ("Error while dumping state (probably corrupted stack)");
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
|
|
|
{
|
2001-04-30 05:09:19 +02:00
|
|
|
if (try_to_debug (0))
|
|
|
|
{
|
2003-11-28 21:55:59 +01:00
|
|
|
debugging = true;
|
2001-04-30 05:09:19 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
open_stackdumpfile ();
|
2005-12-03 05:23:35 +01:00
|
|
|
exception (e, in);
|
2001-05-05 04:44:36 +02:00
|
|
|
stackdump ((DWORD) ebp, 0, 1);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2001-04-30 05:09:19 +02:00
|
|
|
|
2005-12-27 21:07:59 +01:00
|
|
|
if (e->ExceptionCode == STATUS_ACCESS_VIOLATION)
|
2006-02-06 19:24:11 +01:00
|
|
|
{
|
2005-12-27 21:07:59 +01:00
|
|
|
int error_code = 0;
|
|
|
|
if (si.si_code == SEGV_ACCERR) /* Address present */
|
|
|
|
error_code |= 1;
|
|
|
|
if (e->ExceptionInformation[0]) /* Write access */
|
|
|
|
error_code |= 2;
|
2005-12-27 21:20:09 +01:00
|
|
|
if (!inside_kernel (in)) /* User space */
|
2005-12-27 21:07:59 +01:00
|
|
|
error_code |= 4;
|
|
|
|
klog (LOG_INFO, "%s[%d]: segfault at %08x rip %08x rsp %08x error %d",
|
|
|
|
__progname, myself->pid,
|
|
|
|
e->ExceptionInformation[1], in->Eip, in->Esp,
|
|
|
|
((in->Eip >= 0x61000000 && in->Eip < 0x61200000)
|
|
|
|
? 0 : 4) | (e->ExceptionInformation[0] << 1));
|
|
|
|
}
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
me.signal_exit (0x80 | si.si_signo); // Flag signal + core dump
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2005-12-03 05:23:35 +01:00
|
|
|
si.si_addr = (void *) in->Eip;
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_errno = si.si_pid = si.si_uid = 0;
|
2005-12-05 21:20:18 +01:00
|
|
|
me.incyg++;
|
2005-07-03 04:40:30 +02:00
|
|
|
sig_send (NULL, si, &me); // Signal myself
|
2005-12-05 21:20:18 +01:00
|
|
|
me.incyg--;
|
2005-12-03 05:23:35 +01:00
|
|
|
e->ExceptionFlags = 0;
|
|
|
|
return 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Utilities to call a user supplied exception handler. */
|
|
|
|
|
2001-01-08 05:02:02 +01:00
|
|
|
#define SIG_NONMASKABLE (SIGTOMASK (SIGKILL) | SIGTOMASK (SIGSTOP))
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Non-raceable sigsuspend
|
|
|
|
* Note: This implementation is based on the Single UNIX Specification
|
|
|
|
* man page. This indicates that sigsuspend always returns -1 and that
|
|
|
|
* attempts to block unblockable signals will be silently ignored.
|
|
|
|
* This is counter to what appears to be documented in some UNIX
|
|
|
|
* man pages, e.g. Linux.
|
|
|
|
*/
|
|
|
|
int __stdcall
|
|
|
|
handle_sigsuspend (sigset_t tempmask)
|
|
|
|
{
|
2005-08-25 05:12:48 +02:00
|
|
|
if (&_my_tls != _main_tls)
|
2005-09-07 05:10:17 +02:00
|
|
|
{
|
|
|
|
cancelable_wait (signal_arrived, INFINITE, cw_cancel_self);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
sigset_t oldmask = myself->getsigmask (); // Remember for restoration
|
|
|
|
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (tempmask, myself->getsigmask ());
|
2003-12-23 17:26:31 +01:00
|
|
|
sigproc_printf ("oldmask %p, newmask %p", oldmask, tempmask);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-01-14 20:55:42 +01:00
|
|
|
pthread_testcancel ();
|
2005-06-09 07:11:51 +02:00
|
|
|
cancelable_wait (signal_arrived, INFINITE);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
set_sig_errno (EINTR); // Per POSIX
|
|
|
|
|
|
|
|
/* A signal dispatch function will have been added to our stack and will
|
|
|
|
be hit eventually. Set the old mask to be restored when the signal
|
2004-03-12 04:09:28 +01:00
|
|
|
handler returns and indicate its presence by modifying deltamask. */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-03-12 04:09:28 +01:00
|
|
|
_my_tls.deltamask |= SIG_NONMASKABLE;
|
2003-11-28 21:55:59 +01:00
|
|
|
_my_tls.oldmask = oldmask; // Will be restored by signal handler
|
2000-02-17 20:38:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern DWORD exec_exit; // Possible exit value for exec
|
|
|
|
|
2001-01-17 15:57:09 +01:00
|
|
|
extern "C" {
|
|
|
|
static void
|
|
|
|
sig_handle_tty_stop (int sig)
|
|
|
|
{
|
2004-09-20 07:35:46 +02:00
|
|
|
_my_tls.incyg = 1;
|
2004-09-20 06:58:36 +02:00
|
|
|
/* Silently ignore attempts to suspend if there is no accommodating
|
2001-03-02 03:09:40 +01:00
|
|
|
cygwin parent to deal with this behavior. */
|
2004-11-26 05:15:10 +01:00
|
|
|
if (!myself->cygstarted)
|
2001-06-16 19:09:19 +02:00
|
|
|
{
|
|
|
|
myself->process_state &= ~PID_STOPPED;
|
|
|
|
return;
|
|
|
|
}
|
2002-01-20 00:57:45 +01:00
|
|
|
|
2001-01-17 15:57:09 +01:00
|
|
|
myself->stopsig = sig;
|
2004-12-24 19:31:23 +01:00
|
|
|
myself->alert_parent (sig);
|
2004-11-26 05:15:10 +01:00
|
|
|
sigproc_printf ("process %d stopped by signal %d", myself->pid, sig);
|
2004-01-26 23:25:57 +01:00
|
|
|
HANDLE w4[2];
|
|
|
|
w4[0] = sigCONT;
|
|
|
|
w4[1] = signal_arrived;
|
|
|
|
switch (WaitForMultipleObjects (2, w4, TRUE, INFINITE))
|
|
|
|
{
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
case WAIT_OBJECT_0 + 1:
|
|
|
|
reset_signal_arrived ();
|
2004-12-24 19:31:23 +01:00
|
|
|
myself->alert_parent (SIGCONT);
|
2004-01-26 23:25:57 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
api_fatal ("WaitSingleObject failed, %E");
|
|
|
|
break;
|
|
|
|
}
|
2004-09-20 06:58:36 +02:00
|
|
|
_my_tls.incyg = 0;
|
2001-01-17 15:57:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-14 16:45:37 +01:00
|
|
|
bool
|
2005-12-20 01:31:50 +01:00
|
|
|
_cygtls::interrupt_now (CONTEXT *cx, int sig, void *handler,
|
|
|
|
struct sigaction& siga)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-12-20 01:31:50 +01:00
|
|
|
bool interrupted;
|
|
|
|
|
2006-02-23 20:21:21 +01:00
|
|
|
if (incyg || spinning || locked () || inside_kernel (cx))
|
2005-12-20 01:31:50 +01:00
|
|
|
interrupted = false;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
push ((__stack_t) cx->Eip);
|
|
|
|
interrupt_setup (sig, handler, siga);
|
|
|
|
cx->Eip = pop ();
|
|
|
|
SetThreadContext (*this, cx); /* Restart the thread in a new location */
|
|
|
|
interrupted = true;
|
|
|
|
}
|
|
|
|
return interrupted;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2005-12-20 01:31:50 +01:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
void __stdcall
|
2004-03-12 03:07:39 +01:00
|
|
|
_cygtls::interrupt_setup (int sig, void *handler, struct sigaction& siga)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-12-05 21:20:18 +01:00
|
|
|
push ((__stack_t) sigdelayed);
|
2005-12-23 23:50:20 +01:00
|
|
|
deltamask = siga.sa_mask & ~SIG_NONMASKABLE;
|
2003-11-28 21:55:59 +01:00
|
|
|
sa_flags = siga.sa_flags;
|
|
|
|
func = (void (*) (int)) handler;
|
2006-01-01 17:51:29 +01:00
|
|
|
if (siga.sa_flags & SA_RESETHAND)
|
|
|
|
siga.sa_handler = SIG_DFL;
|
2003-11-28 21:55:59 +01:00
|
|
|
saved_errno = -1; // Flag: no errno to save
|
2001-01-17 15:57:09 +01:00
|
|
|
if (handler == sig_handle_tty_stop)
|
|
|
|
{
|
|
|
|
myself->stopsig = 0;
|
|
|
|
myself->process_state |= PID_STOPPED;
|
|
|
|
}
|
2004-02-09 05:04:24 +01:00
|
|
|
|
2004-02-21 23:57:36 +01:00
|
|
|
this->sig = sig; // Should always be last thing set to avoid a race
|
2004-02-09 05:04:24 +01:00
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
if (!event)
|
|
|
|
threadkill = false;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HANDLE h = event;
|
|
|
|
event = NULL;
|
|
|
|
SetEvent (h);
|
|
|
|
}
|
|
|
|
|
2001-06-24 23:57:50 +02:00
|
|
|
/* Clear any waiting threads prior to dispatching to handler function */
|
|
|
|
int res = SetEvent (signal_arrived); // For an EINTR case
|
2003-11-28 21:55:59 +01:00
|
|
|
proc_subproc (PROC_CLEARWAIT, 1);
|
2004-01-14 16:45:37 +01:00
|
|
|
sigproc_printf ("armed signal_arrived %p, sig %d, res %d", signal_arrived,
|
|
|
|
sig, res);
|
2000-02-28 06:05:33 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern "C" void __stdcall
|
|
|
|
set_sig_errno (int e)
|
|
|
|
{
|
2003-12-17 23:47:32 +01:00
|
|
|
*_my_tls.errno_addr = e;
|
2003-11-28 21:55:59 +01:00
|
|
|
_my_tls.saved_errno = e;
|
2000-10-09 04:53:44 +02:00
|
|
|
// sigproc_printf ("errno %d", e);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
static int setup_handler (int, void *, struct sigaction&, _cygtls *tls)
|
2003-11-28 21:55:59 +01:00
|
|
|
__attribute__((regparm(3)));
|
2000-02-17 20:38:33 +01:00
|
|
|
static int
|
2004-02-12 04:01:58 +01:00
|
|
|
setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-03-09 22:04:05 +01:00
|
|
|
CONTEXT cx;
|
2002-11-22 05:43:47 +01:00
|
|
|
bool interrupted = false;
|
2000-05-17 07:49:51 +02:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
if (tls->sig)
|
2004-01-22 20:03:19 +01:00
|
|
|
{
|
|
|
|
sigproc_printf ("trying to send sig %d but signal %d already armed",
|
|
|
|
sig, tls->sig);
|
|
|
|
goto out;
|
|
|
|
}
|
2000-10-18 06:53:37 +02:00
|
|
|
|
2002-11-22 05:43:47 +01:00
|
|
|
for (int i = 0; i < CALL_HANDLER_RETRY; i++)
|
2000-05-20 07:52:33 +02:00
|
|
|
{
|
2004-02-12 04:01:58 +01:00
|
|
|
tls->lock ();
|
2005-12-05 21:20:18 +01:00
|
|
|
if (tls->incyg)
|
2002-11-22 05:43:47 +01:00
|
|
|
{
|
2005-12-05 21:20:18 +01:00
|
|
|
sigproc_printf ("controlled interrupt. stackptr %p, stack %p, stackptr[-1] %p",
|
|
|
|
tls->stackptr, tls->stack, tls->stackptr[-1]);
|
2004-02-09 05:04:24 +01:00
|
|
|
tls->interrupt_setup (sig, handler, siga);
|
2003-11-28 21:55:59 +01:00
|
|
|
interrupted = true;
|
2004-03-07 05:57:47 +01:00
|
|
|
tls->unlock ();
|
2003-11-28 21:55:59 +01:00
|
|
|
break;
|
2002-11-22 05:43:47 +01:00
|
|
|
}
|
2000-11-07 00:12:05 +01:00
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
tls->unlock ();
|
2003-11-28 21:55:59 +01:00
|
|
|
DWORD res;
|
2003-11-29 01:26:40 +01:00
|
|
|
HANDLE hth = (HANDLE) *tls;
|
2003-11-28 21:55:59 +01:00
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
/* Suspend the thread which will receive the signal.
|
|
|
|
For Windows 95, we also have to ensure that the addresses returned by
|
|
|
|
GetThreadContext are valid.
|
2003-11-28 21:55:59 +01:00
|
|
|
If one of these conditions is not true we loop for a fixed number of times
|
|
|
|
since we don't want to stall the signal handler. FIXME: Will this result in
|
|
|
|
noticeable delays?
|
|
|
|
If the thread is already suspended (which can occur when a program has called
|
2004-03-07 05:57:47 +01:00
|
|
|
SuspendThread on itself) then just queue the signal. */
|
2000-11-06 07:36:32 +01:00
|
|
|
|
2003-08-28 04:04:16 +02:00
|
|
|
#ifndef DEBUGGING
|
2003-11-28 21:55:59 +01:00
|
|
|
sigproc_printf ("suspending mainthread");
|
2003-08-28 04:04:16 +02:00
|
|
|
#else
|
2003-11-28 21:55:59 +01:00
|
|
|
cx.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
|
|
|
|
if (!GetThreadContext (hth, &cx))
|
|
|
|
memset (&cx, 0, sizeof cx);
|
|
|
|
sigproc_printf ("suspending mainthread PC %p", cx.Eip);
|
2003-08-28 04:04:16 +02:00
|
|
|
#endif
|
2003-11-28 21:55:59 +01:00
|
|
|
res = SuspendThread (hth);
|
|
|
|
/* Just set pending if thread is already suspended */
|
2004-03-09 02:24:08 +01:00
|
|
|
if (res)
|
2000-11-07 00:12:05 +01:00
|
|
|
{
|
2005-07-06 22:05:03 +02:00
|
|
|
ResumeThread (hth);
|
2003-11-28 21:55:59 +01:00
|
|
|
break;
|
2000-11-07 00:12:05 +01:00
|
|
|
}
|
2005-12-17 05:36:39 +01:00
|
|
|
cx.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
|
|
|
|
if (!GetThreadContext (hth, &cx))
|
|
|
|
system_printf ("couldn't get context of main thread, %E");
|
2005-12-20 01:31:50 +01:00
|
|
|
else
|
2005-12-17 05:36:39 +01:00
|
|
|
interrupted = tls->interrupt_now (&cx, sig, handler, siga);
|
2002-11-22 05:43:47 +01:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
res = ResumeThread (hth);
|
2002-11-22 05:43:47 +01:00
|
|
|
if (interrupted)
|
2000-11-06 07:36:32 +01:00
|
|
|
break;
|
2004-01-14 16:45:37 +01:00
|
|
|
|
2002-11-22 05:43:47 +01:00
|
|
|
sigproc_printf ("couldn't interrupt. trying again.");
|
2003-11-28 21:55:59 +01:00
|
|
|
low_priority_sleep (0);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2003-08-28 04:04:16 +02:00
|
|
|
out:
|
|
|
|
sigproc_printf ("signal %d %sdelivered", sig, interrupted ? "" : "not ");
|
2000-02-24 03:49:44 +01:00
|
|
|
return interrupted;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
* wininfo.h (wininfo::timer_active): Delete.
(wininfo::itv): Ditto.
(wininfo::start_time): Ditto.
(wininfo::window_started): Ditto.
(wininfo::getitimer): Ditto.
(wininfo::setitimer): Ditto.
(wininfo::wininfo): Ditto.
(wininfo::lock): New method.
(wininfo::release): Ditto.
* window.cc: Use new lock/acquire wininfo methods throughout.
(wininfo::wininfo): Delete
(wininfo::getitimer): Ditto.
(wininfo::setitimer): Ditto.
(getitimer): Ditto.
(setitimer): Ditto.
(ualarm): Ditto.
(alarm): Ditto.
(wininfo::lock): Define new function.
(wininfo::release): Ditto.
(wininfo::process): Delete WM_TIMER handling.
* timer.cc (struct timetracker): Delete it, flags. Add it_interval,
interval_us, sleepto_us, running, init_muto(), syncthread, and gettime().
(ttstart): Make NO_COPY.
(lock_timer_tracker): New class.
(timer_tracker::timer_tracker): Distinguish ttstart case.
(timer_tracker::~timer_tracker): New destructor. Clean out events, and reset
magic.
(timer_tracker::init_muto): New method.
(to_us): Round up as per POSIX.
(timer_thread): Reorganize to match timer_tracker::settime and
timer_tracker::gettime. Call sig_send without wait. Call auto_release.
(timer_tracker::settime): Reorganize logic to avoid race. Call gettime to
recover old value.
(timer_tracker::gettime): New method.
(timer_create): Properly set errno on invalid timerid. Use new
lock_timer_tracker method.
(timer_delete): Ditto. Simplify code slightly.
(timer_gettime): New function.
(fixup_timers_after_fork): Reinit ttstart.
(getitimer): New implementation.
(setitimer): Ditto.
(ualarm): Ditto.
(alarm): Ditto.
* cygwin.din: Export timer_gettime.
* winsup.h: Remove has has_visible_window_station declaration.
* Makefile.in (DLL_OFILES): Add lsearch.o.
* cygthread.h (cygthread::notify_detached): New element.
(cygthread::cygthread): Take optional fourth argument signifying event to
signal on thread completion.
* cygthread.cc (cygthread::stub): Signal notify_detached event, if it exists.
(cygthread::cygthread): Initialize notify_detached from fourth argument.
(cygthread::detach): Wait for notify_detached field is present.
* lsearch.cc: New file.
* search.h: Ditto.
* include/cygwin/version.h: Bump API minor number to 126.
* cygwin.din: Export lsearch, lfind.
2005-03-27 03:57:38 +02:00
|
|
|
static inline bool
|
|
|
|
has_visible_window_station ()
|
|
|
|
{
|
|
|
|
HWINSTA station_hdl;
|
|
|
|
USEROBJECTFLAGS uof;
|
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
/* Check if the process is associated with a visible window station.
|
|
|
|
These are processes running on the local desktop as well as processes
|
|
|
|
running in terminal server sessions.
|
|
|
|
Processes running in a service session not explicitely associated
|
|
|
|
with the desktop (using the "Allow service to interact with desktop"
|
|
|
|
property) are running in an invisible window station. */
|
|
|
|
if ((station_hdl = GetProcessWindowStation ())
|
|
|
|
&& GetUserObjectInformationA (station_hdl, UOI_FLAGS, &uof,
|
|
|
|
sizeof uof, &len)
|
|
|
|
&& (uof.dwFlags & WSF_VISIBLE))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-01-11 03:24:06 +01:00
|
|
|
/* Keyboard interrupt handler. */
|
2000-02-17 20:38:33 +01:00
|
|
|
static BOOL WINAPI
|
|
|
|
ctrl_c_handler (DWORD type)
|
|
|
|
{
|
2003-07-26 06:53:59 +02:00
|
|
|
static bool saw_close;
|
2004-02-12 04:01:58 +01:00
|
|
|
|
|
|
|
if (!cygwin_finished_initializing)
|
2004-02-14 05:38:37 +01:00
|
|
|
{
|
2004-11-26 05:15:10 +01:00
|
|
|
if (myself->cygstarted) /* Was this process created by a cygwin process? */
|
2004-09-12 05:47:57 +02:00
|
|
|
return TRUE; /* Yes. Let the parent eventually handle CTRL-C issues. */
|
2004-02-14 05:38:37 +01:00
|
|
|
debug_printf ("exiting with status %p", STATUS_CONTROL_C_EXIT);
|
|
|
|
ExitProcess (STATUS_CONTROL_C_EXIT);
|
|
|
|
}
|
2004-02-12 04:01:58 +01:00
|
|
|
|
2004-01-14 16:45:37 +01:00
|
|
|
_my_tls.remove (INFINITE);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-09-07 05:10:17 +02:00
|
|
|
#if 0
|
|
|
|
if (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT)
|
|
|
|
proc_subproc (PROC_KILLFORKED, 0);
|
|
|
|
#endif
|
|
|
|
|
2001-07-26 02:10:52 +02:00
|
|
|
/* Return FALSE to prevent an "End task" dialog box from appearing
|
|
|
|
for each Cygwin process window that's open when the computer
|
|
|
|
is shut down or console window is closed. */
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2001-07-26 02:10:52 +02:00
|
|
|
if (type == CTRL_SHUTDOWN_EVENT)
|
|
|
|
{
|
2003-06-12 14:36:07 +02:00
|
|
|
#if 0
|
|
|
|
/* Don't send a signal. Only NT service applications and their child
|
2003-07-26 06:53:59 +02:00
|
|
|
processes will receive this event and the services typically already
|
2003-06-12 14:36:07 +02:00
|
|
|
handle the shutdown action when getting the SERVICE_CONTROL_SHUTDOWN
|
|
|
|
control message. */
|
2001-07-26 02:10:52 +02:00
|
|
|
sig_send (NULL, SIGTERM);
|
2003-06-12 14:36:07 +02:00
|
|
|
#endif
|
2001-07-26 02:10:52 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-10-14 11:21:55 +02:00
|
|
|
if (myself->ctty != -1)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-07-26 06:53:59 +02:00
|
|
|
if (type == CTRL_CLOSE_EVENT)
|
2004-05-28 21:50:07 +02:00
|
|
|
{
|
2003-10-14 11:21:55 +02:00
|
|
|
sig_send (NULL, SIGHUP);
|
2004-01-19 06:46:54 +01:00
|
|
|
saw_close = true;
|
2003-10-14 11:21:55 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!saw_close && type == CTRL_LOGOFF_EVENT)
|
2004-05-28 21:50:07 +02:00
|
|
|
{
|
2006-04-18 18:24:54 +02:00
|
|
|
/* The CTRL_LOGOFF_EVENT is sent when *any* user logs off.
|
|
|
|
The below code sends a SIGHUP only if it is not performing the
|
|
|
|
default activity for SIGHUP. Note that it is possible for two
|
|
|
|
SIGHUP signals to arrive if a process group leader is exiting
|
|
|
|
too. Getting this 100% right is saved for a future cygwin mailing
|
|
|
|
list goad. */
|
|
|
|
if (global_sigs[SIGHUP].sa_handler != SIG_DFL)
|
|
|
|
{
|
|
|
|
sig_send (myself_nowait, SIGHUP);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
2003-10-14 11:21:55 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2001-07-26 02:10:52 +02:00
|
|
|
|
2002-01-10 04:21:27 +01:00
|
|
|
/* If we are a stub and the new process has a pinfo structure, let it
|
|
|
|
handle this signal. */
|
|
|
|
if (dwExeced && pinfo (dwExeced))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* We're only the process group leader when we have a valid pinfo structure.
|
|
|
|
If we don't have one, then the parent "stub" will handle the signal. */
|
2002-01-21 00:13:03 +01:00
|
|
|
if (!pinfo (cygwin_pid (GetCurrentProcessId ())))
|
2002-01-10 04:21:27 +01:00
|
|
|
return TRUE;
|
|
|
|
|
2000-07-04 21:07:35 +02:00
|
|
|
tty_min *t = cygwin_shared->tty.get_tty (myself->ctty);
|
2002-01-10 04:21:27 +01:00
|
|
|
/* Ignore this if we're not the process group leader since it should be handled
|
2000-02-17 20:38:33 +01:00
|
|
|
*by* the process group leader. */
|
2001-09-05 04:42:49 +02:00
|
|
|
if (myself->ctty != -1 && t->getpgid () == myself->pid &&
|
|
|
|
(GetTickCount () - t->last_ctrl_c) >= MIN_CTRL_C_SLOP)
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Otherwise we just send a SIGINT to the process group and return TRUE (to indicate
|
|
|
|
that we have handled the signal). At this point, type should be
|
|
|
|
a CTRL_C_EVENT or CTRL_BREAK_EVENT. */
|
|
|
|
{
|
2005-11-25 20:53:52 +01:00
|
|
|
int sig = SIGINT;
|
|
|
|
/* If intr and quit are both mapped to ^C, send SIGQUIT on ^BREAK */
|
|
|
|
if (type == CTRL_BREAK_EVENT
|
2005-12-22 06:57:54 +01:00
|
|
|
&& t->ti.c_cc[VINTR] == 3 && t->ti.c_cc[VQUIT] == 3)
|
|
|
|
sig = SIGQUIT;
|
2000-02-17 20:38:33 +01:00
|
|
|
t->last_ctrl_c = GetTickCount ();
|
2005-11-25 20:53:52 +01:00
|
|
|
killsys (-myself->pid, sig);
|
2000-02-17 20:38:33 +01:00
|
|
|
t->last_ctrl_c = GetTickCount ();
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-01-10 04:21:27 +01:00
|
|
|
|
2001-09-05 04:42:49 +02:00
|
|
|
return TRUE;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
/* Function used by low level sig wrappers. */
|
|
|
|
extern "C" void __stdcall
|
|
|
|
set_process_mask (sigset_t newmask)
|
|
|
|
{
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (newmask, myself->getsigmask ());
|
2005-08-25 05:12:48 +02:00
|
|
|
sigproc_printf ("mask now %p\n", myself->getsigmask ());
|
2003-11-28 21:55:59 +01:00
|
|
|
}
|
|
|
|
|
2004-02-26 06:10:49 +01:00
|
|
|
extern "C" int
|
|
|
|
sighold (int sig)
|
|
|
|
{
|
|
|
|
/* check that sig is in right range */
|
|
|
|
if (sig < 0 || sig >= NSIG)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
syscall_printf ("signal %d out of range", sig);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.acquire (INFINITE);
|
2004-02-26 06:10:49 +01:00
|
|
|
sigset_t mask = myself->getsigmask ();
|
|
|
|
sigaddset (&mask, sig);
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (mask, myself->getsigmask ());
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.release ();
|
2004-02-26 06:10:49 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-14 19:34:03 +02:00
|
|
|
extern "C" int
|
|
|
|
sigrelse (int sig)
|
|
|
|
{
|
|
|
|
/* check that sig is in right range */
|
|
|
|
if (sig < 0 || sig >= NSIG)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
syscall_printf ("signal %d out of range", sig);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
mask_sync.acquire (INFINITE);
|
|
|
|
sigset_t mask = myself->getsigmask ();
|
|
|
|
sigdelset (&mask, sig);
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (mask, myself->getsigmask ());
|
2005-04-14 19:34:03 +02:00
|
|
|
mask_sync.release ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-16 19:21:49 +01:00
|
|
|
extern "C" _sig_func_ptr
|
|
|
|
sigset (int sig, _sig_func_ptr func)
|
|
|
|
{
|
|
|
|
sig_dispatch_pending ();
|
|
|
|
_sig_func_ptr prev;
|
|
|
|
|
|
|
|
/* check that sig is in right range */
|
|
|
|
if (sig < 0 || sig >= NSIG || sig == SIGKILL || sig == SIGSTOP)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
syscall_printf ("SIG_ERR = sigset (%d, %p)", sig, func);
|
|
|
|
return (_sig_func_ptr) SIG_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mask_sync.acquire (INFINITE);
|
|
|
|
sigset_t mask = myself->getsigmask ();
|
|
|
|
/* If sig was in the signal mask return SIG_HOLD, otherwise return the
|
|
|
|
previous disposition. */
|
|
|
|
if (sigismember (&mask, sig))
|
|
|
|
prev = SIG_HOLD;
|
|
|
|
else
|
|
|
|
prev = global_sigs[sig].sa_handler;
|
|
|
|
/* If func is SIG_HOLD, add sig to the signal mask, otherwise set the
|
|
|
|
disposition to func and remove sig from the signal mask. */
|
|
|
|
if (func == SIG_HOLD)
|
|
|
|
sigaddset (&mask, sig);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No error checking. The test which could return SIG_ERR has already
|
|
|
|
been made above. */
|
|
|
|
signal (sig, func);
|
|
|
|
sigdelset (&mask, sig);
|
|
|
|
}
|
|
|
|
set_signal_mask (mask, myself->getsigmask ());
|
|
|
|
mask_sync.release ();
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
sigignore (int sig)
|
|
|
|
{
|
|
|
|
return sigset (sig, SIG_IGN) == SIG_ERR ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
2005-12-23 23:50:20 +01:00
|
|
|
/* Update the signal mask for this process and return the old mask.
|
2004-03-12 04:09:28 +01:00
|
|
|
Called from sigdelayed */
|
|
|
|
extern "C" sigset_t
|
|
|
|
set_process_mask_delta ()
|
|
|
|
{
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.acquire (INFINITE);
|
2004-03-12 04:09:28 +01:00
|
|
|
sigset_t newmask, oldmask;
|
|
|
|
|
|
|
|
if (_my_tls.deltamask & SIG_NONMASKABLE)
|
|
|
|
oldmask = _my_tls.oldmask; /* from handle_sigsuspend */
|
|
|
|
else
|
|
|
|
oldmask = myself->getsigmask ();
|
|
|
|
newmask = (oldmask | _my_tls.deltamask) & ~SIG_NONMASKABLE;
|
|
|
|
sigproc_printf ("oldmask %p, newmask %p, deltamask %p", oldmask, newmask,
|
|
|
|
_my_tls.deltamask);
|
|
|
|
myself->setsigmask (newmask);
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.release ();
|
2004-03-12 04:09:28 +01:00
|
|
|
return oldmask;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Set the signal mask for this process.
|
2000-11-16 06:16:59 +01:00
|
|
|
Note that some signals are unmaskable, as in UNIX. */
|
2000-02-17 20:38:33 +01:00
|
|
|
extern "C" void __stdcall
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (sigset_t newmask, sigset_t& oldmask)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-08-29 05:12:39 +02:00
|
|
|
#ifdef CGF
|
2005-09-14 16:00:07 +02:00
|
|
|
if (&_my_tls == _sig_tls)
|
2005-08-29 01:26:23 +02:00
|
|
|
small_printf ("********* waiting in signal thread\n");
|
2005-08-29 05:12:39 +02:00
|
|
|
#endif
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.acquire (INFINITE);
|
2000-02-17 20:38:33 +01:00
|
|
|
newmask &= ~SIG_NONMASKABLE;
|
2003-12-23 17:26:31 +01:00
|
|
|
sigset_t mask_bits = oldmask & ~newmask;
|
|
|
|
sigproc_printf ("oldmask %p, newmask %p, mask_bits %p", oldmask, newmask,
|
|
|
|
mask_bits);
|
2005-08-24 00:22:52 +02:00
|
|
|
oldmask = newmask;
|
2003-12-23 17:26:31 +01:00
|
|
|
if (mask_bits)
|
2004-02-01 19:29:12 +01:00
|
|
|
sig_dispatch_pending (true);
|
* 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
|
|
|
else
|
2003-11-28 21:55:59 +01:00
|
|
|
sigproc_printf ("not calling sig_dispatch_pending");
|
2005-08-29 01:26:23 +02:00
|
|
|
mask_sync.release ();
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int __stdcall
|
2004-01-19 06:46:54 +01:00
|
|
|
sigpacket::process ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2004-01-26 23:25:57 +01:00
|
|
|
DWORD continue_now;
|
|
|
|
if (si.si_signo != SIGCONT)
|
|
|
|
continue_now = false;
|
|
|
|
else
|
* 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
|
|
|
{
|
2004-01-26 23:25:57 +01:00
|
|
|
continue_now = myself->process_state & PID_STOPPED;
|
* 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
|
|
|
myself->stopsig = 0;
|
|
|
|
myself->process_state &= ~PID_STOPPED;
|
|
|
|
/* Clear pending stop signals */
|
|
|
|
sig_clear (SIGSTOP);
|
|
|
|
sig_clear (SIGTSTP);
|
|
|
|
sig_clear (SIGTTIN);
|
|
|
|
sig_clear (SIGTTOU);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
int rc = 1;
|
2004-01-19 06:46:54 +01:00
|
|
|
|
|
|
|
sigproc_printf ("signal %d processing", si.si_signo);
|
2006-01-01 18:15:01 +01:00
|
|
|
struct sigaction& thissig = global_sigs[si.si_signo];
|
2004-01-19 06:46:54 +01:00
|
|
|
|
|
|
|
myself->rusage_self.ru_nsignals++;
|
|
|
|
|
2005-08-25 05:12:48 +02:00
|
|
|
bool masked;
|
2005-10-01 01:52:13 +02:00
|
|
|
void *handler;
|
|
|
|
if (!hExeced || (void *) thissig.sa_handler == (void *) SIG_IGN)
|
|
|
|
handler = (void *) thissig.sa_handler;
|
|
|
|
else if (tls)
|
|
|
|
return 1;
|
2005-12-05 21:20:18 +01:00
|
|
|
else
|
2005-10-01 01:52:13 +02:00
|
|
|
handler = NULL;
|
2005-08-25 05:12:48 +02:00
|
|
|
|
2004-01-19 06:46:54 +01:00
|
|
|
if (si.si_signo == SIGKILL)
|
|
|
|
goto exit_sig;
|
2005-08-25 05:12:48 +02:00
|
|
|
if (si.si_signo == SIGSTOP)
|
* 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
|
|
|
{
|
2004-01-19 06:46:54 +01:00
|
|
|
sig_clear (SIGCONT);
|
2004-02-21 23:57:36 +01:00
|
|
|
if (!tls)
|
|
|
|
tls = _main_tls;
|
2004-01-19 06:46:54 +01:00
|
|
|
goto stop;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool insigwait_mask;
|
2005-08-25 05:12:48 +02:00
|
|
|
if ((masked = ISSTATE (myself, PID_STOPPED)))
|
|
|
|
insigwait_mask = false;
|
|
|
|
else if (!tls)
|
|
|
|
insigwait_mask = !handler && (tls = _cygtls::find_tls (si.si_signo));
|
|
|
|
else
|
|
|
|
insigwait_mask = sigismember (&tls->sigwait_mask, si.si_signo);
|
2004-01-19 06:46:54 +01:00
|
|
|
|
|
|
|
if (insigwait_mask)
|
|
|
|
goto thread_specific;
|
|
|
|
|
2005-08-25 05:12:48 +02:00
|
|
|
if (masked)
|
|
|
|
/* nothing to do */;
|
|
|
|
else if (sigismember (mask, si.si_signo))
|
|
|
|
masked = true;
|
|
|
|
else if (tls)
|
|
|
|
masked = sigismember (&tls->sigmask, si.si_signo);
|
|
|
|
|
2004-01-19 06:46:54 +01:00
|
|
|
if (!tls)
|
|
|
|
tls = _main_tls;
|
|
|
|
|
2005-08-25 05:12:48 +02:00
|
|
|
if (masked)
|
2004-01-19 06:46:54 +01:00
|
|
|
{
|
|
|
|
sigproc_printf ("signal %d blocked", si.si_signo);
|
2003-11-28 21:55:59 +01:00
|
|
|
rc = -1;
|
|
|
|
goto done;
|
* 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
|
|
|
}
|
|
|
|
|
2004-01-19 06:46:54 +01:00
|
|
|
/* Clear pending SIGCONT on stop signals */
|
|
|
|
if (si.si_signo == SIGTSTP || si.si_signo == SIGTTIN || si.si_signo == SIGTTOU)
|
|
|
|
sig_clear (SIGCONT);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-11-14 21:34:33 +01:00
|
|
|
#ifdef CGF
|
2005-11-01 06:55:30 +01:00
|
|
|
if (being_debugged ())
|
|
|
|
{
|
|
|
|
char sigmsg[sizeof (_CYGWIN_SIGNAL_STRING " 0xffffffff")];
|
|
|
|
__small_sprintf (sigmsg, _CYGWIN_SIGNAL_STRING " %p", si.si_signo);
|
|
|
|
OutputDebugString (sigmsg);
|
|
|
|
}
|
2005-11-14 21:34:33 +01:00
|
|
|
#endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
if (handler == (void *) SIG_DFL)
|
|
|
|
{
|
2003-11-28 21:55:59 +01:00
|
|
|
if (insigwait_mask)
|
|
|
|
goto thread_specific;
|
2004-01-19 06:46:54 +01:00
|
|
|
if (si.si_signo == SIGCHLD || si.si_signo == SIGIO || si.si_signo == SIGCONT || si.si_signo == SIGWINCH
|
|
|
|
|| si.si_signo == SIGURG)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2004-01-19 06:46:54 +01:00
|
|
|
sigproc_printf ("default signal %d ignored", si.si_signo);
|
2004-01-26 23:25:57 +01:00
|
|
|
if (continue_now)
|
|
|
|
SetEvent (signal_arrived);
|
2000-02-17 20:38:33 +01:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2004-01-19 06:46:54 +01:00
|
|
|
if (si.si_signo == SIGTSTP || si.si_signo == SIGTTIN || si.si_signo == SIGTTOU)
|
2000-02-17 20:38:33 +01:00
|
|
|
goto stop;
|
|
|
|
|
|
|
|
goto exit_sig;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handler == (void *) SIG_IGN)
|
|
|
|
{
|
2004-01-19 06:46:54 +01:00
|
|
|
sigproc_printf ("signal %d ignored", si.si_signo);
|
2000-02-17 20:38:33 +01:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handler == (void *) SIG_ERR)
|
|
|
|
goto exit_sig;
|
|
|
|
|
2004-03-12 09:22:22 +01:00
|
|
|
tls->set_siginfo (this);
|
2000-02-17 20:38:33 +01:00
|
|
|
goto dosig;
|
|
|
|
|
2003-09-09 05:11:31 +02:00
|
|
|
stop:
|
2001-01-17 15:57:09 +01:00
|
|
|
/* Eat multiple attempts to STOP */
|
|
|
|
if (ISSTATE (myself, PID_STOPPED))
|
|
|
|
goto done;
|
2000-02-17 20:38:33 +01:00
|
|
|
handler = (void *) sig_handle_tty_stop;
|
2006-01-01 18:15:01 +01:00
|
|
|
struct sigaction dummy = global_sigs[SIGSTOP];
|
|
|
|
thissig = dummy;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-09-09 05:11:31 +02:00
|
|
|
dosig:
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Dispatch to the appropriate function. */
|
2004-01-19 06:46:54 +01:00
|
|
|
sigproc_printf ("signal %d, about to call %p", si.si_signo, handler);
|
|
|
|
rc = setup_handler (si.si_signo, handler, thissig, tls);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-09-09 05:11:31 +02:00
|
|
|
done:
|
2004-01-26 23:25:57 +01:00
|
|
|
if (continue_now)
|
|
|
|
SetEvent (sigCONT);
|
2000-02-17 20:38:33 +01:00
|
|
|
sigproc_printf ("returning %d", rc);
|
|
|
|
return rc;
|
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
thread_specific:
|
2004-01-19 06:46:54 +01:00
|
|
|
tls->sig = si.si_signo;
|
|
|
|
tls->set_siginfo (this);
|
2003-11-28 21:55:59 +01:00
|
|
|
sigproc_printf ("releasing sigwait for thread");
|
|
|
|
SetEvent (tls->event);
|
|
|
|
goto done;
|
|
|
|
|
2003-09-09 05:11:31 +02:00
|
|
|
exit_sig:
|
2004-01-19 06:46:54 +01:00
|
|
|
if (si.si_signo == SIGQUIT || si.si_signo == SIGABRT)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-03 22:14:06 +02:00
|
|
|
CONTEXT c;
|
|
|
|
c.ContextFlags = CONTEXT_FULL;
|
|
|
|
GetThreadContext (hMainThread, &c);
|
2006-02-06 19:24:11 +01:00
|
|
|
tls->copy_context (&c);
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo |= 0x80;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2004-01-19 06:46:54 +01:00
|
|
|
sigproc_printf ("signal %d, about to call do_exit", si.si_signo);
|
2006-02-06 19:24:11 +01:00
|
|
|
tls->signal_exit (si.si_signo); /* never returns */
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Cover function to `do_exit' to handle exiting even in presence of more
|
2000-07-26 22:13:27 +02:00
|
|
|
exceptions. We used to call exit, but a SIGSEGV shouldn't cause atexit
|
2000-02-17 20:38:33 +01:00
|
|
|
routines to run. */
|
2006-02-06 19:24:11 +01:00
|
|
|
void
|
|
|
|
_cygtls::signal_exit (int rc)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-09-20 04:06:57 +02:00
|
|
|
if (hExeced)
|
|
|
|
{
|
|
|
|
sigproc_printf ("terminating captive process");
|
|
|
|
TerminateProcess (hExeced, sigExeced = rc);
|
|
|
|
}
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
signal_debugger (rc & 0x7f);
|
|
|
|
if ((rc & 0x80) && !try_to_debug ())
|
|
|
|
stackdump (thread_context.ebp, 1, 1);
|
|
|
|
|
2005-10-18 01:27:00 +02:00
|
|
|
lock_process until_exit (true);
|
2005-09-24 01:37:52 +02:00
|
|
|
if (hExeced || exit_state)
|
2005-01-11 16:31:04 +01:00
|
|
|
myself.exit (rc);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-10-29 22:33:59 +02:00
|
|
|
/* Starve other threads in a vain attempt to stop them from doing something
|
|
|
|
stupid. */
|
2005-07-06 22:05:03 +02:00
|
|
|
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_TIME_CRITICAL);
|
2000-09-11 02:25:57 +02:00
|
|
|
|
|
|
|
user_data->resourcelocks->Delete ();
|
|
|
|
user_data->resourcelocks->Init ();
|
|
|
|
|
2000-11-02 03:15:02 +01:00
|
|
|
sigproc_printf ("about to call do_exit (%x)", rc);
|
2005-07-06 22:05:03 +02:00
|
|
|
SetEvent (signal_arrived);
|
2000-02-17 20:38:33 +01:00
|
|
|
do_exit (rc);
|
|
|
|
}
|
|
|
|
|
2004-05-17 17:27:56 +02:00
|
|
|
HANDLE NO_COPY tty_mutex = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
events_init ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-12-31 00:08:35 +01:00
|
|
|
char *name;
|
2003-11-15 00:40:06 +01:00
|
|
|
char mutex_name[CYG_MAX_PATH];
|
2004-05-17 17:27:56 +02:00
|
|
|
/* tty_mutex is on while searching for a tty slot. It's necessary
|
2000-02-17 20:38:33 +01:00
|
|
|
while finding console window handle */
|
|
|
|
|
2004-05-17 17:27:56 +02:00
|
|
|
if (!(tty_mutex = CreateMutex (&sec_all_nih, FALSE,
|
2003-05-21 10:01:57 +02:00
|
|
|
name = shared_name (mutex_name,
|
2004-05-17 17:27:56 +02:00
|
|
|
"tty_mutex", 0))))
|
2002-12-31 00:08:35 +01:00
|
|
|
api_fatal ("can't create title mutex '%s', %E", name);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-05-17 17:27:56 +02:00
|
|
|
ProtectHandle (tty_mutex);
|
2005-04-05 06:31:00 +02:00
|
|
|
mask_sync.init ("mask_sync");
|
2000-02-24 03:49:44 +01:00
|
|
|
windows_system_directory[0] = '\0';
|
2005-07-06 22:05:03 +02:00
|
|
|
GetSystemDirectory (windows_system_directory, sizeof (windows_system_directory) - 2);
|
2000-02-24 03:49:44 +01:00
|
|
|
char *end = strchr (windows_system_directory, '\0');
|
|
|
|
if (end == windows_system_directory)
|
|
|
|
api_fatal ("can't find windows system directory");
|
|
|
|
if (end[-1] != '\\')
|
|
|
|
{
|
|
|
|
*end++ = '\\';
|
|
|
|
*end = '\0';
|
|
|
|
}
|
|
|
|
windows_system_directory_length = end - windows_system_directory;
|
2000-03-05 07:34:55 +01:00
|
|
|
debug_printf ("windows_system_directory '%s', windows_system_directory_length %d",
|
|
|
|
windows_system_directory, windows_system_directory_length);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
events_terminate ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
exit_already = 1;
|
|
|
|
}
|
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
int
|
|
|
|
_cygtls::call_signal_handler ()
|
2001-04-02 02:18:29 +02:00
|
|
|
{
|
2004-02-12 04:01:58 +01:00
|
|
|
int this_sa_flags = 0;
|
2004-03-12 03:07:39 +01:00
|
|
|
/* Call signal handler. */
|
2004-02-12 04:01:58 +01:00
|
|
|
while (sig)
|
2001-09-12 07:09:24 +02:00
|
|
|
{
|
2005-12-23 23:50:20 +01:00
|
|
|
lock ();
|
2004-02-12 04:01:58 +01:00
|
|
|
this_sa_flags = sa_flags;
|
|
|
|
int thissig = sig;
|
2004-01-14 16:45:37 +01:00
|
|
|
|
2005-07-06 22:05:03 +02:00
|
|
|
pop ();
|
2003-11-28 21:55:59 +01:00
|
|
|
reset_signal_arrived ();
|
2004-03-12 04:09:28 +01:00
|
|
|
sigset_t this_oldmask = set_process_mask_delta ();
|
2004-02-12 04:01:58 +01:00
|
|
|
int this_errno = saved_errno;
|
|
|
|
sig = 0;
|
2005-12-23 23:50:20 +01:00
|
|
|
unlock (); // make sure synchronized
|
|
|
|
incyg = 0;
|
2005-09-26 16:58:16 +02:00
|
|
|
if (!(this_sa_flags & SA_SIGINFO))
|
|
|
|
{
|
|
|
|
void (*sigfunc) (int) = func;
|
|
|
|
sigfunc (thissig);
|
|
|
|
}
|
2005-09-26 16:51:48 +02:00
|
|
|
else
|
2005-12-22 06:57:54 +01:00
|
|
|
{
|
2005-09-26 16:51:48 +02:00
|
|
|
siginfo_t thissi = infodata;
|
2005-12-22 06:57:54 +01:00
|
|
|
void (*sigact) (int, siginfo_t *, void *) = (void (*) (int, siginfo_t *, void *)) func;
|
|
|
|
/* no ucontext_t information provided yet */
|
|
|
|
sigact (thissig, &thissi, NULL);
|
|
|
|
}
|
2005-12-23 23:50:20 +01:00
|
|
|
incyg = 1;
|
2005-08-24 00:22:52 +02:00
|
|
|
set_signal_mask (this_oldmask, myself->getsigmask ());
|
2003-11-28 21:55:59 +01:00
|
|
|
if (this_errno >= 0)
|
|
|
|
set_errno (this_errno);
|
2001-09-12 07:09:24 +02:00
|
|
|
}
|
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
return this_sa_flags & SA_RESTART;
|
2001-04-02 02:18:29 +02:00
|
|
|
}
|
2001-04-01 07:38:08 +02:00
|
|
|
|
2004-02-12 04:01:58 +01:00
|
|
|
extern "C" void __stdcall
|
2000-02-26 02:11:54 +01:00
|
|
|
reset_signal_arrived ()
|
|
|
|
{
|
2004-03-12 03:07:39 +01:00
|
|
|
// NEEDED? WaitForSingleObject (signal_arrived, 10);
|
2005-07-06 22:05:03 +02:00
|
|
|
ResetEvent (signal_arrived);
|
2000-02-26 02:11:54 +01:00
|
|
|
sigproc_printf ("reset signal_arrived");
|
2004-03-12 03:07:39 +01:00
|
|
|
if (_my_tls.stackptr > _my_tls.stack)
|
|
|
|
debug_printf ("stackptr[-1] %p", _my_tls.stackptr[-1]);
|
2000-02-26 02:11:54 +01:00
|
|
|
}
|
2006-02-06 19:24:11 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
_cygtls::copy_context (CONTEXT *c)
|
|
|
|
{
|
|
|
|
memcpy (&thread_context, c, (&thread_context._internal - (unsigned char *) &thread_context));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cygtls::signal_debugger (int sig)
|
|
|
|
{
|
|
|
|
if (being_debugged ())
|
|
|
|
{
|
|
|
|
char sigmsg[2 * sizeof (_CYGWIN_SIGNAL_STRING " ffffffff ffffffff")];
|
|
|
|
__small_sprintf (sigmsg, _CYGWIN_SIGNAL_STRING " %d %p %p", sig, thread_id, &thread_context);
|
|
|
|
OutputDebugString (sigmsg);
|
|
|
|
}
|
|
|
|
}
|