9a4d574b8d
* Makefile.in (DLL_OFILES): Add sigfe.o. Remove reliance on cygwin.def from cygwin0.dll dependency since dependence on sigfe.o implies that. Generate def file on the fly using 'gendef'. * configure.in: Don't auto-generate cygwin.def. * configure: Regenerate. * cygwin.din: Add SIGFE stuff where appropriate. * dcrt0.cc (dll_crt0_1): Initialize cygwin tls early in process startup. Set _main_tls to address of the main thread's cygwin tls. * debug.h: Remove now unneeded WFSO and WFMO declarations. * exceptions.cc (_last_thread): Define. (set_thread_state_for_signals): New function. (reset_thread_exception_for_signals): Ditto. (init_thread_for_signals): Ditto. (delete_thread_for_signals): Ditto. (capture_thread_for_signals): Ditto. (handle_exceptions): Set return address explicitly for exceptions prior to calling sig_send. (interrupt_on_return): Eliminate. (setup_handler): Add preliminary implementation for dealing with thread-specific signals by querying _main_tls. (signal_exit): Use cygthread::main_thread_id instead of mainthread.id. (call_signal_handler_now): For now, just handle the main thread. * fork.cc (vfork): Save and restore main _my_tls. * gendef: New file. Generates def file and sigfe.s file. * gentls_offsets: New file. Generates offsets for perl to use in sigfe.s. * how-signals-work.txt: Mention that info is obsolete. * init.cc (dll_entry): Initialize cygwin tls storage here. * miscfuncs.cc (low_priority_sleep): Make a C function for easier calling from asm. * perthread.h (vfork_save::tls): New element. * signal.cc (nanosleep): Replace previous use of sigframe.call_signal_handler_now with straight call to call_signal_handler_now. (abort): Ditto. * syscalls.cc (readv): Ditto. * termios.cc (tcsetattr): Ditto. * wait.cc (wait4): Ditto. * sigproc.cc (sig_dispatch_pending): Ditto. (sig_send): Ditto. * sigproc.h: Declare call_signal_handler_now. * thread.cc (pthread::thread_init_wrapper): Initialize cygwin tls. Remove obsolete and unworking signal stuff. * thread.h (verifyable_object::sigs): Eliminate. (verifyable_object::sigmask): Eliminate. (verifyable_object::sigtodo): Eliminate. (verifyable_object::exit): Make attribute noreturn. (verifyable_object::thread_init_wrapper): Ditto. (pthread_null::exit): Ditto. * winbase.h (__stackbase): Always define. * winsup.h (low_priority_sleep): Declare as a "C" function. * include/cygwin/version.h: Bump API version to reflect sigwait export. * include/sys/queue.h: Protect SLIST_ENTRY from previous declaration. * signal.cc (sigwait): Implement. * select.cc (fhandler_base::ready_for_read): Add debugging output. * devices.h: Define more device pointers via their storage. * devices.in: Don't parse things like /dev/inet/tcp, as they really have no meaning. * devices.cc: Regenerate. * gendevices: Set proper protection for output file. * cygtls.h: New file. * gendef: New file. * gentls_offsets: New file. * tlsoffsets.h: New file. Autogenerated. * config/i386/longjmp.c: Remove. File subsumed by gendef output. * config/i386/makefrag: Remove obsolete file. * fhandler.cc: Remove spurious access_worker declaration. * spawn.cc (spawnve): Make debugging output more accurate. * cygwin-gperf: Remove. * devices.cc: Remove.
372 lines
9.7 KiB
C++
372 lines
9.7 KiB
C++
/* shm.cc: XSI IPC interface for Cygwin.
|
|
|
|
Copyright 2003 Red Hat, Inc.
|
|
|
|
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. */
|
|
|
|
#include "winsup.h"
|
|
#include "cygerrno.h"
|
|
#include <signal.h>
|
|
#ifdef USE_SERVER
|
|
#include <sys/types.h>
|
|
#include <sys/queue.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
#include "pinfo.h"
|
|
#include "sigproc.h"
|
|
|
|
#include "cygserver_ipc.h"
|
|
#include "cygserver_shm.h"
|
|
|
|
/*
|
|
* client_request_shm Constructors
|
|
*/
|
|
|
|
client_request_shm::client_request_shm (int shmid,
|
|
const void *shmaddr,
|
|
int shmflg)
|
|
: client_request (CYGSERVER_REQUEST_SHM, &_parameters, sizeof (_parameters))
|
|
{
|
|
_parameters.in.shmop = SHMOP_shmat;
|
|
ipc_set_proc_info (_parameters.in.ipcblk);
|
|
|
|
_parameters.in.atargs.shmid = shmid;
|
|
_parameters.in.atargs.shmaddr = shmaddr;
|
|
_parameters.in.atargs.shmflg = shmflg;
|
|
|
|
msglen (sizeof (_parameters.in));
|
|
}
|
|
|
|
client_request_shm::client_request_shm (int shmid,
|
|
int cmd,
|
|
struct shmid_ds *buf)
|
|
: client_request (CYGSERVER_REQUEST_SHM, &_parameters, sizeof (_parameters))
|
|
{
|
|
_parameters.in.shmop = SHMOP_shmctl;
|
|
ipc_set_proc_info (_parameters.in.ipcblk);
|
|
|
|
_parameters.in.ctlargs.shmid = shmid;
|
|
_parameters.in.ctlargs.cmd = cmd;
|
|
_parameters.in.ctlargs.buf = buf;
|
|
|
|
msglen (sizeof (_parameters.in));
|
|
}
|
|
|
|
client_request_shm::client_request_shm (const void *shmaddr)
|
|
: client_request (CYGSERVER_REQUEST_SHM, &_parameters, sizeof (_parameters))
|
|
{
|
|
_parameters.in.shmop = SHMOP_shmdt;
|
|
ipc_set_proc_info (_parameters.in.ipcblk);
|
|
|
|
_parameters.in.dtargs.shmaddr = shmaddr;
|
|
|
|
msglen (sizeof (_parameters.in));
|
|
}
|
|
|
|
client_request_shm::client_request_shm (key_t key,
|
|
size_t size,
|
|
int shmflg)
|
|
: client_request (CYGSERVER_REQUEST_SHM, &_parameters, sizeof (_parameters))
|
|
{
|
|
_parameters.in.shmop = SHMOP_shmget;
|
|
ipc_set_proc_info (_parameters.in.ipcblk);
|
|
|
|
_parameters.in.getargs.key = key;
|
|
_parameters.in.getargs.size = size;
|
|
_parameters.in.getargs.shmflg = shmflg;
|
|
|
|
msglen (sizeof (_parameters.in));
|
|
}
|
|
|
|
client_request_shm::client_request_shm (proc *p1)
|
|
: client_request (CYGSERVER_REQUEST_SHM, &_parameters, sizeof (_parameters))
|
|
{
|
|
_parameters.in.shmop = SHMOP_shmfork;
|
|
ipc_set_proc_info (_parameters.in.ipcblk);
|
|
|
|
_parameters.in.forkargs = *p1;
|
|
}
|
|
|
|
/* List of shmid's with file mapping HANDLE and size, returned by shmget. */
|
|
struct shm_shmid_list {
|
|
SLIST_ENTRY(shm_shmid_list) ssh_next;
|
|
int shmid;
|
|
vm_object_t hdl;
|
|
size_t size;
|
|
};
|
|
|
|
static SLIST_HEAD(, shm_shmid_list) ssh_list;
|
|
|
|
/* List of attached mappings, as returned by shmat. */
|
|
struct shm_attached_list {
|
|
SLIST_ENTRY(shm_attached_list) sph_next;
|
|
vm_object_t ptr;
|
|
vm_object_t hdl;
|
|
size_t size;
|
|
int access;
|
|
};
|
|
|
|
static SLIST_HEAD(, shm_attached_list) sph_list;
|
|
|
|
int __stdcall
|
|
fixup_shms_after_fork ()
|
|
{
|
|
if (!SLIST_FIRST (&sph_list))
|
|
return 0;
|
|
pinfo p (myself->ppid);
|
|
proc parent = { myself->ppid, p->dwProcessId, p->uid, p->gid };
|
|
|
|
client_request_shm request (&parent);
|
|
if (request.make_request () == -1 || request.retval () == -1)
|
|
{
|
|
syscall_printf ("-1 [%d] = shmctl ()", request.error_code ());
|
|
set_errno (request.error_code ());
|
|
return 0;
|
|
}
|
|
shm_attached_list *sph_entry;
|
|
/* Remove map from list... */
|
|
SLIST_FOREACH (sph_entry, &sph_list, sph_next)
|
|
{
|
|
vm_object_t ptr = MapViewOfFileEx(sph_entry->hdl, sph_entry->access,
|
|
0, 0, sph_entry->size, sph_entry->ptr);
|
|
if (ptr != sph_entry->ptr)
|
|
api_fatal ("MapViewOfFileEx (%p), %E. Terminating.", sph_entry->ptr);
|
|
}
|
|
return 0;
|
|
}
|
|
#endif /* USE_SERVER */
|
|
|
|
/*
|
|
* XSI shmaphore API. These are exported by the DLL.
|
|
*/
|
|
|
|
extern "C" void *
|
|
shmat (int shmid, const void *shmaddr, int shmflg)
|
|
{
|
|
#ifdef USE_SERVER
|
|
syscall_printf ("shmat (shmid = %d, shmaddr = %p, shmflg = 0x%x)",
|
|
shmid, shmaddr, shmflg);
|
|
|
|
shm_shmid_list *ssh_entry;
|
|
SLIST_FOREACH (ssh_entry, &ssh_list, ssh_next)
|
|
{
|
|
if (ssh_entry->shmid == shmid)
|
|
break;
|
|
}
|
|
if (!ssh_entry)
|
|
{
|
|
/* Invalid shmid */
|
|
set_errno (EINVAL);
|
|
return NULL;
|
|
}
|
|
vm_object_t attach_va = NULL;
|
|
if (shmaddr)
|
|
{
|
|
if (shmflg & SHM_RND)
|
|
attach_va = (vm_object_t)((vm_offset_t)shmaddr & ~(SHMLBA-1));
|
|
else
|
|
attach_va = (vm_object_t)shmaddr;
|
|
/* Don't even bother to call anything if shmaddr is NULL or
|
|
not aligned. */
|
|
if (!attach_va || (vm_offset_t)attach_va % SHMLBA)
|
|
{
|
|
set_errno (EINVAL);
|
|
return NULL;
|
|
}
|
|
}
|
|
/* Try allocating memory before calling cygserver. */
|
|
shm_attached_list *sph_entry = new (shm_attached_list);
|
|
if (!sph_entry)
|
|
{
|
|
set_errno (ENOMEM);
|
|
return NULL;
|
|
}
|
|
DWORD access = (shmflg & SHM_RDONLY) ? FILE_MAP_READ : FILE_MAP_WRITE;
|
|
vm_object_t ptr = MapViewOfFileEx(ssh_entry->hdl, access, 0, 0,
|
|
ssh_entry->size, attach_va);
|
|
if (!ptr)
|
|
{
|
|
__seterrno ();
|
|
delete sph_entry;
|
|
return NULL;
|
|
}
|
|
/* Use returned ptr address as is, so it's stored using the exact value
|
|
in cygserver. */
|
|
client_request_shm request (shmid, ptr, shmflg & ~SHM_RND);
|
|
if (request.make_request () == -1 || request.ptrval () == NULL)
|
|
{
|
|
syscall_printf ("-1 [%d] = shmctl ()", request.error_code ());
|
|
UnmapViewOfFile (ptr);
|
|
delete sph_entry;
|
|
set_errno (request.error_code ());
|
|
if (request.error_code () == ENOSYS)
|
|
raise (SIGSYS);
|
|
return NULL;
|
|
}
|
|
sph_entry->ptr = ptr;
|
|
sph_entry->hdl = ssh_entry->hdl;
|
|
sph_entry->size = ssh_entry->size;
|
|
sph_entry->access = access;
|
|
SLIST_INSERT_HEAD (&sph_list, sph_entry, sph_next);
|
|
return ptr;
|
|
#else
|
|
set_errno (ENOSYS);
|
|
raise (SIGSYS);
|
|
return NULL;
|
|
#endif
|
|
}
|
|
|
|
extern "C" int
|
|
shmctl (int shmid, int cmd, struct shmid_ds *buf)
|
|
{
|
|
#ifdef USE_SERVER
|
|
syscall_printf ("shmctl (shmid = %d, cmd = %d, buf = 0x%x)",
|
|
shmid, cmd, buf);
|
|
switch (cmd)
|
|
{
|
|
case IPC_STAT:
|
|
case IPC_SET:
|
|
if (__check_null_invalid_struct_errno (buf, sizeof (struct shmid_ds)))
|
|
return -1;
|
|
break;
|
|
case IPC_INFO:
|
|
/* shmid == 0: Request for shminfo struct. */
|
|
if (!shmid
|
|
&& __check_null_invalid_struct_errno (buf, sizeof (struct shminfo)))
|
|
return -1;
|
|
/* Otherwise, request shmid entries from internal shmid_ds array. */
|
|
if (shmid)
|
|
if (__check_null_invalid_struct_errno (buf, shmid * sizeof (struct shmid_ds)))
|
|
return -1;
|
|
break;
|
|
case SHM_INFO:
|
|
if (__check_null_invalid_struct_errno (buf, sizeof (struct shm_info)))
|
|
return -1;
|
|
break;
|
|
}
|
|
client_request_shm request (shmid, cmd, buf);
|
|
if (request.make_request () == -1 || request.retval () == -1)
|
|
{
|
|
syscall_printf ("-1 [%d] = shmctl ()", request.error_code ());
|
|
set_errno (request.error_code ());
|
|
if (request.error_code () == ENOSYS)
|
|
raise (SIGSYS);
|
|
return -1;
|
|
}
|
|
if (cmd == IPC_RMID)
|
|
{
|
|
/* The process must cleanup its own storage... */
|
|
shm_shmid_list *ssh_entry, *ssh_next_entry;
|
|
SLIST_FOREACH_SAFE (ssh_entry, &ssh_list, ssh_next, ssh_next_entry)
|
|
{
|
|
if (ssh_entry->shmid == shmid)
|
|
{
|
|
SLIST_REMOVE (&ssh_list, ssh_entry, shm_shmid_list, ssh_next);
|
|
/* ...and close the handle. */
|
|
CloseHandle (ssh_entry->hdl);
|
|
delete ssh_entry;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return request.retval ();
|
|
#else
|
|
set_errno (ENOSYS);
|
|
raise (SIGSYS);
|
|
return -1;
|
|
#endif
|
|
}
|
|
|
|
extern "C" int
|
|
shmdt (const void *shmaddr)
|
|
{
|
|
#ifdef USE_SERVER
|
|
syscall_printf ("shmget (shmaddr = %p)", shmaddr);
|
|
client_request_shm request (shmaddr);
|
|
if (request.make_request () == -1 || request.retval () == -1)
|
|
{
|
|
syscall_printf ("-1 [%d] = shmctl ()", request.error_code ());
|
|
set_errno (request.error_code ());
|
|
if (request.error_code () == ENOSYS)
|
|
raise (SIGSYS);
|
|
return -1;
|
|
}
|
|
shm_attached_list *sph_entry, *sph_next_entry;
|
|
/* Remove map from list... */
|
|
SLIST_FOREACH_SAFE (sph_entry, &sph_list, sph_next, sph_next_entry)
|
|
{
|
|
if (sph_entry->ptr == shmaddr)
|
|
{
|
|
SLIST_REMOVE (&sph_list, sph_entry, shm_attached_list, sph_next);
|
|
/* ...and unmap view. */
|
|
UnmapViewOfFile (sph_entry->ptr);
|
|
delete sph_entry;
|
|
break;
|
|
}
|
|
}
|
|
return request.retval ();
|
|
#else
|
|
set_errno (ENOSYS);
|
|
raise (SIGSYS);
|
|
return -1;
|
|
#endif
|
|
}
|
|
|
|
extern "C" int
|
|
shmget (key_t key, size_t size, int shmflg)
|
|
{
|
|
#ifdef USE_SERVER
|
|
syscall_printf ("shmget (key = %U, size = %d, shmflg = 0x%x)",
|
|
key, size, shmflg);
|
|
/* Try allocating memory before calling cygserver. */
|
|
shm_shmid_list *ssh_new_entry = new (shm_shmid_list);
|
|
if (!ssh_new_entry)
|
|
{
|
|
set_errno (ENOMEM);
|
|
return -1;
|
|
}
|
|
client_request_shm request (key, size, shmflg);
|
|
if (request.make_request () == -1 || request.retval () == -1)
|
|
{
|
|
syscall_printf ("-1 [%d] = shmctl ()", request.error_code ());
|
|
delete ssh_new_entry;
|
|
set_errno (request.error_code ());
|
|
if (request.error_code () == ENOSYS)
|
|
raise (SIGSYS);
|
|
return -1;
|
|
}
|
|
int shmid = request.retval (); /* Shared mem ID */
|
|
vm_object_t hdl = request.objval (); /* HANDLE associated with it. */
|
|
shm_shmid_list *ssh_entry;
|
|
SLIST_FOREACH (ssh_entry, &ssh_list, ssh_next)
|
|
{
|
|
if (ssh_entry->shmid == shmid)
|
|
{
|
|
/* We already maintain an entry for this shmid. That means,
|
|
the hdl returned by cygserver is a superfluous duplicate
|
|
of the original hdl maintained by cygserver. We can safely
|
|
delete it. */
|
|
CloseHandle (hdl);
|
|
delete ssh_new_entry;
|
|
return shmid;
|
|
}
|
|
}
|
|
/* We arrive here only if shmid is a new one for this process. Add the
|
|
shmid and hdl value to the list. */
|
|
ssh_new_entry->shmid = shmid;
|
|
ssh_new_entry->hdl = hdl;
|
|
ssh_new_entry->size = size;
|
|
SLIST_INSERT_HEAD (&ssh_list, ssh_new_entry, ssh_next);
|
|
return shmid;
|
|
#else
|
|
set_errno (ENOSYS);
|
|
raise (SIGSYS);
|
|
return -1;
|
|
#endif
|
|
}
|