2000-02-17 20:38:33 +01:00
|
|
|
/* shared.cc: shared data area support.
|
|
|
|
|
2006-07-26 17:59:39 +02:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
2011-04-19 12:02:06 +02:00
|
|
|
2006, 2007, 2008, 2009, 2010, 2011 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"
|
2008-04-07 18:15:45 +02:00
|
|
|
#include "miscfuncs.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <unistd.h>
|
2005-01-12 23:40:46 +01:00
|
|
|
#include "cygerrno.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.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-04-18 23:10:15 +02:00
|
|
|
#include "dtable.h"
|
2000-11-15 01:13:09 +01:00
|
|
|
#include "cygheap.h"
|
2001-01-29 01:46:25 +01:00
|
|
|
#include "heap.h"
|
2001-12-26 05:53:34 +01:00
|
|
|
#include "shared_info_magic.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "registry.h"
|
|
|
|
#include "cygwin_version.h"
|
2008-07-24 20:25:52 +02:00
|
|
|
#include "pwdgrp.h"
|
2010-03-13 20:34:35 +01:00
|
|
|
#include "spinlock.h"
|
2008-04-18 22:13:37 +02:00
|
|
|
#include <alloca.h>
|
2008-07-24 20:25:52 +02:00
|
|
|
#include <wchar.h>
|
2009-10-31 14:24:06 +01:00
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-10-14 22:25:52 +02:00
|
|
|
shared_info NO_COPY *cygwin_shared;
|
2003-09-25 04:29:05 +02:00
|
|
|
user_info NO_COPY *user_shared;
|
2008-04-18 22:13:37 +02:00
|
|
|
HANDLE NO_COPY cygwin_shared_h;
|
2003-09-25 04:29:05 +02:00
|
|
|
HANDLE NO_COPY cygwin_user_h;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2009-10-31 14:24:06 +01:00
|
|
|
WCHAR installation_root[PATH_MAX] __attribute__((section (".cygwin_dll_common"), shared));
|
|
|
|
UNICODE_STRING installation_key __attribute__((section (".cygwin_dll_common"), shared));
|
|
|
|
WCHAR installation_key_buf[18] __attribute__((section (".cygwin_dll_common"), shared));
|
2010-03-15 22:29:15 +01:00
|
|
|
static LONG installation_root_inited __attribute__((section (".cygwin_dll_common"), shared));
|
|
|
|
|
|
|
|
#define SPIN_WAIT 10000
|
2009-10-31 14:24:06 +01:00
|
|
|
|
|
|
|
/* Use absolute path of cygwin1.dll to derive the Win32 dir which
|
|
|
|
is our installation_root. Note that we can't handle Cygwin installation
|
|
|
|
root dirs of more than 4K path length. I assume that's ok...
|
|
|
|
|
|
|
|
This function also generates the installation_key value. It's a 64 bit
|
|
|
|
hash value based on the path of the Cygwin DLL itself. It's subsequently
|
|
|
|
used when generating shared object names. Thus, different Cygwin
|
|
|
|
installations generate different object names and so are isolated from
|
|
|
|
each other.
|
2011-05-02 17:28:35 +02:00
|
|
|
|
2009-10-31 14:24:06 +01:00
|
|
|
Having this information, the installation key together with the
|
|
|
|
installation root path is written to the registry. The idea is that
|
|
|
|
cygcheck can print the paths into which the Cygwin DLL has been
|
|
|
|
installed for debugging purposes.
|
2011-05-02 17:28:35 +02:00
|
|
|
|
2009-10-31 14:24:06 +01:00
|
|
|
Last but not least, the new cygwin properties datastrcuture is checked
|
|
|
|
for the "disabled_key" value, which is used to determine whether the
|
|
|
|
installation key is actually added to all object names or not. This is
|
|
|
|
used as a last resort for debugging purposes, usually. However, there
|
|
|
|
could be another good reason to re-enable object name collisions between
|
|
|
|
multiple Cygwin DLLs, which we're just not aware of right now. Cygcheck
|
|
|
|
can be used to change the value in an existing Cygwin DLL binary. */
|
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
void inline
|
2009-10-31 14:24:06 +01:00
|
|
|
init_installation_root ()
|
|
|
|
{
|
2010-03-18 20:10:11 +01:00
|
|
|
spinlock iri (installation_root_inited);
|
|
|
|
if (!iri)
|
2009-10-31 14:24:06 +01:00
|
|
|
{
|
2010-03-15 22:29:15 +01:00
|
|
|
if (!GetModuleFileNameW (cygwin_hmodule, installation_root, PATH_MAX))
|
|
|
|
api_fatal ("Can't initialize Cygwin installation root dir.\n"
|
|
|
|
"GetModuleFileNameW(%p, %p, %u), %E",
|
|
|
|
cygwin_hmodule, installation_root, PATH_MAX);
|
|
|
|
PWCHAR p = installation_root;
|
|
|
|
if (wcsncmp (p, L"\\\\?\\", 4)) /* No long path prefix. */
|
2009-10-31 14:24:06 +01:00
|
|
|
{
|
2010-03-15 22:29:15 +01:00
|
|
|
if (!wcsncasecmp (p, L"\\\\", 2)) /* UNC */
|
|
|
|
{
|
|
|
|
p = wcpcpy (p, L"\\??\\UN");
|
|
|
|
GetModuleFileNameW (cygwin_hmodule, p, PATH_MAX - 6);
|
|
|
|
*p = L'C';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = wcpcpy (p, L"\\??\\");
|
|
|
|
GetModuleFileNameW (cygwin_hmodule, p, PATH_MAX - 4);
|
|
|
|
}
|
2009-10-31 14:24:06 +01:00
|
|
|
}
|
2010-03-15 22:29:15 +01:00
|
|
|
installation_root[1] = L'?';
|
2009-10-31 14:24:06 +01:00
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
RtlInitEmptyUnicodeString (&installation_key, installation_key_buf,
|
|
|
|
sizeof installation_key_buf);
|
|
|
|
RtlInt64ToHexUnicodeString (hash_path_name (0, installation_root),
|
|
|
|
&installation_key, FALSE);
|
2009-10-31 14:24:06 +01:00
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
PWCHAR w = wcsrchr (installation_root, L'\\');
|
|
|
|
if (w)
|
|
|
|
{
|
|
|
|
*w = L'\0';
|
|
|
|
w = wcsrchr (installation_root, L'\\');
|
|
|
|
}
|
|
|
|
if (!w)
|
|
|
|
api_fatal ("Can't initialize Cygwin installation root dir.\n"
|
|
|
|
"Invalid DLL path");
|
2009-10-31 14:24:06 +01:00
|
|
|
*w = L'\0';
|
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
for (int i = 1; i >= 0; --i)
|
|
|
|
{
|
2011-04-19 12:02:06 +02:00
|
|
|
reg_key r (i, KEY_WRITE, _WIDE (CYGWIN_INFO_INSTALLATIONS_NAME),
|
|
|
|
NULL);
|
2011-04-23 15:15:46 +02:00
|
|
|
if (NT_SUCCESS (r.set_string (installation_key_buf,
|
|
|
|
installation_root)))
|
2010-03-15 22:29:15 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-10-31 14:24:06 +01:00
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
if (cygwin_props.disable_key)
|
|
|
|
{
|
|
|
|
installation_key.Length = 0;
|
|
|
|
installation_key.Buffer[0] = L'\0';
|
|
|
|
}
|
2009-10-31 14:24:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-18 22:13:37 +02:00
|
|
|
/* This function returns a handle to the top-level directory in the global
|
|
|
|
NT namespace used to implement global objects including shared memory. */
|
|
|
|
|
|
|
|
HANDLE
|
|
|
|
get_shared_parent_dir ()
|
|
|
|
{
|
|
|
|
static HANDLE dir;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
2008-04-21 14:46:58 +02:00
|
|
|
|
2008-04-18 22:13:37 +02:00
|
|
|
if (!dir)
|
|
|
|
{
|
2008-04-21 14:46:58 +02:00
|
|
|
WCHAR bnoname[MAX_PATH];
|
2009-10-31 14:24:06 +01:00
|
|
|
__small_swprintf (bnoname, L"\\BaseNamedObjects\\%s%s-%S",
|
2008-04-21 14:46:58 +02:00
|
|
|
cygwin_version.shared_id,
|
2009-10-31 14:24:06 +01:00
|
|
|
_cygwin_testing ? cygwin_version.dll_build_date : "",
|
|
|
|
&installation_key);
|
2008-04-21 14:46:58 +02:00
|
|
|
RtlInitUnicodeString (&uname, bnoname);
|
2008-04-18 22:13:37 +02:00
|
|
|
InitializeObjectAttributes (&attr, &uname, OBJ_INHERIT | OBJ_OPENIF,
|
2008-11-26 18:21:04 +01:00
|
|
|
NULL, everyone_sd (CYG_SHARED_DIR_ACCESS));
|
2008-04-18 22:13:37 +02:00
|
|
|
status = NtCreateDirectoryObject (&dir, CYG_SHARED_DIR_ACCESS, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
2008-11-26 18:21:04 +01:00
|
|
|
api_fatal ("NtCreateDirectoryObject(%S): %p", &uname, status);
|
2008-04-21 14:46:58 +02:00
|
|
|
}
|
|
|
|
return dir;
|
2008-11-26 18:21:04 +01:00
|
|
|
}
|
2008-04-21 14:46:58 +02:00
|
|
|
|
|
|
|
HANDLE
|
|
|
|
get_session_parent_dir ()
|
|
|
|
{
|
|
|
|
static HANDLE dir;
|
|
|
|
UNICODE_STRING uname;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
if (!dir)
|
|
|
|
{
|
|
|
|
PROCESS_SESSION_INFORMATION psi;
|
2009-12-18 21:32:04 +01:00
|
|
|
status = NtQueryInformationProcess (NtCurrentProcess (),
|
2008-04-21 14:46:58 +02:00
|
|
|
ProcessSessionInformation,
|
|
|
|
&psi, sizeof psi, NULL);
|
|
|
|
if (!NT_SUCCESS (status) || psi.SessionId == 0)
|
|
|
|
dir = get_shared_parent_dir ();
|
|
|
|
else
|
2008-11-26 18:21:04 +01:00
|
|
|
{
|
2008-04-21 14:46:58 +02:00
|
|
|
WCHAR bnoname[MAX_PATH];
|
|
|
|
__small_swprintf (bnoname,
|
2009-10-31 14:24:06 +01:00
|
|
|
L"\\Sessions\\BNOLINKS\\%d\\%s%s-%S",
|
2008-04-21 14:46:58 +02:00
|
|
|
psi.SessionId, cygwin_version.shared_id,
|
2009-10-31 14:24:06 +01:00
|
|
|
_cygwin_testing ? cygwin_version.dll_build_date : "",
|
|
|
|
&installation_key);
|
2008-04-21 14:46:58 +02:00
|
|
|
RtlInitUnicodeString (&uname, bnoname);
|
|
|
|
InitializeObjectAttributes (&attr, &uname, OBJ_INHERIT | OBJ_OPENIF,
|
|
|
|
NULL, everyone_sd(CYG_SHARED_DIR_ACCESS));
|
|
|
|
status = NtCreateDirectoryObject (&dir, CYG_SHARED_DIR_ACCESS, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
api_fatal ("NtCreateDirectoryObject(%S): %p", &uname, status);
|
|
|
|
}
|
2008-04-18 22:13:37 +02:00
|
|
|
}
|
|
|
|
return dir;
|
2008-11-26 18:21:04 +01:00
|
|
|
}
|
2008-04-18 22:13:37 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
char * __stdcall
|
2008-04-18 22:13:37 +02:00
|
|
|
shared_name (char *ret_buf, const char *str, int num)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2008-04-21 14:46:58 +02:00
|
|
|
__small_sprintf (ret_buf, "%s.%d", str, num);
|
2003-05-21 10:01:57 +02:00
|
|
|
return ret_buf;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2009-01-26 14:42:37 +01:00
|
|
|
WCHAR * __stdcall
|
|
|
|
shared_name (WCHAR *ret_buf, const WCHAR *str, int num)
|
|
|
|
{
|
|
|
|
__small_swprintf (ret_buf, L"%W.%d", str, num);
|
|
|
|
return ret_buf;
|
|
|
|
}
|
|
|
|
|
2002-10-15 09:03:45 +02:00
|
|
|
#define page_const (65535)
|
|
|
|
#define pround(n) (((size_t) (n) + page_const) & ~page_const)
|
|
|
|
|
2011-05-27 08:11:05 +02:00
|
|
|
/* The order in offsets is so that the constant blocks shared_info
|
|
|
|
and user_info are right below the cygwin DLL, then the pinfo block
|
2011-06-07 22:55:10 +02:00
|
|
|
which changes with each process. Below that is the console_state,
|
|
|
|
an optional block which only exists when running in a Windows console
|
|
|
|
window. Therefore, if we are not running in a console, we have 64K
|
|
|
|
more of contiguous memory below the Cygwin DLL. */
|
2006-07-26 23:02:01 +02:00
|
|
|
static ptrdiff_t offsets[] =
|
2002-10-22 18:18:55 +02:00
|
|
|
{
|
2011-06-07 22:55:10 +02:00
|
|
|
- pround (sizeof (shared_info)), /* SH_CYGWIN_SHARED */
|
|
|
|
- pround (sizeof (shared_info)) /* SH_USER_SHARED */
|
2011-05-27 08:11:05 +02:00
|
|
|
- pround (sizeof (user_info)),
|
2011-06-07 22:55:10 +02:00
|
|
|
- pround (sizeof (shared_info)) /* SH_MYSELF */
|
2008-04-18 22:13:37 +02:00
|
|
|
- pround (sizeof (user_info))
|
|
|
|
- pround (sizeof (_pinfo)),
|
2011-06-07 22:55:10 +02:00
|
|
|
- pround (sizeof (shared_info)) /* SH_SHARED_CONSOLE */
|
2006-07-26 23:02:01 +02:00
|
|
|
- pround (sizeof (user_info))
|
2011-06-07 22:55:10 +02:00
|
|
|
- pround (sizeof (_pinfo))
|
|
|
|
- pround (sizeof (fhandler_console::console_state)),
|
2006-07-26 23:02:01 +02:00
|
|
|
0
|
2002-10-22 18:18:55 +02:00
|
|
|
};
|
|
|
|
|
2006-07-26 23:02:01 +02:00
|
|
|
#define off_addr(x) ((void *)((caddr_t) cygwin_hmodule + offsets[x]))
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
void * __stdcall
|
2009-01-26 14:42:37 +01:00
|
|
|
open_shared (const WCHAR *name, int n, HANDLE& shared_h, DWORD size,
|
2010-03-09 22:26:55 +01:00
|
|
|
shared_locations m, PSECURITY_ATTRIBUTES psa, DWORD access)
|
|
|
|
{
|
|
|
|
return open_shared (name, n, shared_h, size, &m, psa, access);
|
|
|
|
}
|
|
|
|
|
|
|
|
void * __stdcall
|
|
|
|
open_shared (const WCHAR *name, int n, HANDLE& shared_h, DWORD size,
|
|
|
|
shared_locations *m, PSECURITY_ATTRIBUTES psa, DWORD access)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
void *shared;
|
2002-10-15 09:03:45 +02:00
|
|
|
|
2002-10-15 19:04:20 +02:00
|
|
|
void *addr;
|
2010-03-09 22:26:55 +01:00
|
|
|
if (*m == SH_JUSTCREATE || *m == SH_JUSTOPEN)
|
2002-10-15 19:04:20 +02:00
|
|
|
addr = NULL;
|
|
|
|
else
|
2005-04-30 19:07:05 +02:00
|
|
|
{
|
2010-03-09 22:26:55 +01:00
|
|
|
addr = off_addr (*m);
|
2005-07-06 22:05:03 +02:00
|
|
|
VirtualFree (addr, 0, MEM_RELEASE);
|
2005-04-30 19:07:05 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2009-01-26 14:42:37 +01:00
|
|
|
WCHAR map_buf[MAX_PATH];
|
|
|
|
WCHAR *mapname = NULL;
|
2005-09-27 21:04:38 +02:00
|
|
|
|
2005-04-29 01:59:44 +02:00
|
|
|
if (shared_h)
|
2010-03-09 22:26:55 +01:00
|
|
|
*m = SH_JUSTOPEN;
|
2005-04-29 01:59:44 +02:00
|
|
|
else
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-09-27 21:04:38 +02:00
|
|
|
if (name)
|
2004-05-28 21:50:07 +02:00
|
|
|
mapname = shared_name (map_buf, name, n);
|
2010-03-09 22:26:55 +01:00
|
|
|
if (*m == SH_JUSTOPEN)
|
2009-01-26 14:42:37 +01:00
|
|
|
shared_h = OpenFileMappingW (access, FALSE, mapname);
|
2005-04-29 01:59:44 +02:00
|
|
|
else
|
|
|
|
{
|
2009-01-26 14:42:37 +01:00
|
|
|
shared_h = CreateFileMappingW (INVALID_HANDLE_VALUE, psa,
|
2008-11-26 18:21:04 +01:00
|
|
|
PAGE_READWRITE, 0, size, mapname);
|
2008-04-18 22:13:37 +02:00
|
|
|
if (GetLastError () == ERROR_ALREADY_EXISTS)
|
2010-03-09 22:26:55 +01:00
|
|
|
*m = SH_JUSTOPEN;
|
2005-04-29 01:59:44 +02:00
|
|
|
}
|
|
|
|
if (shared_h)
|
|
|
|
/* ok! */;
|
2010-03-09 22:26:55 +01:00
|
|
|
else if (*m != SH_JUSTOPEN)
|
2009-01-26 14:42:37 +01:00
|
|
|
api_fatal ("CreateFileMapping %W, %E. Terminating.", mapname);
|
2005-04-29 01:59:44 +02:00
|
|
|
else
|
|
|
|
return NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2011-05-27 08:11:05 +02:00
|
|
|
shared = (shared_info *) MapViewOfFileEx (shared_h, access, 0, 0, 0, addr);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-04-29 01:59:44 +02:00
|
|
|
if (!shared && addr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
shared = (shared_info *) MapViewOfFileEx (shared_h,
|
|
|
|
FILE_MAP_READ|FILE_MAP_WRITE,
|
2005-04-29 01:59:44 +02:00
|
|
|
0, 0, 0, NULL);
|
2002-10-21 03:00:58 +02:00
|
|
|
#ifdef DEBUGGING
|
2009-01-26 14:42:37 +01:00
|
|
|
system_printf ("relocating shared object %W(%d) from %p to %p", name, n, addr, shared);
|
2002-10-21 03:00:58 +02:00
|
|
|
#endif
|
2006-07-26 23:02:01 +02:00
|
|
|
offsets[0] = 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!shared)
|
2009-01-26 14:42:37 +01:00
|
|
|
api_fatal ("MapViewOfFileEx '%W'(%p), %E. Terminating.", mapname, shared_h);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2010-03-09 22:26:55 +01:00
|
|
|
if (*m == SH_CYGWIN_SHARED && offsets[0])
|
2002-10-15 19:04:20 +02:00
|
|
|
{
|
2011-10-24 11:19:58 +02:00
|
|
|
/* Reserve subsequent shared memory areas in non-relocated case only.
|
|
|
|
There's no good reason to reserve the console shmem, because it's
|
|
|
|
not yet known if we will allocate it at all. */
|
|
|
|
for (int i = SH_USER_SHARED; i < SH_SHARED_CONSOLE; i++)
|
2002-10-15 19:04:20 +02:00
|
|
|
{
|
2011-10-24 11:19:58 +02:00
|
|
|
DWORD size = offsets[i - 1] - offsets[i];
|
2006-07-26 23:02:01 +02:00
|
|
|
if (!VirtualAlloc (off_addr (i), size, MEM_RESERVE, PAGE_NOACCESS))
|
2002-10-15 19:04:20 +02:00
|
|
|
continue; /* oh well */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-24 11:19:58 +02:00
|
|
|
debug_printf ("name %W, n %d, shared %p (wanted %p), h %p, *m %d",
|
|
|
|
mapname, n, shared, addr, shared_h, *m);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return shared;
|
|
|
|
}
|
|
|
|
|
2008-07-28 00:31:48 +02:00
|
|
|
/* Second half of user shared initialization: Initialize content. */
|
2008-07-25 17:23:56 +02:00
|
|
|
void
|
2010-03-15 22:29:15 +01:00
|
|
|
user_info::initialize ()
|
2008-07-25 17:23:56 +02:00
|
|
|
{
|
2008-07-28 00:31:48 +02:00
|
|
|
/* Wait for initialization of the Cygwin per-user shared, if necessary */
|
2010-03-15 22:29:15 +01:00
|
|
|
spinlock sversion (version, CURR_USER_MAGIC);
|
2008-07-28 00:31:48 +02:00
|
|
|
if (!sversion)
|
2008-07-25 17:23:56 +02:00
|
|
|
{
|
2010-09-28 16:49:31 +02:00
|
|
|
cb = sizeof (*user_shared);
|
2008-07-25 17:23:56 +02:00
|
|
|
cygpsid sid (cygheap->user.sid ());
|
|
|
|
struct passwd *pw = internal_getpwsid (sid);
|
|
|
|
/* Correct the user name with what's defined in /etc/passwd before
|
|
|
|
loading the user fstab file. */
|
|
|
|
if (pw)
|
2008-11-26 18:21:04 +01:00
|
|
|
cygheap->user.set_name (pw->pw_name);
|
2010-03-15 22:29:15 +01:00
|
|
|
mountinfo.init (); /* Initialize the mount table. */
|
2008-07-28 00:31:48 +02:00
|
|
|
}
|
2010-03-15 22:29:15 +01:00
|
|
|
else if (sversion != CURR_USER_MAGIC)
|
|
|
|
sversion.multiple_cygwin_problem ("user shared memory version", version,
|
|
|
|
sversion);
|
|
|
|
else if (user_shared->cb != sizeof (*user_shared))
|
|
|
|
sversion.multiple_cygwin_problem ("user shared memory size", cb,
|
|
|
|
sizeof (*user_shared));
|
2008-07-25 17:23:56 +02:00
|
|
|
}
|
|
|
|
|
2008-07-28 00:31:48 +02:00
|
|
|
/* First half of user shared initialization: Create shared mem region. */
|
2003-09-10 23:01:40 +02:00
|
|
|
void
|
2010-03-15 22:29:15 +01:00
|
|
|
user_info::create (bool reinit)
|
2003-09-10 04:12:26 +02:00
|
|
|
{
|
2009-01-26 14:42:37 +01:00
|
|
|
WCHAR name[UNLEN + 1] = L""; /* Large enough for SID */
|
2003-09-10 23:01:40 +02:00
|
|
|
|
2003-09-25 04:29:05 +02:00
|
|
|
if (reinit)
|
2003-09-10 04:12:26 +02:00
|
|
|
{
|
2003-09-25 04:29:05 +02:00
|
|
|
if (!UnmapViewOfFile (user_shared))
|
|
|
|
debug_printf("UnmapViewOfFile %E");
|
|
|
|
if (!ForceCloseHandle (cygwin_user_h))
|
|
|
|
debug_printf("CloseHandle %E");
|
|
|
|
cygwin_user_h = NULL;
|
2003-09-10 04:12:26 +02:00
|
|
|
}
|
|
|
|
|
2003-09-25 04:29:05 +02:00
|
|
|
if (!cygwin_user_h)
|
2004-11-20 20:09:19 +01:00
|
|
|
cygheap->user.get_windows_id (name);
|
2003-09-10 23:01:40 +02:00
|
|
|
|
2003-09-25 04:29:05 +02:00
|
|
|
user_shared = (user_info *) open_shared (name, USER_VERSION,
|
2010-03-09 22:26:55 +01:00
|
|
|
cygwin_user_h, sizeof (user_info),
|
|
|
|
SH_USER_SHARED, &sec_none);
|
2009-01-26 14:42:37 +01:00
|
|
|
debug_printf ("opening user shared for '%W' at %p", name, user_shared);
|
2003-09-25 04:29:05 +02:00
|
|
|
ProtectHandleINH (cygwin_user_h);
|
|
|
|
debug_printf ("user shared version %x", user_shared->version);
|
2008-07-28 00:31:48 +02:00
|
|
|
if (reinit)
|
2010-03-15 22:29:15 +01:00
|
|
|
user_shared->initialize ();
|
2003-09-10 04:12:26 +02:00
|
|
|
}
|
|
|
|
|
2008-07-27 16:52:46 +02:00
|
|
|
void __stdcall
|
|
|
|
shared_destroy ()
|
|
|
|
{
|
|
|
|
ForceCloseHandle (cygwin_shared_h);
|
|
|
|
UnmapViewOfFile (cygwin_shared);
|
|
|
|
ForceCloseHandle (cygwin_user_h);
|
|
|
|
UnmapViewOfFile (user_shared);
|
|
|
|
}
|
|
|
|
|
2008-07-16 22:20:45 +02:00
|
|
|
/* Initialize obcaseinsensitive. Default to case insensitive on pre-XP. */
|
|
|
|
void
|
|
|
|
shared_info::init_obcaseinsensitive ()
|
|
|
|
{
|
2011-04-19 12:02:06 +02:00
|
|
|
NTSTATUS status;
|
|
|
|
DWORD def_obcaseinsensitive = 1;
|
2011-05-02 17:28:35 +02:00
|
|
|
|
2011-04-19 12:02:06 +02:00
|
|
|
obcaseinsensitive = def_obcaseinsensitive;
|
|
|
|
RTL_QUERY_REGISTRY_TABLE tab[2] = {
|
|
|
|
{ NULL, RTL_QUERY_REGISTRY_DIRECT | RTL_QUERY_REGISTRY_NOSTRING,
|
|
|
|
L"obcaseinsensitive", &obcaseinsensitive, REG_DWORD,
|
|
|
|
&def_obcaseinsensitive, sizeof (DWORD) },
|
|
|
|
{ NULL, 0, NULL, NULL, 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
status = RtlQueryRegistryValues (RTL_REGISTRY_CONTROL,
|
|
|
|
L"Session Manager\\kernel",
|
|
|
|
tab, NULL, NULL);
|
2008-07-16 22:20:45 +02:00
|
|
|
}
|
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
void inline
|
|
|
|
shared_info::create ()
|
|
|
|
{
|
|
|
|
cygwin_shared = (shared_info *) open_shared (L"shared",
|
|
|
|
CYGWIN_VERSION_SHARED_DATA,
|
|
|
|
cygwin_shared_h,
|
|
|
|
sizeof (*cygwin_shared),
|
|
|
|
SH_CYGWIN_SHARED);
|
|
|
|
cygwin_shared->initialize ();
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
2003-09-10 23:01:40 +02:00
|
|
|
shared_info::initialize ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2010-03-15 22:29:15 +01:00
|
|
|
spinlock sversion (version, CURR_SHARED_MAGIC);
|
2010-03-09 17:07:15 +01:00
|
|
|
if (!sversion)
|
|
|
|
{
|
2010-03-09 22:26:55 +01:00
|
|
|
cb = sizeof (*this);
|
|
|
|
get_session_parent_dir (); /* Create session dir if first process. */
|
|
|
|
init_obcaseinsensitive (); /* Initialize obcaseinsensitive */
|
|
|
|
tty.init (); /* Initialize tty table */
|
|
|
|
mt.initialize (); /* Initialize shared tape information */
|
2010-03-15 22:29:15 +01:00
|
|
|
/* Defer debug output printing the installation root and installation key
|
|
|
|
up to this point. Debug output except for system_printf requires
|
|
|
|
the global shared memory to exist. */
|
|
|
|
debug_printf ("Installation root: <%W> key: <%S>",
|
|
|
|
installation_root, &installation_key);
|
2010-03-09 17:07:15 +01:00
|
|
|
}
|
2010-03-15 22:29:15 +01:00
|
|
|
else if (sversion != (LONG) CURR_SHARED_MAGIC)
|
|
|
|
sversion.multiple_cygwin_problem ("system shared memory version",
|
|
|
|
sversion, CURR_SHARED_MAGIC);
|
|
|
|
else if (cb != sizeof (*this))
|
2001-12-26 22:35:16 +01:00
|
|
|
system_printf ("size of shared memory region changed from %u to %u",
|
2010-03-15 22:29:15 +01:00
|
|
|
sizeof (*this), cb);
|
|
|
|
heap_init ();
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2009-06-08 05:53:40 +02:00
|
|
|
void
|
|
|
|
memory_init (bool init_cygheap)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-10-15 09:03:45 +02:00
|
|
|
getpagesize ();
|
2003-09-03 16:15:55 +02:00
|
|
|
|
2003-12-01 12:16:20 +01:00
|
|
|
/* Initialize the Cygwin heap, if necessary */
|
2009-06-08 05:53:40 +02:00
|
|
|
if (init_cygheap)
|
2003-12-01 12:16:20 +01:00
|
|
|
{
|
|
|
|
cygheap_init ();
|
|
|
|
cygheap->user.init ();
|
|
|
|
}
|
|
|
|
|
2010-03-15 22:29:15 +01:00
|
|
|
init_installation_root (); /* Initialize installation root dir */
|
|
|
|
shared_info::create (); /* Initialize global shared memory */
|
|
|
|
user_info::create (false); /* Initialize per-user shared memory */
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|