2000-02-17 20:38:33 +01:00
|
|
|
/* shared.cc: shared data area support.
|
|
|
|
|
2002-06-05 06:01:43 +02:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
2001-10-16 01:39:33 +02:00
|
|
|
#include <errno.h>
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2001-04-18 23:10:15 +02:00
|
|
|
#include "fhandler.h"
|
2001-10-01 06:10:07 +02:00
|
|
|
#include "path.h"
|
2001-04-18 23:10:15 +02:00
|
|
|
#include "dtable.h"
|
2001-10-16 01:39:33 +02:00
|
|
|
#include "cygerrno.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"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
shared_info NO_COPY *cygwin_shared = NULL;
|
2001-01-28 06:51:15 +01:00
|
|
|
mount_info NO_COPY *mount_table = NULL;
|
2002-08-07 00:05:53 +02:00
|
|
|
HANDLE NO_COPY cygwin_mount_h;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
char * __stdcall
|
|
|
|
shared_name (const char *str, int num)
|
|
|
|
{
|
|
|
|
static NO_COPY char buf[MAX_PATH] = {0};
|
2001-09-03 04:13:05 +02:00
|
|
|
extern bool _cygwin_testing;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
__small_sprintf (buf, "%s.%s.%d", cygwin_version.shared_id, str, num);
|
2002-08-26 06:30:11 +02:00
|
|
|
if (_cygwin_testing)
|
2001-03-18 22:11:25 +01:00
|
|
|
strcat (buf, cygwin_version.dll_build_date);
|
2000-02-17 20:38:33 +01:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void * __stdcall
|
2001-10-24 23:56:54 +02:00
|
|
|
open_shared (const char *name, int n, HANDLE &shared_h, DWORD size, void *addr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
void *shared;
|
|
|
|
|
|
|
|
if (!shared_h)
|
|
|
|
{
|
|
|
|
char *mapname;
|
|
|
|
if (!name)
|
|
|
|
mapname = NULL;
|
|
|
|
else
|
|
|
|
{
|
2001-10-24 23:56:54 +02:00
|
|
|
mapname = shared_name (name, n);
|
2000-02-17 20:38:33 +01:00
|
|
|
shared_h = OpenFileMappingA (FILE_MAP_READ | FILE_MAP_WRITE,
|
|
|
|
TRUE, mapname);
|
|
|
|
}
|
|
|
|
if (!shared_h &&
|
2001-01-30 09:10:04 +01:00
|
|
|
!(shared_h = CreateFileMappingA (INVALID_HANDLE_VALUE,
|
2000-02-17 20:38:33 +01:00
|
|
|
&sec_all,
|
|
|
|
PAGE_READWRITE,
|
|
|
|
0,
|
|
|
|
size,
|
|
|
|
mapname)))
|
|
|
|
api_fatal ("CreateFileMappingA, %E. Terminating.");
|
|
|
|
}
|
|
|
|
|
|
|
|
shared = (shared_info *) MapViewOfFileEx (shared_h,
|
|
|
|
FILE_MAP_READ | FILE_MAP_WRITE,
|
|
|
|
0, 0, 0, addr);
|
|
|
|
|
|
|
|
if (!shared)
|
|
|
|
{
|
|
|
|
/* Probably win95, so try without specifying the address. */
|
|
|
|
shared = (shared_info *) MapViewOfFileEx (shared_h,
|
|
|
|
FILE_MAP_READ|FILE_MAP_WRITE,
|
2001-07-17 05:41:52 +02:00
|
|
|
0, 0, 0, 0);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!shared)
|
2001-01-28 06:51:15 +01:00
|
|
|
api_fatal ("MapViewOfFileEx '%s'(%p), %E. Terminating.", name, shared_h);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-01-28 06:51:15 +01:00
|
|
|
debug_printf ("name %s, shared %p (wanted %p), h %p", name, shared, addr, shared_h);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* FIXME: I couldn't find anywhere in the documentation a note about
|
|
|
|
whether the memory is initialized to zero. The code assumes it does
|
|
|
|
and since this part seems to be working, we'll leave it as is. */
|
|
|
|
return shared;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
shared_info::initialize ()
|
|
|
|
{
|
2001-12-26 22:35:16 +01:00
|
|
|
if (version)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-12-26 22:35:16 +01:00
|
|
|
if (version != SHARED_VERSION_MAGIC)
|
|
|
|
multiple_cygwin_problem ("shared", version, SHARED_VERSION);
|
|
|
|
else if (cb != SHARED_INFO_CB)
|
|
|
|
multiple_cygwin_problem ("shared size", cb, SHARED_INFO_CB);
|
2000-02-17 20:38:33 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the queue of deleted files. */
|
|
|
|
delqueue.init ();
|
|
|
|
|
|
|
|
/* Initialize tty table. */
|
|
|
|
tty.init ();
|
2001-12-26 22:35:16 +01:00
|
|
|
version = SHARED_VERSION_MAGIC;
|
|
|
|
cb = sizeof (*this);
|
|
|
|
if (cb != SHARED_INFO_CB)
|
|
|
|
system_printf ("size of shared memory region changed from %u to %u",
|
|
|
|
SHARED_INFO_CB, cb);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __stdcall
|
2001-01-29 01:46:25 +01:00
|
|
|
memory_init ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-01-29 01:46:25 +01:00
|
|
|
/* Initialize general shared memory */
|
2001-01-28 06:51:15 +01:00
|
|
|
HANDLE shared_h = cygheap ? cygheap->shared_h : NULL;
|
|
|
|
cygwin_shared = (shared_info *) open_shared ("shared",
|
2001-10-24 23:56:54 +02:00
|
|
|
CYGWIN_VERSION_SHARED_DATA,
|
2001-01-28 06:51:15 +01:00
|
|
|
shared_h,
|
|
|
|
sizeof (*cygwin_shared),
|
|
|
|
cygwin_shared_address);
|
|
|
|
|
2001-01-29 01:46:25 +01:00
|
|
|
cygwin_shared->initialize ();
|
|
|
|
|
|
|
|
/* Allocate memory for the per-user mount table */
|
2001-04-30 20:21:48 +02:00
|
|
|
char user_name[UNLEN + 1];
|
|
|
|
DWORD user_name_len = UNLEN + 1;
|
2001-01-29 01:46:25 +01:00
|
|
|
|
|
|
|
if (!GetUserName (user_name, &user_name_len))
|
|
|
|
strcpy (user_name, "unknown");
|
|
|
|
|
|
|
|
/* Initialize the Cygwin heap, if necessary */
|
|
|
|
if (!cygheap)
|
|
|
|
{
|
|
|
|
cygheap_init ();
|
|
|
|
cygheap->user.set_name (user_name);
|
|
|
|
}
|
2001-09-07 23:32:07 +02:00
|
|
|
|
2001-01-28 06:51:15 +01:00
|
|
|
cygheap->shared_h = shared_h;
|
2002-07-13 22:00:27 +02:00
|
|
|
ProtectHandleINH (cygheap->shared_h);
|
2001-01-29 01:46:25 +01:00
|
|
|
|
2001-09-07 23:32:07 +02:00
|
|
|
heap_init ();
|
2001-10-24 23:56:54 +02:00
|
|
|
mount_table = (mount_info *) open_shared (user_name, MOUNT_VERSION,
|
2001-11-05 07:09:15 +01:00
|
|
|
cygwin_mount_h,
|
2001-09-07 23:32:07 +02:00
|
|
|
sizeof (mount_info), 0);
|
|
|
|
debug_printf ("opening mount table for '%s' at %p", cygheap->user.name (),
|
|
|
|
mount_table_address);
|
2002-07-13 22:00:27 +02:00
|
|
|
ProtectHandleINH (cygwin_mount_h);
|
2001-09-07 23:32:07 +02:00
|
|
|
debug_printf ("mount table version %x at %p", mount_table->version, mount_table);
|
|
|
|
|
2001-01-29 01:46:25 +01:00
|
|
|
/* Initialize the Cygwin per-user mount table, if necessary */
|
|
|
|
if (!mount_table->version)
|
|
|
|
{
|
2001-12-26 05:53:34 +01:00
|
|
|
mount_table->version = MOUNT_VERSION_MAGIC;
|
2001-01-29 01:46:25 +01:00
|
|
|
debug_printf ("initializing mount table");
|
2001-12-26 22:35:16 +01:00
|
|
|
mount_table->cb = sizeof (*mount_table);
|
|
|
|
if (mount_table->cb != MOUNT_INFO_CB)
|
|
|
|
system_printf ("size of mount table region changed from %u to %u",
|
|
|
|
MOUNT_INFO_CB, mount_table->cb);
|
2001-01-29 01:46:25 +01:00
|
|
|
mount_table->init (); /* Initialize the mount table. */
|
|
|
|
}
|
2001-12-26 05:53:34 +01:00
|
|
|
else if (mount_table->version != MOUNT_VERSION_MAGIC)
|
|
|
|
multiple_cygwin_problem ("mount", mount_table->version, MOUNT_VERSION);
|
2001-12-26 22:35:16 +01:00
|
|
|
else if (mount_table->cb != MOUNT_INFO_CB)
|
|
|
|
multiple_cygwin_problem ("mount table size", mount_table->cb, MOUNT_INFO_CB);
|
2001-10-24 23:56:54 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __stdcall
|
|
|
|
shared_terminate ()
|
|
|
|
{
|
2001-01-28 06:51:15 +01:00
|
|
|
if (cygheap->shared_h)
|
|
|
|
ForceCloseHandle (cygheap->shared_h);
|
|
|
|
if (cygwin_mount_h)
|
|
|
|
ForceCloseHandle (cygwin_mount_h);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
shared_info::heap_chunk_size ()
|
|
|
|
{
|
2001-09-09 21:06:50 +02:00
|
|
|
if (!heap_chunk_in_mb)
|
|
|
|
{
|
|
|
|
/* Fetch misc. registry entries. */
|
|
|
|
|
|
|
|
reg_key reg (KEY_READ, NULL);
|
|
|
|
|
|
|
|
/* Note that reserving a huge amount of heap space does not result in
|
|
|
|
the use of swap since we are not committing it. */
|
|
|
|
/* FIXME: We should not be restricted to a fixed size heap no matter
|
|
|
|
what the fixed size is. */
|
|
|
|
|
|
|
|
heap_chunk_in_mb = reg.get_int ("heap_chunk_in_mb", 256);
|
|
|
|
if (heap_chunk_in_mb < 4)
|
|
|
|
{
|
|
|
|
heap_chunk_in_mb = 4;
|
|
|
|
reg.set_int ("heap_chunk_in_mb", heap_chunk_in_mb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
return heap_chunk_in_mb << 20;
|
|
|
|
}
|