2000-02-17 20:38:33 +01:00
|
|
|
/* dll_init.cc
|
|
|
|
|
2004-02-09 05:04:24 +01:00
|
|
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2000-08-02 18:28:18 +02:00
|
|
|
#include <stdlib.h>
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "perprocess.h"
|
|
|
|
#include "dll_init.h"
|
|
|
|
#include "environ.h"
|
2001-09-07 23:32:07 +02:00
|
|
|
#include "security.h"
|
2001-10-01 06:10:07 +02:00
|
|
|
#include "path.h"
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 02:37:18 +02:00
|
|
|
#include "fhandler.h"
|
2001-09-07 23:32:07 +02:00
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2002-06-02 08:07:01 +02:00
|
|
|
#include "pinfo.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern void __stdcall check_sanity_and_sync (per_process *);
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
dll_list NO_COPY dlls;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-02-13 20:34:32 +01:00
|
|
|
static int NO_COPY in_forkee;
|
2001-09-06 06:41:59 +02:00
|
|
|
static int dll_global_dtors_recorded;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Run destructors for all DLLs on exit. */
|
2000-02-17 20:38:33 +01:00
|
|
|
static void
|
2002-09-23 02:31:31 +02:00
|
|
|
dll_global_dtors ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
for (dll *d = dlls.istart (DLL_ANY); d; d = dlls.inext ())
|
|
|
|
d->p.run_dtors ();
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Run all constructors associated with a dll */
|
|
|
|
void
|
|
|
|
per_module::run_ctors ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
void (**pfunc)() = ctors;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* Run ctors backwards, so skip the first entry and find how many
|
|
|
|
there are, then run them. */
|
|
|
|
|
|
|
|
if (pfunc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 1; pfunc[i]; i++);
|
|
|
|
|
2000-09-04 19:52:42 +02:00
|
|
|
for (int j = i - 1; j > 0; j--)
|
2000-02-17 20:38:33 +01:00
|
|
|
(pfunc[j]) ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Run all destructors associated with a dll */
|
|
|
|
void
|
|
|
|
per_module::run_dtors ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
void (**pfunc)() = dtors;
|
2000-02-17 20:38:33 +01:00
|
|
|
for (int i = 1; pfunc[i]; i++)
|
|
|
|
(pfunc[i]) ();
|
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Initialize an individual DLL */
|
|
|
|
int
|
|
|
|
dll::init ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
int ret = 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Why didn't we just import this variable? */
|
|
|
|
*(p.envptr) = __cygwin_environ;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Don't run constructors or the "main" if we've forked. */
|
|
|
|
if (!in_forkee)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
/* global contructors */
|
2000-07-15 04:48:11 +02:00
|
|
|
p.run_ctors ();
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* entry point of dll (use main of per_process with null args...) */
|
2000-07-15 04:48:11 +02:00
|
|
|
if (p.main)
|
|
|
|
ret = (*(p.main)) (0, 0, 0);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Look for a dll based on name */
|
|
|
|
dll *
|
|
|
|
dll_list::operator[] (const char *name)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
dll *d = &start;
|
|
|
|
while ((d = d->next) != NULL)
|
|
|
|
if (strcasematch (name, d->name))
|
|
|
|
return d;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
return NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2001-10-21 05:38:41 +02:00
|
|
|
#define RETRIES 1000
|
2000-07-15 04:48:11 +02:00
|
|
|
|
2000-07-16 06:10:33 +02:00
|
|
|
/* Allocate space for a dll struct contiguous with the just-loaded dll. */
|
2000-07-15 04:48:11 +02:00
|
|
|
dll *
|
|
|
|
dll_list::alloc (HINSTANCE h, per_process *p, dll_type type)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-11-15 00:40:06 +01:00
|
|
|
char name[CYG_MAX_PATH + 1];
|
2000-07-15 04:48:11 +02:00
|
|
|
DWORD namelen = GetModuleFileName (h, name, sizeof (name));
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Already loaded? */
|
|
|
|
dll *d = dlls[name];
|
|
|
|
if (d)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
d->count++; /* Yes. Bump the usage count. */
|
|
|
|
return d; /* Return previously allocated pointer. */
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-17 21:18:21 +02:00
|
|
|
SYSTEM_INFO s1;
|
|
|
|
GetSystemInfo (&s1);
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
int i;
|
|
|
|
void *s = p->bss_end;
|
2000-07-17 21:18:21 +02:00
|
|
|
DWORD n;
|
2000-07-15 04:48:11 +02:00
|
|
|
MEMORY_BASIC_INFORMATION m;
|
|
|
|
/* Search for space after the DLL */
|
2000-07-17 21:18:21 +02:00
|
|
|
for (i = 0; i <= RETRIES; i++, s = (char *) m.BaseAddress + m.RegionSize)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
if (!VirtualQuery (s, &m, sizeof (m)))
|
|
|
|
return NULL; /* Can't do it. */
|
|
|
|
if (m.State == MEM_FREE)
|
2000-07-17 21:18:21 +02:00
|
|
|
{
|
|
|
|
/* Couldn't find any. Uh oh. FIXME: Issue an error? */
|
|
|
|
if (i == RETRIES)
|
|
|
|
return NULL; /* Oh well. Couldn't locate free space. */
|
|
|
|
|
|
|
|
/* Ensure that this is rounded to the nearest page boundary.
|
|
|
|
FIXME: Should this be ensured by VirtualQuery? */
|
|
|
|
n = (DWORD) m.BaseAddress;
|
|
|
|
DWORD r = n % s1.dwAllocationGranularity;
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
n = ((n - r) + s1.dwAllocationGranularity);
|
|
|
|
|
|
|
|
/* First reserve the area of memory, then commit it. */
|
|
|
|
if (VirtualAlloc ((void *) n, sizeof (dll), MEM_RESERVE, PAGE_READWRITE))
|
|
|
|
d = (dll *) VirtualAlloc ((void *) n, sizeof (dll), MEM_COMMIT,
|
|
|
|
PAGE_READWRITE);
|
|
|
|
if (d)
|
|
|
|
break;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-16 06:10:33 +02:00
|
|
|
/* Did we succeed? */
|
2000-07-15 06:36:10 +02:00
|
|
|
if (d == NULL)
|
2000-07-16 06:10:33 +02:00
|
|
|
{ /* Nope. */
|
2000-07-15 06:36:10 +02:00
|
|
|
#ifdef DEBUGGING
|
2000-07-18 04:26:46 +02:00
|
|
|
system_printf ("VirtualAlloc failed, %E");
|
2000-07-15 06:36:10 +02:00
|
|
|
#endif
|
|
|
|
__seterrno ();
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-07-15 04:48:11 +02:00
|
|
|
|
|
|
|
/* Now we've allocated a block of information. Fill it in with the supplied
|
|
|
|
info about this DLL. */
|
|
|
|
d->count = 1;
|
|
|
|
d->namelen = namelen;
|
|
|
|
strcpy (d->name, name);
|
|
|
|
d->handle = h;
|
|
|
|
d->p = p;
|
|
|
|
d->type = type;
|
|
|
|
if (end == NULL)
|
|
|
|
end = &start; /* Point to "end" of dll chain. */
|
|
|
|
end->next = d; /* Standard linked list stuff. */
|
|
|
|
d->next = NULL;
|
|
|
|
d->prev = end;
|
|
|
|
end = d;
|
|
|
|
tot++;
|
|
|
|
if (type == DLL_LOAD)
|
|
|
|
loaded_dlls++;
|
|
|
|
return d;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Detach a DLL from the chain. */
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
2002-11-14 05:29:39 +01:00
|
|
|
dll_list::detach (void *retaddr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2004-02-13 20:34:32 +01:00
|
|
|
if (!myself || exit_state)
|
2002-06-02 08:07:01 +02:00
|
|
|
return;
|
2002-11-14 05:29:39 +01:00
|
|
|
MEMORY_BASIC_INFORMATION m;
|
|
|
|
if (!VirtualQuery (retaddr, &m, sizeof m))
|
|
|
|
return;
|
|
|
|
HMODULE h = (HMODULE) m.AllocationBase;
|
2002-06-02 08:07:01 +02:00
|
|
|
|
2002-11-14 05:29:39 +01:00
|
|
|
dll *d = &start;
|
|
|
|
while ((d = d->next))
|
|
|
|
if (d->handle != h)
|
|
|
|
continue;
|
|
|
|
else if (d->count <= 0)
|
2004-01-14 16:45:37 +01:00
|
|
|
system_printf ("WARNING: trying to detach an already detached dll ...");
|
2002-11-14 05:29:39 +01:00
|
|
|
else if (--d->count == 0)
|
|
|
|
{
|
|
|
|
d->p.run_dtors ();
|
|
|
|
d->prev->next = d->next;
|
|
|
|
if (d->next)
|
|
|
|
d->next->prev = d->prev;
|
|
|
|
if (d->type == DLL_LOAD)
|
|
|
|
loaded_dlls--;
|
|
|
|
if (end == d)
|
|
|
|
end = d->prev;
|
|
|
|
VirtualFree (d, 0, MEM_RELEASE);
|
|
|
|
break;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-16 06:10:33 +02:00
|
|
|
/* Initialization for all linked DLLs, called by dll_crt0_1. */
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
2000-07-15 04:48:11 +02:00
|
|
|
dll_list::init ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Make sure that destructors are called on exit. */
|
|
|
|
if (!dll_global_dtors_recorded)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
atexit (dll_global_dtors);
|
|
|
|
dll_global_dtors_recorded = 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Walk the dll chain, initializing each dll */
|
|
|
|
dll *d = &start;
|
|
|
|
while ((d = d->next))
|
|
|
|
d->init ();
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define A64K (64 * 1024)
|
|
|
|
|
|
|
|
/* Mark every memory address up to "here" as reserved. This may force
|
|
|
|
Windows NT to load a DLL in the next available, lowest slot. */
|
2000-07-15 04:48:11 +02:00
|
|
|
static void
|
2000-02-17 20:38:33 +01:00
|
|
|
reserve_upto (const char *name, DWORD here)
|
|
|
|
{
|
|
|
|
DWORD size;
|
|
|
|
MEMORY_BASIC_INFORMATION mb;
|
|
|
|
for (DWORD start = 0x10000; start < here; start += size)
|
|
|
|
if (!VirtualQuery ((void *) start, &mb, sizeof (mb)))
|
2002-10-14 22:25:52 +02:00
|
|
|
size = A64K;
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
size = A64K * ((mb.RegionSize + A64K - 1) / A64K);
|
|
|
|
start = A64K * (((DWORD) mb.BaseAddress + A64K - 1) / A64K);
|
|
|
|
|
|
|
|
if (start + size > here)
|
|
|
|
size = here - start;
|
|
|
|
if (mb.State == MEM_FREE &&
|
|
|
|
!VirtualAlloc ((void *) start, size, MEM_RESERVE, PAGE_NOACCESS))
|
|
|
|
api_fatal ("couldn't allocate memory %p(%d) for '%s' alignment, %E\n",
|
|
|
|
start, size, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release all of the memory previously allocated by "upto" above.
|
|
|
|
Note that this may also free otherwise reserved memory. If that becomes
|
|
|
|
a problem, we'll have to keep track of the memory that we reserve above. */
|
2000-07-15 04:48:11 +02:00
|
|
|
static void
|
2000-02-17 20:38:33 +01:00
|
|
|
release_upto (const char *name, DWORD here)
|
|
|
|
{
|
|
|
|
DWORD size;
|
|
|
|
MEMORY_BASIC_INFORMATION mb;
|
|
|
|
for (DWORD start = 0x10000; start < here; start += size)
|
|
|
|
if (!VirtualQuery ((void *) start, &mb, sizeof (mb)))
|
|
|
|
size = 64 * 1024;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = mb.RegionSize;
|
|
|
|
if (!(mb.State == MEM_RESERVE && mb.AllocationProtect == PAGE_NOACCESS &&
|
2002-10-22 18:18:55 +02:00
|
|
|
(((void *) start < cygheap->user_heap.base
|
|
|
|
|| (void *) start > cygheap->user_heap.top) &&
|
2002-11-02 04:31:15 +01:00
|
|
|
((void *) start < (void *) cygheap
|
2002-10-22 18:18:55 +02:00
|
|
|
| (void *) start > (void *) ((char *) cygheap + CYGHEAPSIZE)))))
|
2000-02-17 20:38:33 +01:00
|
|
|
continue;
|
|
|
|
if (!VirtualFree ((void *) start, 0, MEM_RELEASE))
|
|
|
|
api_fatal ("couldn't release memory %p(%d) for '%s' alignment, %E\n",
|
|
|
|
start, size, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reload DLLs after a fork. Iterates over the list of dynamically loaded DLLs
|
|
|
|
and attempts to load them in the same place as they were loaded in the parent. */
|
|
|
|
void
|
2000-07-15 04:48:11 +02:00
|
|
|
dll_list::load_after_fork (HANDLE parent, dll *first)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
in_forkee = 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
int try2 = 0;
|
2000-07-15 04:48:11 +02:00
|
|
|
dll d;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-28 07:41:44 +02:00
|
|
|
void *next = first;
|
2000-07-15 04:48:11 +02:00
|
|
|
while (next)
|
|
|
|
{
|
|
|
|
DWORD nb;
|
|
|
|
/* Read the dll structure from the parent. */
|
2000-07-16 06:10:33 +02:00
|
|
|
if (!ReadProcessMemory (parent, next, &d, sizeof (dll), &nb) ||
|
|
|
|
nb != sizeof (dll))
|
2000-07-15 04:48:11 +02:00
|
|
|
return;
|
2000-07-16 06:10:33 +02:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* We're only interested in dynamically loaded dlls.
|
|
|
|
Hopefully, this function wouldn't even have been called unless
|
|
|
|
the parent had some of those. */
|
|
|
|
if (d.type == DLL_LOAD)
|
|
|
|
{
|
2003-03-01 03:02:42 +01:00
|
|
|
bool unload = true;
|
2000-07-15 04:48:11 +02:00
|
|
|
HMODULE h = LoadLibraryEx (d.name, NULL, DONT_RESOLVE_DLL_REFERENCES);
|
|
|
|
|
2003-03-01 03:02:42 +01:00
|
|
|
if (!h)
|
|
|
|
system_printf ("can't reload %s", d.name);
|
2000-07-15 04:48:11 +02:00
|
|
|
/* See if DLL will load in proper place. If so, free it and reload
|
|
|
|
it the right way.
|
|
|
|
It sort of stinks that we can't invert the order of the FreeLibrary
|
|
|
|
and LoadLibrary since Microsoft documentation seems to imply that that
|
|
|
|
should do what we want. However, since the library was loaded above,
|
2000-07-16 06:10:33 +02:00
|
|
|
the second LoadLibrary does not execute it's startup code unless it
|
2000-07-15 04:48:11 +02:00
|
|
|
is first unloaded. */
|
2003-03-01 03:02:42 +01:00
|
|
|
else if (h == d.handle)
|
2000-07-15 04:48:11 +02:00
|
|
|
{
|
2003-03-01 03:02:42 +01:00
|
|
|
if (unload)
|
|
|
|
{
|
|
|
|
FreeLibrary (h);
|
|
|
|
LoadLibrary (d.name);
|
|
|
|
}
|
2000-07-15 04:48:11 +02:00
|
|
|
}
|
|
|
|
else if (try2)
|
2002-10-14 22:25:52 +02:00
|
|
|
api_fatal ("unable to remap %s to same address as parent(%p) != %p",
|
|
|
|
d.name, d.handle, h);
|
2000-07-15 04:48:11 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* It loaded in the wrong place. Dunno why this happens but it always
|
|
|
|
seems to happen when there are multiple DLLs attempting to load into
|
|
|
|
the same address space. In the "forked" process, the second DLL always
|
|
|
|
loads into a different location. */
|
|
|
|
FreeLibrary (h);
|
|
|
|
/* Block all of the memory up to the new load address. */
|
|
|
|
reserve_upto (d.name, (DWORD) d.handle);
|
|
|
|
try2 = 1; /* And try */
|
|
|
|
continue; /* again. */
|
|
|
|
}
|
|
|
|
/* If we reached here, and try2 is set, then there is a lot of memory to
|
|
|
|
release. */
|
|
|
|
if (try2)
|
|
|
|
{
|
|
|
|
release_upto (d.name, (DWORD) d.handle);
|
|
|
|
try2 = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next = d.next; /* Get the address of the next DLL. */
|
|
|
|
}
|
|
|
|
in_forkee = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-12 06:49:07 +02:00
|
|
|
extern "C" int
|
2000-02-17 20:38:33 +01:00
|
|
|
dll_dllcrt0 (HMODULE h, per_process *p)
|
|
|
|
{
|
2000-07-06 01:46:44 +02:00
|
|
|
if (p == NULL)
|
|
|
|
p = &__cygwin_user_data;
|
|
|
|
else
|
2000-07-12 06:49:07 +02:00
|
|
|
*(p->impure_ptr_ptr) = __cygwin_user_data.impure_ptr;
|
2004-02-13 20:34:32 +01:00
|
|
|
bool initializing = in_forkee || cygwin_finished_initializing;
|
2000-07-06 01:46:44 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Partially initialize Cygwin guts for non-cygwin apps. */
|
2000-07-06 01:46:44 +02:00
|
|
|
if (dynamically_loaded && user_data->magic_biscuit == 0)
|
|
|
|
dll_crt0 (p);
|
2000-07-17 21:18:21 +02:00
|
|
|
else
|
2000-07-15 04:48:11 +02:00
|
|
|
check_sanity_and_sync (p);
|
|
|
|
|
|
|
|
dll_type type;
|
|
|
|
|
|
|
|
/* If this function is called before cygwin has finished
|
|
|
|
initializing, then the DLL must be a cygwin-aware DLL
|
|
|
|
that was explicitly linked into the program rather than
|
|
|
|
a dlopened DLL. */
|
2004-02-13 20:34:32 +01:00
|
|
|
if (!initializing)
|
2000-07-15 04:48:11 +02:00
|
|
|
type = DLL_LINK;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
type = DLL_LOAD;
|
|
|
|
dlls.reload_on_fork = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate and initialize space for the DLL. */
|
|
|
|
dll *d = dlls.alloc (h, p, type);
|
|
|
|
|
|
|
|
/* If d == NULL, then something is broken.
|
|
|
|
Otherwise, if we've finished initializing, it's ok to
|
|
|
|
initialize the DLL. If we haven't finished initializing,
|
|
|
|
it may not be safe to call the dll's "main" since not
|
|
|
|
all of cygwin's internal structures may have been set up. */
|
2004-02-13 20:34:32 +01:00
|
|
|
if (!d || (initializing && !d->init ()))
|
2000-07-15 04:48:11 +02:00
|
|
|
return -1;
|
2000-10-28 07:41:44 +02:00
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
return (DWORD) d;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* OBSOLETE: This function is obsolescent and will go away in the
|
|
|
|
future. Cygwin can now handle being loaded from a noncygwin app
|
|
|
|
using the same entry point. */
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
extern "C" int
|
2000-02-17 20:38:33 +01:00
|
|
|
dll_noncygwin_dllcrt0 (HMODULE h, per_process *p)
|
|
|
|
{
|
|
|
|
return dll_dllcrt0 (h, p);
|
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
extern "C" void
|
2002-11-14 05:29:39 +01:00
|
|
|
cygwin_detach_dll (dll *)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-11-14 05:29:39 +01:00
|
|
|
dlls.detach (__builtin_return_address (0));
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
extern "C" void
|
2000-02-17 20:38:33 +01:00
|
|
|
dlfork (int val)
|
|
|
|
{
|
2000-07-15 04:48:11 +02:00
|
|
|
dlls.reload_on_fork = val;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-15 04:48:11 +02:00
|
|
|
/* Called from various places to update all of the individual
|
|
|
|
ideas of the environ block. Explain to me again why we didn't
|
|
|
|
just import __cygwin_environ? */
|
|
|
|
void __stdcall
|
|
|
|
update_envptrs ()
|
|
|
|
{
|
|
|
|
extern char ***main_environ;
|
|
|
|
for (dll *d = dlls.istart (DLL_ANY); d; d = dlls.inext ())
|
|
|
|
{
|
|
|
|
*(d->p.envptr) = __cygwin_environ;
|
|
|
|
}
|
|
|
|
*main_environ = __cygwin_environ;
|
|
|
|
}
|