2003-10-01 20:36:39 +08:00
|
|
|
%import {
|
|
|
|
#include "winsup.h"
|
|
|
|
#include "devices.h"
|
|
|
|
#include "sys/cygwin.h"
|
|
|
|
#include "tty.h"
|
|
|
|
#include "pinfo.h"
|
2012-04-01 04:14:14 +08:00
|
|
|
#include "shared_info.h"
|
2012-04-16 01:51:22 +08:00
|
|
|
#include "path.h"
|
|
|
|
#include "fhandler.h"
|
2012-04-01 04:14:14 +08:00
|
|
|
#include "ntdll.h"
|
2012-04-16 01:51:22 +08:00
|
|
|
|
2003-10-01 20:36:39 +08:00
|
|
|
typedef const device *KR_device_t;
|
|
|
|
}
|
|
|
|
%type KR_device_t
|
|
|
|
%local {
|
2012-04-01 15:19:52 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
exists_internal (const device&)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exists (const device&)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check existence of POSIX devices backed by real NT devices. */
|
|
|
|
static int
|
|
|
|
exists_ntdev (const device& dev)
|
|
|
|
{
|
|
|
|
WCHAR wpath[MAX_PATH];
|
|
|
|
UNICODE_STRING upath;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
HANDLE h;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
sys_mbstowcs (wpath, MAX_PATH, dev.native);
|
|
|
|
RtlInitUnicodeString (&upath, wpath);
|
|
|
|
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE, NULL, NULL);
|
|
|
|
/* Except for the serial IO devices, the native paths are
|
|
|
|
direct device paths, not symlinks, so every status code
|
|
|
|
except for "NOT_FOUND" means the device exists. */
|
|
|
|
status = NtOpenSymbolicLinkObject (&h, SYMBOLIC_LINK_QUERY, &attr);
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case STATUS_OBJECT_NAME_NOT_FOUND:
|
|
|
|
case STATUS_OBJECT_PATH_NOT_FOUND:
|
|
|
|
return false;
|
|
|
|
case STATUS_SUCCESS:
|
|
|
|
NtClose (h);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't list via readdir but allow as a direct reference. */
|
|
|
|
static int
|
2012-04-03 04:41:46 +08:00
|
|
|
exists_ntdev_silent (const device& dev)
|
2012-04-01 15:19:52 +08:00
|
|
|
{
|
|
|
|
return exists_ntdev (dev) ? -1 : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exists_console (const device& dev)
|
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
fh_devices devn = *const_cast<device *> (&dev);
|
2012-04-01 15:19:52 +08:00
|
|
|
switch (devn)
|
|
|
|
{
|
|
|
|
case FH_CONSOLE:
|
|
|
|
case FH_CONIN:
|
|
|
|
case FH_CONOUT:
|
2012-04-16 01:51:22 +08:00
|
|
|
return fhandler_console::exists ();
|
2012-04-01 15:19:52 +08:00
|
|
|
default:
|
2012-04-03 04:41:46 +08:00
|
|
|
/* Only show my own console device (for now?) */
|
2012-04-13 10:30:51 +08:00
|
|
|
return iscons_dev (myself->ctty) && myself->ctty == devn;
|
2012-04-01 15:19:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exists_pty (const device& dev)
|
|
|
|
{
|
|
|
|
/* Only existing slave ptys. */
|
|
|
|
return cygwin_shared->tty.connect (dev.get_minor ()) != -1;
|
|
|
|
}
|
|
|
|
|
2003-10-01 20:36:39 +08:00
|
|
|
const device dev_cygdrive_storage =
|
2013-10-31 22:26:42 +08:00
|
|
|
{"/cygdrive", {FH_CYGDRIVE}, "", exists};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
|
|
|
const device dev_fs_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_FS}, "", exists};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
|
|
|
const device dev_proc_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PROC}, "", exists};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
2007-01-18 03:26:58 +08:00
|
|
|
const device dev_procnet_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PROCNET}, "", exists};
|
2007-01-18 03:26:58 +08:00
|
|
|
|
2010-09-06 17:47:01 +08:00
|
|
|
const device dev_procsys_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PROCSYS}, "", exists};
|
2010-09-06 17:47:01 +08:00
|
|
|
|
2011-04-02 03:48:19 +08:00
|
|
|
const device dev_procsysvipc_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PROCSYSVIPC}, "", exists};
|
2011-04-02 03:48:19 +08:00
|
|
|
|
2005-05-06 12:06:17 +08:00
|
|
|
const device dev_netdrive_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_NETDRIVE}, "", exists};
|
2005-05-06 12:06:17 +08:00
|
|
|
|
2003-10-01 20:36:39 +08:00
|
|
|
const device dev_registry_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_REGISTRY}, "", exists_internal};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
|
|
|
const device dev_piper_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PIPER}, "", exists_internal};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
|
|
|
const device dev_pipew_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_PIPEW}, "", exists_internal};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
2003-11-29 04:55:59 +08:00
|
|
|
const device dev_tcp_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_TCP}, "", exists_internal};
|
2003-11-29 04:55:59 +08:00
|
|
|
|
|
|
|
const device dev_udp_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_UDP}, "", exists_internal};
|
2003-11-29 04:55:59 +08:00
|
|
|
|
|
|
|
const device dev_stream_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_STREAM}, "", exists_internal};
|
2003-11-29 04:55:59 +08:00
|
|
|
|
|
|
|
const device dev_dgram_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_DGRAM}, "", exists_internal};
|
2003-11-29 04:55:59 +08:00
|
|
|
|
2003-10-01 20:36:39 +08:00
|
|
|
const device dev_bad_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_NADA}, "", exists_internal};
|
2011-06-13 04:15:26 +08:00
|
|
|
|
|
|
|
const device dev_error_storage =
|
2012-04-01 15:19:52 +08:00
|
|
|
{"", {FH_ERROR}, "", exists_internal};
|
2003-10-01 20:36:39 +08:00
|
|
|
|
2012-04-01 15:19:52 +08:00
|
|
|
#define BRACK(x) {devn_int: x}
|
2003-10-01 20:36:39 +08:00
|
|
|
%storage_here
|
|
|
|
}
|
2012-04-03 04:41:46 +08:00
|
|
|
/* Internal devices below are prefixed with a ":". This moves them out of
|
|
|
|
the POSIX namespace. */
|
2003-10-01 20:36:39 +08:00
|
|
|
%%
|
2013-10-31 22:26:42 +08:00
|
|
|
"/dev", BRACK(FH_DEV), "", exists, S_IFDIR
|
2012-04-01 15:19:52 +08:00
|
|
|
"/dev/tty", BRACK(FH_TTY), "/dev/tty", exists, S_IFCHR
|
2012-04-03 04:41:46 +08:00
|
|
|
"/dev/pty%(0-63)d", BRACK(FHDEV(DEV_PTYS_MAJOR, {$1})), "/dev/pty{$1}", exists_pty, S_IFCHR, =ptys_dev
|
|
|
|
":ptym%(0-63)d", BRACK(FHDEV(DEV_PTYM_MAJOR, {$1})), "/dev/ptym{$1}", exists_internal, S_IFCHR, =ptym_dev
|
|
|
|
"/dev/cons%(0-63)d", BRACK(FHDEV(DEV_CONS_MAJOR, {$1})), "/dev/cons{$1}", exists_console, S_IFCHR, =cons_dev
|
|
|
|
"/dev/console", BRACK(FH_CONSOLE), "/dev/console", exists_console, S_IFCHR, =console_dev
|
2012-04-01 15:19:52 +08:00
|
|
|
"/dev/ptmx", BRACK(FH_PTMX), "/dev/ptmx", exists, S_IFCHR
|
2013-10-30 17:44:47 +08:00
|
|
|
"/dev/windows", BRACK(FH_WINDOWS), "\\Device\\Null", exists_ntdev, S_IFCHR
|
2013-10-26 21:23:54 +08:00
|
|
|
"/dev/dsp", BRACK(FH_OSS_DSP), "\\Device\\Null", exists_ntdev, S_IFCHR
|
2012-04-01 15:19:52 +08:00
|
|
|
"/dev/conin", BRACK(FH_CONIN), "/dev/conin", exists_console, S_IFCHR
|
|
|
|
"/dev/conout", BRACK(FH_CONOUT), "/dev/conout", exists_console, S_IFCHR
|
|
|
|
"/dev/null", BRACK(FH_NULL), "\\Device\\Null", exists_ntdev, S_IFCHR
|
2013-10-24 17:41:17 +08:00
|
|
|
"/dev/zero", BRACK(FH_ZERO), "\\Device\\Null", exists_ntdev, S_IFCHR
|
|
|
|
"/dev/full", BRACK(FH_FULL), "\\Device\\Null", exists_ntdev, S_IFCHR
|
2013-10-25 20:21:59 +08:00
|
|
|
"/dev/random", BRACK(FH_RANDOM), "\\Device\\Null", exists_ntdev, S_IFCHR
|
|
|
|
"/dev/urandom", BRACK(FH_URANDOM), "\\Device\\Null", exists_ntdev, S_IFCHR, =urandom_dev
|
2013-10-26 00:16:50 +08:00
|
|
|
"/dev/clipboard", BRACK(FH_CLIPBOARD), "\\Device\\Null", exists_ntdev, S_IFCHR
|
2012-04-03 04:41:46 +08:00
|
|
|
"/dev/com%(1-16)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1 - 1})), "\\??\\COM{$1}", exists_ntdev_silent, S_IFCHR
|
2012-04-01 15:19:52 +08:00
|
|
|
"/dev/ttyS%(0-63)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1})), "\\??\\COM{$1 + 1}", exists_ntdev, S_IFCHR
|
2012-04-03 04:41:46 +08:00
|
|
|
":pipe", BRACK(FH_PIPE), "/dev/pipe", exists_internal, S_IFCHR
|
|
|
|
":fifo", BRACK(FH_FIFO), "/dev/fifo", exists_internal, S_IFCHR
|
2012-04-01 15:19:52 +08:00
|
|
|
"/dev/st%(0-127)d", BRACK(FHDEV(DEV_TAPE_MAJOR, {$1})), "\\Device\\Tape{$1}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/nst%(0-127)d", BRACK(FHDEV(DEV_TAPE_MAJOR, {$1 + 128})), "\\Device\\Tape{$1}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/fd%(0-15)d", BRACK(FHDEV(DEV_FLOPPY_MAJOR, {$1})), "\\Device\\Floppy{$1}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/scd%(0-15)d", BRACK(FHDEV(DEV_CDROM_MAJOR, {$1})), "\\Device\\CdRom{$1}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sr%(0-15)d", BRACK(FHDEV(DEV_CDROM_MAJOR, {$1})), "\\Device\\CdRom{$1}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sd%{a-z}s", BRACK(FH_SD{uc $1}), "\\Device\\Harddisk{ord($1) - ord('a')}\\Partition0", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sda%{a-z}s", BRACK(FH_SDA{uc $1}), "\\Device\\Harddisk{26 + ord($1) - ord('a')}\\Partition0", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdb%{a-z}s", BRACK(FH_SDB{uc $1}), "\\Device\\Harddisk{52 + ord($1) - ord('a')}\\Partition0", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdc%{a-z}s", BRACK(FH_SDC{uc $1}), "\\Device\\Harddisk{78 + ord($1) - ord('a')}\\Partition0", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdd%{a-x}s", BRACK(FH_SDD{uc $1}), "\\Device\\Harddisk{104 + ord($1) - ord('a')}\\Partition0", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sd%{a-z}s%(1-15)d", BRACK(FH_SD{uc $1} | {$2}), "\\Device\\Harddisk{ord($1) - ord('a')}\\Partition{$2 % 16}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sda%{a-z}s%(1-15)d", BRACK(FH_SDA{uc $1} | {$2}), "\\Device\\Harddisk{26 + ord($1) - ord('a')}\\Partition{$2 % 16}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdb%{a-z}s%(1-15)d", BRACK(FH_SDB{uc $1} | {$2}), "\\Device\\Harddisk{52 + ord($1) - ord('a')}\\Partition{$2 % 16}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdc%{a-z}s%(1-15)d", BRACK(FH_SDC{uc $1} | {$2}), "\\Device\\Harddisk{78 + ord($1) - ord('a')}\\Partition{$2 % 16}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/sdd%{a-x}s%(1-15)d", BRACK(FH_SDD{uc $1} | {$2}), "\\Device\\Harddisk{104 + ord($1) - ord('a')}\\Partition{$2 % 16}", exists_ntdev, S_IFBLK
|
|
|
|
"/dev/kmsg", BRACK(FH_KMSG), "\\Device\\MailSlot\\cygwin\\dev\\kmsg", exists_ntdev, S_IFCHR
|
2003-10-01 20:36:39 +08:00
|
|
|
%other {return NULL;}
|
|
|
|
%%
|
2005-03-20 05:45:15 +08:00
|
|
|
#undef BRACK
|
2012-03-30 02:02:54 +08:00
|
|
|
|
2012-04-01 01:38:00 +08:00
|
|
|
const device *dev_storage_end = dev_storage + (sizeof dev_storage / sizeof dev_storage[0]);
|
2012-03-30 02:02:54 +08:00
|
|
|
|
2003-10-01 20:36:39 +08:00
|
|
|
void
|
|
|
|
device::parse (const char *s)
|
|
|
|
{
|
|
|
|
size_t len = strlen (s);
|
|
|
|
const device *dev = KR_find_keyword (s, len);
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
*this = *fs_dev;
|
|
|
|
else
|
|
|
|
*this = *dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
device::init ()
|
|
|
|
{
|
|
|
|
/* nothing to do... yet */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
device::parse (_major_t major, _minor_t minor)
|
|
|
|
{
|
2013-04-23 17:44:36 +08:00
|
|
|
dev_t devn = FHDEV (major, minor);
|
2003-10-01 20:36:39 +08:00
|
|
|
|
2011-05-29 02:17:09 +08:00
|
|
|
d.devn = 0;
|
2003-10-01 20:36:39 +08:00
|
|
|
|
2012-04-01 15:19:52 +08:00
|
|
|
for (const device *devidx = dev_storage; devidx < dev_storage_end; devidx++)
|
|
|
|
if (devidx->d.devn == devn)
|
2003-10-01 20:36:39 +08:00
|
|
|
{
|
2012-04-01 15:19:52 +08:00
|
|
|
*this = *devidx;
|
2003-10-01 20:36:39 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*this)
|
2011-05-29 02:17:09 +08:00
|
|
|
d.devn = FHDEV (major, minor);
|
2003-10-01 20:36:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-04-23 17:44:36 +08:00
|
|
|
device::parse (dev_t dev)
|
2003-10-01 20:36:39 +08:00
|
|
|
{
|
|
|
|
parse (_major (dev), _minor (dev));
|
|
|
|
}
|
|
|
|
|
2005-02-02 00:49:13 +08:00
|
|
|
void
|
|
|
|
device::parsedisk (int drive, int part)
|
|
|
|
{
|
|
|
|
int base;
|
2006-11-23 17:55:55 +08:00
|
|
|
if (drive < ('q' - 'a')) /* /dev/sda -to- /dev/sdp */
|
2005-02-02 00:49:13 +08:00
|
|
|
base = DEV_SD_MAJOR;
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 32) /* /dev/sdq -to- /dev/sdaf */
|
2005-02-02 00:49:13 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD1_MAJOR;
|
2005-02-24 01:59:04 +08:00
|
|
|
drive -= 'q' - 'a';
|
2005-02-02 00:49:13 +08:00
|
|
|
}
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 48) /* /dev/sdag -to- /dev/sdav */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD2_MAJOR;
|
|
|
|
drive -= 32;
|
|
|
|
}
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 64) /* /dev/sdaw -to- /dev/sdbl */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD3_MAJOR;
|
|
|
|
drive -= 48;
|
|
|
|
}
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 80) /* /dev/sdbm -to- /dev/sdcb */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD4_MAJOR;
|
|
|
|
drive -= 64;
|
|
|
|
}
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 96) /* /dev/sdcc -to- /dev/sdcr */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD5_MAJOR;
|
|
|
|
drive -= 80;
|
|
|
|
}
|
2008-02-16 01:53:11 +08:00
|
|
|
else if (drive < 112) /* /dev/sdcs -to- /dev/sddh */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD6_MAJOR;
|
|
|
|
drive -= 96;
|
|
|
|
}
|
|
|
|
/* NOTE: This will cause multiple /dev/sddx entries in
|
2008-02-16 01:53:11 +08:00
|
|
|
/proc/partitions if there are more than 128 devices */
|
|
|
|
else /* /dev/sddi -to- /dev/sddx */
|
2006-11-23 17:55:55 +08:00
|
|
|
{
|
|
|
|
base = DEV_SD7_MAJOR;
|
|
|
|
drive -= 112;
|
|
|
|
}
|
2005-02-02 00:49:13 +08:00
|
|
|
parse (base, part + (drive * 16));
|
|
|
|
}
|