f90e23f271
* cygheap.cc (_csbrk): Call getpagesize instead of getshmlba. * dcrt0.cc (dll_crt0_0): Call mmap_init. * external.cc (cygwin_internal): Call getpagesize instead of getshmlba. * fhandler.h (fhandler_base::mmap): Change access to prot parameter. (fhandler_base::fixup_mmap_after_fork): Ditto. (fhandler_disk_file::mmap): Ditto. (fhandler_disk_file::fixup_mmap_after_fork): Ditto. (fhandler_dev_mem::mmap): Ditto. (fhandler_dev_mem::fixup_mmap_after_fork): Ditto. * fhandler_mem.cc (fhandler_dev_mem::write): Call getsystempagesize instead of getpagesize. (fhandler_dev_mem::read): Ditto. (fhandler_dev_mem::fstat): Ditto. (fhandler_dev_mem::mmap): Move to mmap.cc. (fhandler_dev_mem::munmap): Ditto. (fhandler_dev_mem::msync): Ditto. (fhandler_dev_mem::fixup_mmap_after_fork): Ditto. * fhandler_proc.cc (format_proc_meminfo): Call getsystempagesize instead of getpagesize. * fhandler_process.cc (format_process_stat): Ditto. (format_process_status): Ditto. (get_mem_values): Ditto. * mmap.cc: Fix formatting. Try to make more readable and modular. Take advantage of pagesize==granularity. (gen_protect): New static function to evaluate Windows protection bits from POSIX protection and flags. (gen_access): Ditto for Windows access mode. (VirtualProt9x): Wrapper function to call VirtualProtect on 9x. (VirtualProtNT): Ditto for NT. (VirtualProtEx9x): Ditto for VirtualProtectEx on 9x. (VirtualProtExNT): Ditto for NT. (CreateMapping9x): Wrapper function for creating a mapping handle on 9x. (CreateMappingNT): Ditto for NT. (MapView9x): Wrapper function to map a view on 9x. (MapViewNT): Ditto for NT. (mmap_funcs_9x): Structure containing function pointers to wrapper functions for 9x. (mmap_funcs_nt): Ditto for NT. (mmap_func): Pointer to wrapper functions used in subsequent code. (mmap_init): Initialize mmap_func depending on OS. (class mmap_record): Use sensible member names. Add POSIX protection member. Drop Windows access flags member. Constify more methods. Use accessors instead of direct member access inside of own methods. (mmap_record::gen_protect): Class wrapper to evaluate matching Windows protection bits. (mmap_record::gen_access): Ditto for Windows access flags. (mmap_record::compatible_flags): New function to check if flags are compatible with flags of existing map. (list::add_record): Drop offset and length arguments. (class map): Change counters to unsigned. Match usage throughout. (mmapped_areas): Convert from pointer to global struct. (mmap_record::alloc_page_map): Simplify. (mmap_record::map_pages): Ditto. (mmap_record::fixup_page_map): Delete. (mmap64): Simplify. Add workaround for Windows 98 bug. Fix bug on NT that existing anonymous mappings weren't searched for a match. (munmap): Add workaround for Windows 98 bug. (msync): Simplify. (mprotect): Handle existing maps correctly. (mlock): Add local pagesize variable and enlightening comment. (fhandler_disk_file::mmap): Main functionality now in CreateMapping/ MapView wrapper functions. (fhandler_disk_file::fixup_mmap_after_fork): Call MapView wrapper. (fhandler_dev_mem::mmap): Moved from fhandler_mem.cc. Simplify by calling MapViewNT. (fhandler_dev_mem::munmap): Moved from fhandler_mem.cc. (fhandler_dev_mem::msync): Ditto. (fhandler_dev_mem::fixup_mmap_after_fork): Ditto. Call MapViewNT. (fixup_mmaps_after_fork): Restructure and hopefully speed up loop for setting protection and memory content on MAP_PRIVATE maps. * ntdll.h (AT_ROUND_TO_PAGE): Remove define. (AT_EXTENDABLE_FILE): Add define. (NtCreateSection): Add prototype. * syscalls.cc (getpagesize): Return granularity as pagesize now. (getsystempagesize): New function to retrieve "real" pagesize. (getshmlba): Delete since it's replaced by getpagesize now. * wincap.h (wincaps::has_mmap_alignment_bug): New element. * wincap.cc: Implement above element throughout. * winsup.h (getshmlba): Drop prototype. (getsystempagesize): Add prototype. (mmap_init): Ditto. * include/sys/mman.h: (Not yet) define MAP_NORESERVE.
285 lines
5.7 KiB
C++
285 lines
5.7 KiB
C++
/* fhandler_mem.cc. See fhandler.h for a description of the fhandler classes.
|
|
|
|
Copyright 2000, 2001, 2002, 2003, 2004, 2005 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 <unistd.h>
|
|
#include <sys/mman.h>
|
|
#include <ntdef.h>
|
|
|
|
#include "cygerrno.h"
|
|
#include "security.h"
|
|
#include "path.h"
|
|
#include "fhandler.h"
|
|
#include "ntdll.h"
|
|
|
|
/**********************************************************************/
|
|
/* fhandler_dev_mem */
|
|
|
|
fhandler_dev_mem::fhandler_dev_mem ()
|
|
: fhandler_base ()
|
|
{
|
|
}
|
|
|
|
fhandler_dev_mem::~fhandler_dev_mem ()
|
|
{
|
|
}
|
|
|
|
int
|
|
fhandler_dev_mem::open (int flags, mode_t)
|
|
{
|
|
if (!wincap.has_physical_mem_access ())
|
|
{
|
|
set_errno (ENOENT);
|
|
debug_printf ("%s is accessible under NT/W2K only", dev ().name);
|
|
return 0;
|
|
}
|
|
|
|
if (dev () == FH_MEM) /* /dev/mem */
|
|
{
|
|
NTSTATUS ret;
|
|
SYSTEM_BASIC_INFORMATION sbi;
|
|
if ((ret = NtQuerySystemInformation (SystemBasicInformation, (PVOID) &sbi,
|
|
sizeof sbi, NULL)) != STATUS_SUCCESS)
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
debug_printf("NtQuerySystemInformation: ret %d, Dos(ret) %E", ret);
|
|
mem_size = 0;
|
|
}
|
|
else
|
|
mem_size = sbi.PhysicalPageSize * sbi.NumberOfPhysicalPages;
|
|
debug_printf ("MemSize: %d MB", mem_size >> 20);
|
|
}
|
|
else if (dev () == FH_KMEM) /* /dev/kmem - Not yet supported */
|
|
{
|
|
mem_size = 0;
|
|
debug_printf ("KMemSize: %d MB", mem_size >> 20);
|
|
}
|
|
else if (dev () == FH_PORT) /* /dev/port == First 64K of /dev/mem */
|
|
{
|
|
mem_size = 65536;
|
|
debug_printf ("PortSize: 64 KB");
|
|
}
|
|
else
|
|
{
|
|
mem_size = 0;
|
|
debug_printf ("Illegal minor number!!!");
|
|
}
|
|
|
|
/* Check for illegal flags. */
|
|
if (flags & (O_APPEND | O_TRUNC | O_EXCL))
|
|
{
|
|
set_errno (EINVAL);
|
|
return 0;
|
|
}
|
|
|
|
UNICODE_STRING memstr;
|
|
RtlInitUnicodeString (&memstr, L"\\device\\physicalmemory");
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
InitializeObjectAttributes (&attr, &memstr,
|
|
OBJ_CASE_INSENSITIVE | OBJ_INHERIT,
|
|
NULL, NULL);
|
|
|
|
ACCESS_MASK section_access;
|
|
if ((flags & (O_RDONLY | O_WRONLY | O_RDWR)) == O_RDONLY)
|
|
{
|
|
set_access (GENERIC_READ);
|
|
section_access = SECTION_MAP_READ;
|
|
}
|
|
else if ((flags & (O_RDONLY | O_WRONLY | O_RDWR)) == O_WRONLY)
|
|
{
|
|
set_access (GENERIC_WRITE);
|
|
section_access = SECTION_MAP_READ | SECTION_MAP_WRITE;
|
|
}
|
|
else
|
|
{
|
|
set_access (GENERIC_READ | GENERIC_WRITE);
|
|
section_access = SECTION_MAP_READ | SECTION_MAP_WRITE;
|
|
}
|
|
|
|
HANDLE mem;
|
|
NTSTATUS ret = NtOpenSection (&mem, section_access, &attr);
|
|
if (!NT_SUCCESS (ret))
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
set_io_handle (NULL);
|
|
return 0;
|
|
}
|
|
|
|
set_io_handle (mem);
|
|
set_open_status ();
|
|
return 1;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_mem::write (const void *ptr, size_t ulen)
|
|
{
|
|
if (!ulen || pos >= mem_size)
|
|
return 0;
|
|
|
|
if (!(get_access () & GENERIC_WRITE))
|
|
{
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
if (pos + ulen > mem_size)
|
|
ulen = mem_size - pos;
|
|
|
|
PHYSICAL_ADDRESS phys;
|
|
NTSTATUS ret;
|
|
void *viewmem = NULL;
|
|
DWORD len = ulen + getsystempagesize () - 1;
|
|
|
|
phys.QuadPart = (ULONGLONG) pos;
|
|
if ((ret = NtMapViewOfSection (get_handle (),
|
|
INVALID_HANDLE_VALUE,
|
|
&viewmem,
|
|
0L,
|
|
len,
|
|
&phys,
|
|
&len,
|
|
ViewShare,
|
|
0,
|
|
PAGE_READONLY)) != STATUS_SUCCESS)
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
return -1;
|
|
}
|
|
|
|
memcpy ((char *) viewmem + (pos - phys.QuadPart), ptr, ulen);
|
|
|
|
if (!NT_SUCCESS (ret = NtUnmapViewOfSection (INVALID_HANDLE_VALUE, viewmem)))
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
return -1;
|
|
}
|
|
|
|
pos += ulen;
|
|
return ulen;
|
|
}
|
|
|
|
void __stdcall
|
|
fhandler_dev_mem::read (void *ptr, size_t& ulen)
|
|
{
|
|
if (!ulen || pos >= mem_size)
|
|
{
|
|
ulen = 0;
|
|
return;
|
|
}
|
|
|
|
if (!(get_access () & GENERIC_READ))
|
|
{
|
|
set_errno (EINVAL);
|
|
ulen = (size_t) -1;
|
|
return;
|
|
}
|
|
|
|
if (pos + ulen > mem_size)
|
|
ulen = mem_size - pos;
|
|
|
|
PHYSICAL_ADDRESS phys;
|
|
NTSTATUS ret;
|
|
void *viewmem = NULL;
|
|
DWORD len = ulen + getsystempagesize () - 1;
|
|
|
|
phys.QuadPart = (ULONGLONG) pos;
|
|
if ((ret = NtMapViewOfSection (get_handle (),
|
|
INVALID_HANDLE_VALUE,
|
|
&viewmem,
|
|
0L,
|
|
len,
|
|
&phys,
|
|
&len,
|
|
ViewShare,
|
|
0,
|
|
PAGE_READONLY)) != STATUS_SUCCESS)
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
ulen = (size_t) -1;
|
|
return;
|
|
}
|
|
|
|
memcpy (ptr, (char *) viewmem + (pos - phys.QuadPart), ulen);
|
|
|
|
if (!NT_SUCCESS (ret = NtUnmapViewOfSection (INVALID_HANDLE_VALUE, viewmem)))
|
|
{
|
|
__seterrno_from_nt_status (ret);
|
|
ulen = (size_t) -1;
|
|
return;
|
|
}
|
|
|
|
pos += ulen;
|
|
}
|
|
|
|
_off64_t
|
|
fhandler_dev_mem::lseek (_off64_t offset, int whence)
|
|
{
|
|
switch (whence)
|
|
{
|
|
case SEEK_SET:
|
|
pos = offset;
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
pos += offset;
|
|
break;
|
|
|
|
case SEEK_END:
|
|
pos = mem_size;
|
|
pos += offset;
|
|
break;
|
|
|
|
default:
|
|
set_errno (EINVAL);
|
|
return ILLEGAL_SEEK;
|
|
}
|
|
|
|
if (pos > mem_size)
|
|
{
|
|
set_errno (EINVAL);
|
|
return ILLEGAL_SEEK;
|
|
}
|
|
|
|
return pos;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_mem::fstat (struct __stat64 *buf)
|
|
{
|
|
fhandler_base::fstat (buf);
|
|
buf->st_blksize = getsystempagesize ();
|
|
if (is_auto_device ())
|
|
{
|
|
buf->st_mode = S_IFCHR;
|
|
if (wincap.has_physical_mem_access ())
|
|
buf->st_mode |= S_IRUSR | S_IWUSR |
|
|
S_IRGRP | S_IWGRP |
|
|
S_IROTH | S_IWOTH;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
fhandler_dev_mem::dup (fhandler_base *child)
|
|
{
|
|
int ret = fhandler_base::dup (child);
|
|
|
|
if (! ret)
|
|
{
|
|
fhandler_dev_mem *fhc = (fhandler_dev_mem *) child;
|
|
|
|
fhc->mem_size = mem_size;
|
|
fhc->pos = pos;
|
|
}
|
|
return ret;
|
|
}
|