2002-05-02 06:26:05 +02:00
|
|
|
/* fhandler_proc.cc: fhandler for /proc virtual filesystem
|
|
|
|
|
2009-01-17 11:16:42 +01:00
|
|
|
Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2009 Red Hat, Inc.
|
2002-05-02 06:26:05 +02: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. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2008-04-07 18:15:45 +02:00
|
|
|
#include "miscfuncs.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "cygerrno.h"
|
|
|
|
#include "security.h"
|
|
|
|
#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"
|
2009-01-20 18:22:11 +01:00
|
|
|
#include "fhandler_virtual.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
#include "pinfo.h"
|
2002-05-04 05:24:35 +02:00
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2009-01-20 18:22:11 +01:00
|
|
|
#include "tls_pbuf.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
#include <sys/utsname.h>
|
2002-08-31 18:37:51 +02:00
|
|
|
#include <sys/param.h>
|
2002-05-12 03:37:48 +02:00
|
|
|
#include "ntdll.h"
|
2006-03-09 10:01:08 +01:00
|
|
|
#include <ctype.h>
|
2003-03-09 21:10:25 +01:00
|
|
|
#include <winioctl.h>
|
2006-03-09 10:01:08 +01:00
|
|
|
#include <wchar.h>
|
2003-04-16 05:03:45 +02:00
|
|
|
#include "cpuid.h"
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
#define _COMPILING_NEWLIB
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
static _off64_t format_proc_loadavg (void *, char *&);
|
|
|
|
static _off64_t format_proc_meminfo (void *, char *&);
|
|
|
|
static _off64_t format_proc_stat (void *, char *&);
|
|
|
|
static _off64_t format_proc_version (void *, char *&);
|
|
|
|
static _off64_t format_proc_uptime (void *, char *&);
|
|
|
|
static _off64_t format_proc_cpuinfo (void *, char *&);
|
|
|
|
static _off64_t format_proc_partitions (void *, char *&);
|
|
|
|
static _off64_t format_proc_self (void *, char *&);
|
2009-02-04 17:40:04 +01:00
|
|
|
static _off64_t format_proc_mounts (void *, char *&);
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
/* names of objects in /proc */
|
2009-01-20 18:22:11 +01:00
|
|
|
static const virt_tab_t proc_tab[] = {
|
|
|
|
{ ".", FH_PROC, virt_directory, NULL },
|
|
|
|
{ "..", FH_PROC, virt_directory, NULL },
|
|
|
|
{ "loadavg", FH_PROC, virt_file, format_proc_loadavg },
|
|
|
|
{ "meminfo", FH_PROC, virt_file, format_proc_meminfo },
|
|
|
|
{ "registry", FH_REGISTRY, virt_directory, NULL },
|
|
|
|
{ "stat", FH_PROC, virt_file, format_proc_stat },
|
|
|
|
{ "version", FH_PROC, virt_file, format_proc_version },
|
|
|
|
{ "uptime", FH_PROC, virt_file, format_proc_uptime },
|
|
|
|
{ "cpuinfo", FH_PROC, virt_file, format_proc_cpuinfo },
|
|
|
|
{ "partitions", FH_PROC, virt_file, format_proc_partitions },
|
|
|
|
{ "self", FH_PROC, virt_symlink, format_proc_self },
|
2009-02-04 17:40:04 +01:00
|
|
|
{ "mounts", FH_PROC, virt_symlink, format_proc_mounts },
|
2009-01-20 18:22:11 +01:00
|
|
|
{ "registry32", FH_REGISTRY, virt_directory, NULL },
|
|
|
|
{ "registry64", FH_REGISTRY, virt_directory, NULL },
|
|
|
|
{ "net", FH_PROCNET, virt_directory, NULL },
|
|
|
|
{ NULL, 0, virt_none, NULL }
|
2002-05-02 06:26:05 +02:00
|
|
|
};
|
|
|
|
|
2007-07-26 19:30:54 +02:00
|
|
|
#define PROC_DIR_COUNT 4
|
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
static const int PROC_LINK_COUNT = (sizeof (proc_tab) / sizeof (virt_tab_t)) - 1;
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
/* name of the /proc filesystem */
|
|
|
|
const char proc[] = "/proc";
|
|
|
|
const int proc_len = sizeof (proc) - 1;
|
|
|
|
|
2003-03-09 21:10:25 +01:00
|
|
|
/* Auxillary function that returns the fhandler associated with the given path
|
|
|
|
this is where it would be nice to have pattern matching in C - polymorphism
|
|
|
|
just doesn't cut it. */
|
2002-05-02 06:26:05 +02:00
|
|
|
DWORD
|
|
|
|
fhandler_proc::get_proc_fhandler (const char *path)
|
|
|
|
{
|
|
|
|
debug_printf ("get_proc_fhandler(%s)", path);
|
|
|
|
path += proc_len;
|
|
|
|
/* Since this method is called from path_conv::check we can't rely on
|
2003-03-09 21:10:25 +01:00
|
|
|
it being normalised and therefore the path may have runs of slashes
|
|
|
|
in it. */
|
2003-01-09 09:22:05 +01:00
|
|
|
while (isdirsep (*path))
|
2002-05-02 06:26:05 +02:00
|
|
|
path++;
|
|
|
|
|
|
|
|
/* Check if this is the root of the virtual filesystem (i.e. /proc). */
|
|
|
|
if (*path == 0)
|
|
|
|
return FH_PROC;
|
|
|
|
|
2009-01-17 11:16:42 +01:00
|
|
|
for (int i = 0; proc_tab[i].name; i++)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2009-01-17 11:16:42 +01:00
|
|
|
if (path_prefix_p (proc_tab[i].name, path, strlen (proc_tab[i].name),
|
2008-07-16 22:20:45 +02:00
|
|
|
false))
|
2009-01-17 11:16:42 +01:00
|
|
|
return proc_tab[i].fhandler;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
if (pinfo (atoi (path)))
|
|
|
|
return FH_PROCESS;
|
2002-05-04 05:24:35 +02:00
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
bool has_subdir = false;
|
|
|
|
while (*path)
|
2003-01-09 09:22:05 +01:00
|
|
|
if (isdirsep (*path++))
|
2002-06-02 08:07:01 +02:00
|
|
|
{
|
|
|
|
has_subdir = true;
|
|
|
|
break;
|
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
if (has_subdir)
|
|
|
|
/* The user is trying to access a non-existent subdirectory of /proc. */
|
|
|
|
return FH_BAD;
|
|
|
|
else
|
2007-03-07 15:03:29 +01:00
|
|
|
/* Return FH_PROC so that we can return EROFS if the user is trying to
|
|
|
|
create a file. */
|
2002-06-02 08:07:01 +02:00
|
|
|
return FH_PROC;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns 0 if path doesn't exist, >0 if path is a directory,
|
2005-02-01 16:11:47 +01:00
|
|
|
-1 if path is a file, -2 if it's a symlink. */
|
2002-05-02 06:26:05 +02:00
|
|
|
int
|
2002-05-23 00:09:58 +02:00
|
|
|
fhandler_proc::exists ()
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2002-05-23 00:09:58 +02:00
|
|
|
const char *path = get_name ();
|
2002-05-02 06:26:05 +02:00
|
|
|
debug_printf ("exists (%s)", path);
|
|
|
|
path += proc_len;
|
|
|
|
if (*path == 0)
|
2009-01-20 18:22:11 +01:00
|
|
|
return virt_rootdir;
|
2009-01-17 11:16:42 +01:00
|
|
|
for (int i = 0; proc_tab[i].name; i++)
|
|
|
|
if (!strcmp (path + 1, proc_tab[i].name))
|
2005-01-29 12:23:07 +01:00
|
|
|
{
|
|
|
|
fileid = i;
|
2009-01-17 11:16:42 +01:00
|
|
|
return proc_tab[i].type;
|
2005-01-29 12:23:07 +01:00
|
|
|
}
|
2009-01-20 18:22:11 +01:00
|
|
|
return virt_none;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fhandler_proc::fhandler_proc ():
|
* 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
|
|
|
fhandler_virtual ()
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
* 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
|
|
|
fhandler_proc::fstat (struct __stat64 *buf)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
const char *path = get_name ();
|
2002-06-02 05:13:22 +02:00
|
|
|
debug_printf ("fstat (%s)", path);
|
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
path += proc_len;
|
2005-07-06 22:05:03 +02:00
|
|
|
fhandler_base::fstat (buf);
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
buf->st_mode &= ~_IFMT & NO_W;
|
|
|
|
|
|
|
|
if (!*path)
|
|
|
|
{
|
2007-07-26 19:30:54 +02:00
|
|
|
winpids pids ((DWORD) 0);
|
|
|
|
buf->st_ino = 2;
|
2002-05-02 06:26:05 +02:00
|
|
|
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
2007-07-26 19:30:54 +02:00
|
|
|
buf->st_nlink = PROC_DIR_COUNT + 2 + pids.npids;
|
2002-05-02 06:26:05 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
path++;
|
2009-01-17 11:16:42 +01:00
|
|
|
for (int i = 0; proc_tab[i].name; i++)
|
|
|
|
if (!strcmp (path, proc_tab[i].name))
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
2009-01-20 18:22:11 +01:00
|
|
|
if (proc_tab[i].type == virt_directory)
|
2002-05-02 06:26:05 +02:00
|
|
|
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
2009-01-20 18:22:11 +01:00
|
|
|
else if (proc_tab[i].type == virt_symlink)
|
2005-01-29 12:23:07 +01:00
|
|
|
buf->st_mode = S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
buf->st_mode &= NO_X;
|
|
|
|
buf->st_mode |= S_IFREG;
|
|
|
|
}
|
2002-05-28 03:55:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
set_errno (ENOENT);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-08-20 08:19:55 +02:00
|
|
|
int
|
|
|
|
fhandler_proc::readdir (DIR *dir, dirent *de)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2005-08-20 08:19:55 +02:00
|
|
|
int res;
|
|
|
|
if (dir->__d_position < PROC_LINK_COUNT)
|
|
|
|
{
|
2009-01-17 11:16:42 +01:00
|
|
|
strcpy (de->d_name, proc_tab[dir->__d_position++].name);
|
2006-01-27 22:50:42 +01:00
|
|
|
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
|
2005-08-20 08:19:55 +02:00
|
|
|
res = 0;
|
|
|
|
}
|
|
|
|
else
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2005-05-19 03:25:20 +02:00
|
|
|
winpids pids ((DWORD) 0);
|
2002-05-02 06:26:05 +02:00
|
|
|
int found = 0;
|
2005-08-20 08:19:55 +02:00
|
|
|
res = ENMFILE;
|
2002-05-02 06:26:05 +02:00
|
|
|
for (unsigned i = 0; i < pids.npids; i++)
|
2002-06-02 08:07:01 +02:00
|
|
|
if (found++ == dir->__d_position - PROC_LINK_COUNT)
|
|
|
|
{
|
2005-08-20 08:19:55 +02:00
|
|
|
__small_sprintf (de->d_name, "%d", pids[i]->pid);
|
2002-06-02 08:07:01 +02:00
|
|
|
dir->__d_position++;
|
2005-08-20 08:19:55 +02:00
|
|
|
res = 0;
|
|
|
|
break;
|
2002-06-02 08:07:01 +02:00
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
2005-08-20 08:19:55 +02:00
|
|
|
syscall_printf ("%d = readdir (%p, %p) (%s)", res, dir, de, de->d_name);
|
|
|
|
return res;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
* 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
|
|
|
fhandler_proc::open (int flags, mode_t mode)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
int proc_file_no = -1;
|
|
|
|
|
* 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
|
|
|
int res = fhandler_virtual::open (flags, mode);
|
2002-05-02 06:26:05 +02:00
|
|
|
if (!res)
|
|
|
|
goto out;
|
|
|
|
|
2004-04-10 15:45:10 +02:00
|
|
|
nohandle (true);
|
2002-07-02 03:36:15 +02:00
|
|
|
|
2002-05-02 06:26:05 +02:00
|
|
|
const char *path;
|
|
|
|
|
2002-05-03 04:43:45 +02:00
|
|
|
path = get_name () + proc_len;
|
2002-05-02 06:26:05 +02:00
|
|
|
|
|
|
|
if (!*path)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EEXIST);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
else if (flags & O_WRONLY)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
flags |= O_DIROPEN;
|
|
|
|
goto success;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
proc_file_no = -1;
|
2009-01-17 11:16:42 +01:00
|
|
|
for (int i = 0; proc_tab[i].name; i++)
|
|
|
|
if (path_prefix_p (proc_tab[i].name, path + 1, strlen (proc_tab[i].name),
|
2008-07-16 22:20:45 +02:00
|
|
|
false))
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2002-05-28 03:55:40 +02:00
|
|
|
proc_file_no = i;
|
2009-01-17 11:16:42 +01:00
|
|
|
if (proc_tab[i].fhandler != FH_PROC)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
|
|
|
{
|
|
|
|
set_errno (EEXIST);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else if (flags & O_WRONLY)
|
|
|
|
{
|
|
|
|
set_errno (EISDIR);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flags |= O_DIROPEN;
|
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (proc_file_no == -1)
|
|
|
|
{
|
2002-05-04 05:24:35 +02:00
|
|
|
if (flags & O_CREAT)
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (EROFS);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
else
|
2002-05-28 03:55:40 +02:00
|
|
|
{
|
|
|
|
set_errno (ENOENT);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
2002-05-04 05:24:35 +02:00
|
|
|
if (flags & O_WRONLY)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
|
|
|
set_errno (EROFS);
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2002-05-12 03:37:48 +02:00
|
|
|
|
|
|
|
fileid = proc_file_no;
|
2002-07-02 03:36:15 +02:00
|
|
|
if (!fill_filebuf ())
|
|
|
|
{
|
|
|
|
res = 0;
|
|
|
|
goto out;
|
2009-01-17 11:16:42 +01:00
|
|
|
}
|
2002-05-12 03:37:48 +02:00
|
|
|
|
|
|
|
if (flags & O_APPEND)
|
|
|
|
position = filesize;
|
|
|
|
else
|
|
|
|
position = 0;
|
|
|
|
|
|
|
|
success:
|
|
|
|
res = 1;
|
2002-07-01 21:03:26 +02:00
|
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
2002-05-12 03:37:48 +02:00
|
|
|
set_open_status ();
|
|
|
|
out:
|
|
|
|
syscall_printf ("%d = fhandler_proc::open (%p, %d)", res, flags, mode);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-07-02 03:36:15 +02:00
|
|
|
bool
|
2002-05-12 03:37:48 +02:00
|
|
|
fhandler_proc::fill_filebuf ()
|
|
|
|
{
|
2009-01-17 11:16:42 +01:00
|
|
|
if (fileid < PROC_LINK_COUNT && proc_tab[fileid].format_func)
|
2002-05-02 06:26:05 +02:00
|
|
|
{
|
2009-01-20 18:22:11 +01:00
|
|
|
filesize = proc_tab[fileid].format_func (NULL, filebuf);
|
2009-01-17 11:16:42 +01:00
|
|
|
return true;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
2009-01-17 11:16:42 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_version (void *, char *&destbuf)
|
2009-01-17 11:16:42 +01:00
|
|
|
{
|
|
|
|
struct utsname uts_name;
|
|
|
|
|
|
|
|
uname (&uts_name);
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, strlen (uts_name.sysname)
|
|
|
|
+ strlen (uts_name.release)
|
|
|
|
+ strlen (uts_name.version)
|
|
|
|
+ 4);
|
2009-01-17 11:16:42 +01:00
|
|
|
return __small_sprintf (destbuf, "%s %s %s\n",
|
|
|
|
uts_name.sysname, uts_name.release, uts_name.version);
|
|
|
|
}
|
|
|
|
|
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_loadavg (void *, char *&destbuf)
|
2009-01-17 11:16:42 +01:00
|
|
|
{
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, 16);
|
2009-01-17 11:16:42 +01:00
|
|
|
return __small_sprintf (destbuf, "%u.%02u %u.%02u %u.%02u\n",
|
|
|
|
0, 0, 0, 0, 0, 0);
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
2002-05-02 06:26:05 +02:00
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_meminfo (void *, char *&destbuf)
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
|
|
|
unsigned long mem_total = 0UL, mem_free = 0UL, swap_total = 0UL,
|
2002-05-28 03:55:40 +02:00
|
|
|
swap_free = 0UL;
|
2002-05-12 03:37:48 +02:00
|
|
|
MEMORYSTATUS memory_status;
|
|
|
|
GlobalMemoryStatus (&memory_status);
|
|
|
|
mem_total = memory_status.dwTotalPhys;
|
|
|
|
mem_free = memory_status.dwAvailPhys;
|
2004-03-18 13:28:47 +01:00
|
|
|
PSYSTEM_PAGEFILE_INFORMATION spi = NULL;
|
|
|
|
ULONG size = 512;
|
2004-07-19 15:13:48 +02:00
|
|
|
NTSTATUS ret = STATUS_SUCCESS;
|
2009-01-20 18:22:11 +01:00
|
|
|
|
2004-03-18 13:28:47 +01:00
|
|
|
spi = (PSYSTEM_PAGEFILE_INFORMATION) malloc (size);
|
|
|
|
if (spi)
|
|
|
|
{
|
|
|
|
ret = NtQuerySystemInformation (SystemPagefileInformation, (PVOID) spi,
|
|
|
|
size, &size);
|
|
|
|
if (ret == STATUS_INFO_LENGTH_MISMATCH)
|
2004-05-28 21:50:07 +02:00
|
|
|
{
|
2004-03-18 13:28:47 +01:00
|
|
|
free (spi);
|
|
|
|
spi = (PSYSTEM_PAGEFILE_INFORMATION) malloc (size);
|
|
|
|
if (spi)
|
|
|
|
ret = NtQuerySystemInformation (SystemPagefileInformation,
|
|
|
|
(PVOID) spi, size, &size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!spi || ret || (!ret && GetLastError () == ERROR_PROC_NOT_FOUND))
|
|
|
|
{
|
|
|
|
swap_total = memory_status.dwTotalPageFile - mem_total;
|
|
|
|
swap_free = memory_status.dwAvailPageFile - mem_total;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PSYSTEM_PAGEFILE_INFORMATION spp = spi;
|
|
|
|
do
|
2004-05-28 21:50:07 +02:00
|
|
|
{
|
2005-11-28 23:32:29 +01:00
|
|
|
swap_total += spp->CurrentSize * getsystempagesize ();
|
|
|
|
swap_free += (spp->CurrentSize - spp->TotalUsed)
|
|
|
|
* getsystempagesize ();
|
2004-03-18 13:28:47 +01:00
|
|
|
}
|
|
|
|
while (spp->NextEntryOffset
|
|
|
|
&& (spp = (PSYSTEM_PAGEFILE_INFORMATION)
|
|
|
|
((char *) spp + spp->NextEntryOffset)));
|
|
|
|
}
|
|
|
|
if (spi)
|
|
|
|
free (spi);
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, 512);
|
2002-05-12 03:37:48 +02:00
|
|
|
return __small_sprintf (destbuf, " total: used: free:\n"
|
2002-05-28 03:55:40 +02:00
|
|
|
"Mem: %10lu %10lu %10lu\n"
|
|
|
|
"Swap: %10lu %10lu %10lu\n"
|
|
|
|
"MemTotal: %10lu kB\n"
|
|
|
|
"MemFree: %10lu kB\n"
|
|
|
|
"MemShared: 0 kB\n"
|
|
|
|
"HighTotal: 0 kB\n"
|
|
|
|
"HighFree: 0 kB\n"
|
|
|
|
"LowTotal: %10lu kB\n"
|
|
|
|
"LowFree: %10lu kB\n"
|
|
|
|
"SwapTotal: %10lu kB\n"
|
|
|
|
"SwapFree: %10lu kB\n",
|
|
|
|
mem_total, mem_total - mem_free, mem_free,
|
|
|
|
swap_total, swap_total - swap_free, swap_free,
|
|
|
|
mem_total >> 10, mem_free >> 10,
|
|
|
|
mem_total >> 10, mem_free >> 10,
|
|
|
|
swap_total >> 10, swap_free >> 10);
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_uptime (void *, char *&destbuf)
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
|
|
|
unsigned long long uptime = 0ULL, idle_time = 0ULL;
|
|
|
|
|
2007-02-22 11:54:47 +01:00
|
|
|
NTSTATUS ret;
|
|
|
|
SYSTEM_BASIC_INFORMATION sbi;
|
2007-03-07 15:03:29 +01:00
|
|
|
SYSTEM_TIME_OF_DAY_INFORMATION stodi;
|
|
|
|
SYSTEM_PERFORMANCE_INFORMATION spi;
|
2007-02-22 11:54:47 +01:00
|
|
|
|
|
|
|
ret = NtQuerySystemInformation (SystemBasicInformation, (PVOID) &sbi,
|
|
|
|
sizeof sbi, NULL);
|
|
|
|
if (!NT_SUCCESS (ret))
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
debug_printf ("NtQuerySystemInformation: ret %d", ret);
|
2007-02-22 11:54:47 +01:00
|
|
|
sbi.NumberProcessors = 1;
|
|
|
|
}
|
2005-12-12 13:18:14 +01:00
|
|
|
|
2007-03-07 15:03:29 +01:00
|
|
|
ret = NtQuerySystemInformation (SystemTimeOfDayInformation, &stodi,
|
|
|
|
sizeof stodi, NULL);
|
2007-02-22 11:54:47 +01:00
|
|
|
if (NT_SUCCESS (ret))
|
2007-03-07 15:03:29 +01:00
|
|
|
uptime = (stodi.CurrentTime.QuadPart - stodi.BootTime.QuadPart) / 100000ULL;
|
2005-12-12 13:18:14 +01:00
|
|
|
|
2007-03-07 15:03:29 +01:00
|
|
|
ret = NtQuerySystemInformation (SystemPerformanceInformation, &spi,
|
|
|
|
sizeof spi, NULL);
|
|
|
|
if (NT_SUCCESS (ret))
|
|
|
|
idle_time = (spi.IdleTime.QuadPart / sbi.NumberProcessors) / 100000ULL;
|
2002-05-02 06:26:05 +02:00
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, 80);
|
2002-05-12 03:37:48 +02:00
|
|
|
return __small_sprintf (destbuf, "%U.%02u %U.%02u\n",
|
2002-05-28 03:55:40 +02:00
|
|
|
uptime / 100, long (uptime % 100),
|
|
|
|
idle_time / 100, long (idle_time % 100));
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_stat (void *, char *&destbuf)
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
|
|
|
unsigned long pages_in = 0UL, pages_out = 0UL, interrupt_count = 0UL,
|
2002-05-28 03:55:40 +02:00
|
|
|
context_switches = 0UL, swap_in = 0UL, swap_out = 0UL;
|
2002-05-12 03:37:48 +02:00
|
|
|
time_t boot_time = 0;
|
2007-02-22 11:54:47 +01:00
|
|
|
NTSTATUS ret;
|
|
|
|
SYSTEM_PERFORMANCE_INFORMATION spi;
|
|
|
|
SYSTEM_TIME_OF_DAY_INFORMATION stodi;
|
|
|
|
SYSTEM_BASIC_INFORMATION sbi;
|
2009-01-20 18:22:11 +01:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
|
|
|
|
char *buf = tp.c_get ();
|
|
|
|
char *eobuf = buf;
|
|
|
|
|
2007-02-22 11:54:47 +01:00
|
|
|
if ((ret = NtQuerySystemInformation (SystemBasicInformation,
|
|
|
|
(PVOID) &sbi, sizeof sbi, NULL))
|
|
|
|
!= STATUS_SUCCESS)
|
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
debug_printf ("NtQuerySystemInformation: ret %d", ret);
|
2007-02-22 11:54:47 +01:00
|
|
|
sbi.NumberProcessors = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSTEM_PROCESSOR_TIMES spt[sbi.NumberProcessors];
|
|
|
|
ret = NtQuerySystemInformation (SystemProcessorTimes, (PVOID) spt,
|
|
|
|
sizeof spt[0] * sbi.NumberProcessors, NULL);
|
|
|
|
interrupt_count = 0;
|
|
|
|
if (ret == STATUS_SUCCESS)
|
2002-05-12 03:37:48 +02:00
|
|
|
{
|
2007-02-22 11:54:47 +01:00
|
|
|
unsigned long long user_time = 0ULL, kernel_time = 0ULL, idle_time = 0ULL;
|
|
|
|
for (int i = 0; i < sbi.NumberProcessors; i++)
|
2003-07-10 03:09:24 +02:00
|
|
|
{
|
2007-02-22 11:54:47 +01:00
|
|
|
kernel_time += (spt[i].KernelTime.QuadPart - spt[i].IdleTime.QuadPart)
|
|
|
|
* HZ / 10000000ULL;
|
|
|
|
user_time += spt[i].UserTime.QuadPart * HZ / 10000000ULL;
|
|
|
|
idle_time += spt[i].IdleTime.QuadPart * HZ / 10000000ULL;
|
2003-07-10 03:09:24 +02:00
|
|
|
}
|
|
|
|
|
2007-02-22 11:54:47 +01:00
|
|
|
eobuf += __small_sprintf (eobuf, "cpu %U %U %U %U\n",
|
|
|
|
user_time, 0ULL, kernel_time, idle_time);
|
|
|
|
user_time = 0ULL, kernel_time = 0ULL, idle_time = 0ULL;
|
|
|
|
for (int i = 0; i < sbi.NumberProcessors; i++)
|
2003-07-10 03:09:24 +02:00
|
|
|
{
|
2007-02-22 11:54:47 +01:00
|
|
|
interrupt_count += spt[i].InterruptCount;
|
|
|
|
kernel_time = (spt[i].KernelTime.QuadPart - spt[i].IdleTime.QuadPart) * HZ / 10000000ULL;
|
|
|
|
user_time = spt[i].UserTime.QuadPart * HZ / 10000000ULL;
|
|
|
|
idle_time = spt[i].IdleTime.QuadPart * HZ / 10000000ULL;
|
|
|
|
eobuf += __small_sprintf (eobuf, "cpu%d %U %U %U %U\n", i,
|
2003-07-10 03:09:24 +02:00
|
|
|
user_time, 0ULL, kernel_time, idle_time);
|
2002-05-28 03:55:40 +02:00
|
|
|
}
|
2007-02-22 11:54:47 +01:00
|
|
|
|
|
|
|
ret = NtQuerySystemInformation (SystemPerformanceInformation,
|
|
|
|
(PVOID) &spi, sizeof spi, NULL);
|
2002-05-12 03:37:48 +02:00
|
|
|
}
|
2007-02-22 11:54:47 +01:00
|
|
|
if (ret == STATUS_SUCCESS)
|
|
|
|
ret = NtQuerySystemInformation (SystemTimeOfDayInformation,
|
|
|
|
(PVOID) &stodi,
|
|
|
|
sizeof stodi, NULL);
|
|
|
|
if (ret != STATUS_SUCCESS)
|
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
debug_printf ("NtQuerySystemInformation: ret %d", ret);
|
2007-02-22 11:54:47 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pages_in = spi.PagesRead;
|
|
|
|
pages_out = spi.PagefilePagesWritten + spi.MappedFilePagesWritten;
|
2002-05-12 03:37:48 +02:00
|
|
|
/*
|
2007-02-22 11:54:47 +01:00
|
|
|
* Note: there is no distinction made in this structure between pages
|
|
|
|
* read from the page file and pages read from mapped files, but there
|
|
|
|
* is such a distinction made when it comes to writing. Goodness knows
|
|
|
|
* why. The value of swap_in, then, will obviously be wrong but its our
|
|
|
|
* best guess.
|
2002-05-12 03:37:48 +02:00
|
|
|
*/
|
2007-02-22 11:54:47 +01:00
|
|
|
swap_in = spi.PagesRead;
|
|
|
|
swap_out = spi.PagefilePagesWritten;
|
|
|
|
context_switches = spi.ContextSwitches;
|
|
|
|
boot_time = to_time_t ((FILETIME *) &stodi.BootTime.QuadPart);
|
|
|
|
|
2003-07-10 03:09:24 +02:00
|
|
|
eobuf += __small_sprintf (eobuf, "page %u %u\n"
|
2002-05-28 03:55:40 +02:00
|
|
|
"swap %u %u\n"
|
|
|
|
"intr %u\n"
|
|
|
|
"ctxt %u\n"
|
|
|
|
"btime %u\n",
|
2003-07-10 03:09:24 +02:00
|
|
|
pages_in, pages_out,
|
|
|
|
swap_in, swap_out,
|
|
|
|
interrupt_count,
|
|
|
|
context_switches,
|
|
|
|
boot_time);
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, eobuf - buf);
|
|
|
|
memcpy (destbuf, buf, eobuf - buf);
|
|
|
|
return eobuf - buf;
|
2002-05-02 06:26:05 +02:00
|
|
|
}
|
2003-03-09 21:10:25 +01:00
|
|
|
|
|
|
|
#define read_value(x,y) \
|
|
|
|
do {\
|
|
|
|
dwCount = BUFSIZE; \
|
|
|
|
if ((dwError = RegQueryValueEx (hKey, x, NULL, &dwType, (BYTE *) szBuffer, &dwCount)), \
|
|
|
|
(dwError != ERROR_SUCCESS && dwError != ERROR_MORE_DATA)) \
|
|
|
|
{ \
|
|
|
|
debug_printf ("RegQueryValueEx failed retcode %d", dwError); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
|
|
|
if (dwType != y) \
|
|
|
|
{ \
|
|
|
|
debug_printf ("Value %s had an unexpected type (expected %d, found %d)", y, dwType); \
|
|
|
|
return 0; \
|
|
|
|
}\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define print(x) \
|
|
|
|
do { \
|
|
|
|
strcpy (bufptr, x), \
|
|
|
|
bufptr += sizeof (x) - 1; \
|
|
|
|
} while (0)
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_cpuinfo (void *, char *&destbuf)
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
|
|
|
SYSTEM_INFO siSystemInfo;
|
|
|
|
HKEY hKey;
|
|
|
|
DWORD dwError, dwCount, dwType;
|
|
|
|
DWORD dwOldThreadAffinityMask;
|
|
|
|
int cpu_number;
|
|
|
|
const int BUFSIZE = 256;
|
|
|
|
CHAR szBuffer[BUFSIZE];
|
2009-01-20 18:22:11 +01:00
|
|
|
tmp_pathbuf tp;
|
2003-03-09 21:10:25 +01:00
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
char *buf = tp.c_get ();
|
|
|
|
char *bufptr = buf;
|
2003-03-09 21:10:25 +01:00
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
GetSystemInfo (&siSystemInfo);
|
2005-10-02 02:13:41 +02:00
|
|
|
for (cpu_number = 0; ; cpu_number++)
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
if (cpu_number)
|
2007-07-07 18:46:35 +02:00
|
|
|
print ("\n");
|
2007-03-07 15:03:29 +01:00
|
|
|
|
2003-03-09 21:10:25 +01:00
|
|
|
__small_sprintf (szBuffer, "HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\%d", cpu_number);
|
|
|
|
|
|
|
|
if ((dwError = RegOpenKeyEx (HKEY_LOCAL_MACHINE, szBuffer, 0, KEY_QUERY_VALUE, &hKey)) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (dwError == ERROR_FILE_NOT_FOUND)
|
|
|
|
break;
|
|
|
|
debug_printf ("RegOpenKeyEx failed retcode %d", dwError);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dwOldThreadAffinityMask = SetThreadAffinityMask (GetCurrentThread (), 1 << cpu_number);
|
|
|
|
if (dwOldThreadAffinityMask == 0)
|
|
|
|
debug_printf ("SetThreadAffinityMask failed %E");
|
|
|
|
// I'm not sure whether the thread changes processor immediately
|
|
|
|
// and I'm not sure whether this function will cause the thread to be rescheduled
|
|
|
|
low_priority_sleep (0);
|
|
|
|
|
|
|
|
bool has_cpuid = false;
|
|
|
|
|
|
|
|
if (!can_set_flag (0x00040000))
|
|
|
|
debug_printf ("386 processor - no cpuid");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
debug_printf ("486 processor");
|
|
|
|
if (can_set_flag (0x00200000))
|
|
|
|
{
|
|
|
|
debug_printf ("processor supports CPUID instruction");
|
|
|
|
has_cpuid = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
debug_printf ("processor does not support CPUID instruction");
|
|
|
|
}
|
|
|
|
|
2003-03-18 10:30:03 +01:00
|
|
|
|
|
|
|
if (!has_cpuid)
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
|
|
|
bufptr += __small_sprintf (bufptr, "processor : %d\n", cpu_number);
|
|
|
|
read_value ("VendorIdentifier", REG_SZ);
|
2003-04-19 03:03:16 +02:00
|
|
|
bufptr += __small_sprintf (bufptr, "vendor_id : %s\n", szBuffer);
|
2003-03-09 21:10:25 +01:00
|
|
|
read_value ("Identifier", REG_SZ);
|
|
|
|
bufptr += __small_sprintf (bufptr, "identifier : %s\n", szBuffer);
|
2007-02-22 11:54:47 +01:00
|
|
|
read_value ("~Mhz", REG_DWORD);
|
|
|
|
bufptr += __small_sprintf (bufptr, "cpu MHz : %u\n", *(DWORD *) szBuffer);
|
|
|
|
|
|
|
|
print ("flags :");
|
|
|
|
if (IsProcessorFeaturePresent (PF_3DNOW_INSTRUCTIONS_AVAILABLE))
|
|
|
|
print (" 3dnow");
|
|
|
|
if (IsProcessorFeaturePresent (PF_COMPARE_EXCHANGE_DOUBLE))
|
|
|
|
print (" cx8");
|
|
|
|
if (!IsProcessorFeaturePresent (PF_FLOATING_POINT_EMULATED))
|
|
|
|
print (" fpu");
|
|
|
|
if (IsProcessorFeaturePresent (PF_MMX_INSTRUCTIONS_AVAILABLE))
|
|
|
|
print (" mmx");
|
|
|
|
if (IsProcessorFeaturePresent (PF_PAE_ENABLED))
|
|
|
|
print (" pae");
|
|
|
|
if (IsProcessorFeaturePresent (PF_RDTSC_INSTRUCTION_AVAILABLE))
|
|
|
|
print (" tsc");
|
|
|
|
if (IsProcessorFeaturePresent (PF_XMMI_INSTRUCTIONS_AVAILABLE))
|
|
|
|
print (" sse");
|
|
|
|
if (IsProcessorFeaturePresent (PF_XMMI64_INSTRUCTIONS_AVAILABLE))
|
|
|
|
print (" sse2");
|
2003-07-26 06:53:59 +02:00
|
|
|
}
|
2003-03-09 21:10:25 +01:00
|
|
|
else
|
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
bufptr += __small_sprintf (bufptr, "processor\t: %d\n", cpu_number);
|
2003-03-09 21:10:25 +01:00
|
|
|
unsigned maxf, vendor_id[4], unused;
|
2003-03-13 23:32:40 +01:00
|
|
|
cpuid (&maxf, &vendor_id[0], &vendor_id[2], &vendor_id[1], 0);
|
2003-03-09 21:10:25 +01:00
|
|
|
maxf &= 0xffff;
|
|
|
|
vendor_id[3] = 0;
|
2004-07-26 15:19:03 +02:00
|
|
|
|
2004-06-23 18:09:32 +02:00
|
|
|
// vendor identification
|
|
|
|
bool is_amd = false, is_intel = false;
|
|
|
|
if (!strcmp ((char*)vendor_id, "AuthenticAMD"))
|
|
|
|
is_amd = true;
|
|
|
|
else if (!strcmp ((char*)vendor_id, "GenuineIntel"))
|
|
|
|
is_intel = true;
|
2004-07-26 15:19:03 +02:00
|
|
|
|
2007-03-07 15:03:29 +01:00
|
|
|
bufptr += __small_sprintf (bufptr, "vendor_id\t: %s\n",
|
2007-02-22 11:54:47 +01:00
|
|
|
(char *)vendor_id);
|
|
|
|
read_value ("~Mhz", REG_DWORD);
|
|
|
|
unsigned cpu_mhz = *(DWORD *)szBuffer;
|
2003-03-09 21:10:25 +01:00
|
|
|
if (maxf >= 1)
|
|
|
|
{
|
|
|
|
unsigned features2, features1, extra_info, cpuid_sig;
|
|
|
|
cpuid (&cpuid_sig, &extra_info, &features2, &features1, 1);
|
|
|
|
/* unsigned extended_family = (cpuid_sig & 0x0ff00000) >> 20,
|
2007-03-07 15:03:29 +01:00
|
|
|
extended_model = (cpuid_sig & 0x000f0000) >> 16,
|
|
|
|
type = (cpuid_sig & 0x00003000) >> 12; */
|
|
|
|
unsigned family = (cpuid_sig & 0x00000f00) >> 8,
|
2004-05-28 21:50:07 +02:00
|
|
|
model = (cpuid_sig & 0x000000f0) >> 4,
|
|
|
|
stepping = cpuid_sig & 0x0000000f;
|
2007-03-07 15:03:29 +01:00
|
|
|
/* Not printed on Linux */
|
|
|
|
//unsigned brand_id = extra_info & 0x0000000f;
|
|
|
|
//unsigned cpu_count = (extra_info & 0x00ff0000) >> 16;
|
|
|
|
unsigned apic_id = (extra_info & 0xff000000) >> 24;
|
|
|
|
if (family == 15)
|
2007-07-07 18:46:35 +02:00
|
|
|
family += (cpuid_sig >> 20) & 0xff;
|
2007-03-07 15:03:29 +01:00
|
|
|
if (family >= 6)
|
2007-07-07 18:46:35 +02:00
|
|
|
model += ((cpuid_sig >> 16) & 0x0f) << 4;
|
2003-03-09 21:10:25 +01:00
|
|
|
unsigned maxe = 0;
|
|
|
|
cpuid (&maxe, &unused, &unused, &unused, 0x80000000);
|
|
|
|
if (maxe >= 0x80000004)
|
|
|
|
{
|
|
|
|
unsigned *model_name = (unsigned *) szBuffer;
|
2007-02-22 11:54:47 +01:00
|
|
|
cpuid (&model_name[0], &model_name[1], &model_name[2],
|
|
|
|
&model_name[3], 0x80000002);
|
|
|
|
cpuid (&model_name[4], &model_name[5], &model_name[6],
|
|
|
|
&model_name[7], 0x80000003);
|
|
|
|
cpuid (&model_name[8], &model_name[9], &model_name[10],
|
|
|
|
&model_name[11], 0x80000004);
|
2003-03-09 21:10:25 +01:00
|
|
|
model_name[12] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// could implement a lookup table here if someone needs it
|
|
|
|
strcpy (szBuffer, "unknown");
|
|
|
|
}
|
2007-03-07 15:03:29 +01:00
|
|
|
int cache_size = -1,
|
|
|
|
tlb_size = -1,
|
|
|
|
clflush = 64,
|
|
|
|
cache_alignment = 64;
|
|
|
|
if (features1 & (1 << 19)) // CLFSH
|
2007-07-07 18:46:35 +02:00
|
|
|
clflush = ((extra_info >> 8) & 0xff) << 3;
|
2007-03-07 15:03:29 +01:00
|
|
|
if (is_intel && family == 15)
|
2007-07-07 18:46:35 +02:00
|
|
|
cache_alignment = clflush * 2;
|
2007-03-07 15:03:29 +01:00
|
|
|
if (maxe >= 0x80000005) // L1 Cache and TLB Identifiers
|
2007-07-07 18:46:35 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
unsigned data_cache, inst_cache;
|
|
|
|
cpuid (&unused, &unused, &data_cache, &inst_cache,
|
|
|
|
0x80000005);
|
|
|
|
|
|
|
|
cache_size = (inst_cache >> 24) + (data_cache >> 24);
|
|
|
|
tlb_size = 0;
|
|
|
|
}
|
|
|
|
if (maxe >= 0x80000006) // L2 Cache and L2 TLB Identifiers
|
2007-07-07 18:46:35 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
unsigned tlb, l2;
|
|
|
|
cpuid (&unused, &tlb, &l2, &unused, 0x80000006);
|
|
|
|
|
|
|
|
cache_size = l2 >> 16;
|
|
|
|
tlb_size = ((tlb >> 16) & 0xfff) + (tlb & 0xfff);
|
|
|
|
}
|
|
|
|
bufptr += __small_sprintf (bufptr, "cpu family\t: %d\n"
|
|
|
|
"model\t\t: %d\n"
|
|
|
|
"model name\t: %s\n"
|
|
|
|
"stepping\t: %d\n"
|
|
|
|
"cpu MHz\t\t: %d\n",
|
2007-02-22 11:54:47 +01:00
|
|
|
family,
|
|
|
|
model,
|
|
|
|
szBuffer + strspn (szBuffer, " "),
|
|
|
|
stepping,
|
2007-03-07 15:03:29 +01:00
|
|
|
cpu_mhz);
|
|
|
|
if (cache_size >= 0)
|
2007-07-07 18:46:35 +02:00
|
|
|
bufptr += __small_sprintf (bufptr, "cache size\t: %d KB\n",
|
2007-03-07 15:03:29 +01:00
|
|
|
cache_size);
|
|
|
|
|
|
|
|
// Recognize multi-core CPUs
|
|
|
|
if (is_amd && maxe >= 0x80000008)
|
2007-07-07 18:46:35 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
unsigned core_info;
|
|
|
|
cpuid (&unused, &unused, &core_info, &unused, 0x80000008);
|
|
|
|
|
|
|
|
int max_cores = 1 + (core_info & 0xff);
|
|
|
|
if (max_cores > 1)
|
|
|
|
{
|
|
|
|
int shift = (core_info >> 12) & 0x0f;
|
|
|
|
if (!shift)
|
|
|
|
while ((1 << shift) < max_cores)
|
|
|
|
++shift;
|
|
|
|
int core_id = apic_id & ((1 << shift) - 1);
|
|
|
|
apic_id >>= shift;
|
|
|
|
|
|
|
|
bufptr += __small_sprintf (bufptr, "physical id\t: %d\n"
|
|
|
|
"core id\t\t: %d\n"
|
|
|
|
"cpu cores\t: %d\n",
|
|
|
|
apic_id, core_id, max_cores);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Recognize Intel Hyper-Transport CPUs
|
|
|
|
else if (is_intel && (features1 & (1 << 28)) && maxf >= 4)
|
2007-07-07 18:46:35 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
bufptr += __small_sprintf (bufptr, "fpu\t\t: %s\n"
|
2007-07-07 18:46:35 +02:00
|
|
|
"fpu_exception\t: %s\n"
|
2007-03-07 15:03:29 +01:00
|
|
|
"cpuid level\t: %d\n"
|
|
|
|
"wp\t\t: yes\n",
|
|
|
|
(features1 & (1 << 0)) ? "yes" : "no",
|
|
|
|
(features1 & (1 << 0)) ? "yes" : "no",
|
|
|
|
maxf);
|
|
|
|
print ("flags\t\t:");
|
2003-03-09 21:10:25 +01:00
|
|
|
if (features1 & (1 << 0))
|
|
|
|
print (" fpu");
|
|
|
|
if (features1 & (1 << 1))
|
|
|
|
print (" vme");
|
|
|
|
if (features1 & (1 << 2))
|
|
|
|
print (" de");
|
|
|
|
if (features1 & (1 << 3))
|
|
|
|
print (" pse");
|
|
|
|
if (features1 & (1 << 4))
|
|
|
|
print (" tsc");
|
|
|
|
if (features1 & (1 << 5))
|
|
|
|
print (" msr");
|
|
|
|
if (features1 & (1 << 6))
|
|
|
|
print (" pae");
|
|
|
|
if (features1 & (1 << 7))
|
|
|
|
print (" mce");
|
|
|
|
if (features1 & (1 << 8))
|
|
|
|
print (" cx8");
|
|
|
|
if (features1 & (1 << 9))
|
|
|
|
print (" apic");
|
|
|
|
if (features1 & (1 << 11))
|
|
|
|
print (" sep");
|
|
|
|
if (features1 & (1 << 12))
|
|
|
|
print (" mtrr");
|
|
|
|
if (features1 & (1 << 13))
|
|
|
|
print (" pge");
|
|
|
|
if (features1 & (1 << 14))
|
|
|
|
print (" mca");
|
|
|
|
if (features1 & (1 << 15))
|
|
|
|
print (" cmov");
|
|
|
|
if (features1 & (1 << 16))
|
|
|
|
print (" pat");
|
|
|
|
if (features1 & (1 << 17))
|
|
|
|
print (" pse36");
|
|
|
|
if (features1 & (1 << 18))
|
2007-03-07 15:03:29 +01:00
|
|
|
print (" pn");
|
2003-03-09 21:10:25 +01:00
|
|
|
if (features1 & (1 << 19))
|
2007-03-07 15:03:29 +01:00
|
|
|
print (" clflush");
|
2004-07-26 15:19:03 +02:00
|
|
|
if (is_intel && features1 & (1 << 21))
|
2007-03-07 15:03:29 +01:00
|
|
|
print (" dts");
|
2004-07-26 15:19:03 +02:00
|
|
|
if (is_intel && features1 & (1 << 22))
|
2003-03-09 21:10:25 +01:00
|
|
|
print (" acpi");
|
|
|
|
if (features1 & (1 << 23))
|
|
|
|
print (" mmx");
|
|
|
|
if (features1 & (1 << 24))
|
|
|
|
print (" fxsr");
|
|
|
|
if (features1 & (1 << 25))
|
|
|
|
print (" sse");
|
2007-03-07 15:03:29 +01:00
|
|
|
if (features1 & (1 << 26))
|
|
|
|
print (" sse2");
|
|
|
|
if (is_intel && (features1 & (1 << 27)))
|
|
|
|
print (" ss");
|
|
|
|
if (features1 & (1 << 28))
|
|
|
|
print (" ht");
|
2004-07-26 15:19:03 +02:00
|
|
|
if (is_intel)
|
2004-09-12 05:47:57 +02:00
|
|
|
{
|
|
|
|
if (features1 & (1 << 29))
|
2007-03-07 15:03:29 +01:00
|
|
|
print (" tm");
|
2004-09-12 05:47:57 +02:00
|
|
|
if (features1 & (1 << 30))
|
2007-03-07 15:03:29 +01:00
|
|
|
print (" ia64");
|
2004-09-12 05:47:57 +02:00
|
|
|
if (features1 & (1 << 31))
|
2004-07-26 15:19:03 +02:00
|
|
|
print (" pbe");
|
2007-03-07 15:03:29 +01:00
|
|
|
}
|
2004-07-26 15:19:03 +02:00
|
|
|
|
2007-03-07 15:03:29 +01:00
|
|
|
if (is_amd && maxe >= 0x80000001)
|
|
|
|
{
|
|
|
|
unsigned features;
|
|
|
|
cpuid (&unused, &unused, &unused, &features, 0x80000001);
|
|
|
|
|
|
|
|
if (features & (1 << 11))
|
|
|
|
print (" syscall");
|
|
|
|
if (features & (1 << 19)) // Huh? Not in AMD64 specs.
|
|
|
|
print (" mp");
|
|
|
|
if (features & (1 << 20))
|
|
|
|
print (" nx");
|
|
|
|
if (features & (1 << 22))
|
|
|
|
print (" mmxext");
|
|
|
|
if (features & (1 << 25))
|
|
|
|
print (" fxsr_opt");
|
|
|
|
if (features & (1 << 27))
|
|
|
|
print (" rdtscp");
|
|
|
|
if (features & (1 << 29))
|
|
|
|
print (" lm");
|
|
|
|
if (features & (1 << 30)) // 31th bit is on
|
|
|
|
print (" 3dnowext");
|
|
|
|
if (features & (1 << 31)) // 32th bit (highest) is on
|
|
|
|
print (" 3dnow");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (features2 & (1 << 0))
|
|
|
|
print (" pni");
|
|
|
|
if (is_intel)
|
|
|
|
{
|
2004-09-12 05:47:57 +02:00
|
|
|
if (features2 & (1 << 3))
|
2004-07-26 15:19:03 +02:00
|
|
|
print (" monitor");
|
2004-09-12 05:47:57 +02:00
|
|
|
if (features2 & (1 << 4))
|
2004-07-26 15:19:03 +02:00
|
|
|
print (" ds_cpl");
|
|
|
|
if (features2 & (1 << 7))
|
|
|
|
print (" tm2");
|
2004-09-12 05:47:57 +02:00
|
|
|
if (features2 & (1 << 8))
|
2004-07-26 15:19:03 +02:00
|
|
|
print (" est");
|
2007-03-07 15:03:29 +01:00
|
|
|
if (features2 & (1 << 10))
|
2004-07-26 15:19:03 +02:00
|
|
|
print (" cid");
|
2004-09-12 05:47:57 +02:00
|
|
|
}
|
2007-03-07 15:03:29 +01:00
|
|
|
if (features2 & (1 << 13))
|
|
|
|
print (" cx16");
|
2004-07-26 15:19:03 +02:00
|
|
|
|
|
|
|
if (is_amd && maxe >= 0x80000001)
|
2004-09-12 05:47:57 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
unsigned features;
|
|
|
|
cpuid (&unused, &unused, &features, &unused, 0x80000001);
|
|
|
|
|
|
|
|
if (features & (1 << 0))
|
|
|
|
print (" lahf_lm");
|
|
|
|
if (features & (1 << 1))
|
|
|
|
print (" cmp_legacy");
|
|
|
|
if (features & (1 << 2))
|
|
|
|
print (" svm");
|
|
|
|
if (features & (1 << 4))
|
|
|
|
print (" cr8_legacy");
|
|
|
|
}
|
2004-07-26 15:19:03 +02:00
|
|
|
|
2007-03-07 15:03:29 +01:00
|
|
|
print ("\n");
|
|
|
|
|
|
|
|
/* TODO: bogomips */
|
|
|
|
|
|
|
|
if (tlb_size >= 0)
|
2007-07-07 18:46:35 +02:00
|
|
|
bufptr += __small_sprintf (bufptr,
|
2007-03-07 15:03:29 +01:00
|
|
|
"TLB size\t: %d 4K pages\n",
|
|
|
|
tlb_size);
|
|
|
|
bufptr += __small_sprintf (bufptr, "clflush size\t: %d\n"
|
2007-07-07 18:46:35 +02:00
|
|
|
"cache_alignment\t: %d\n",
|
2007-03-07 15:03:29 +01:00
|
|
|
clflush,
|
|
|
|
cache_alignment);
|
|
|
|
|
|
|
|
if (maxe >= 0x80000008) // Address size
|
2007-07-07 18:46:35 +02:00
|
|
|
{
|
2007-03-07 15:03:29 +01:00
|
|
|
unsigned addr_size, phys, virt;
|
|
|
|
cpuid (&addr_size, &unused, &unused, &unused, 0x80000008);
|
|
|
|
|
|
|
|
phys = addr_size & 0xff;
|
|
|
|
virt = (addr_size >> 8) & 0xff;
|
|
|
|
/* Fix an errata on Intel CPUs */
|
|
|
|
if (is_intel && family == 15 && model == 3 && stepping == 4)
|
|
|
|
phys = 36;
|
|
|
|
bufptr += __small_sprintf (bufptr, "address sizes\t: "
|
|
|
|
"%u bits physical, "
|
|
|
|
"%u bits virtual\n",
|
|
|
|
phys, virt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxe >= 0x80000007) // advanced power management
|
|
|
|
{
|
|
|
|
cpuid (&unused, &unused, &unused, &features2, 0x80000007);
|
|
|
|
|
|
|
|
print ("power management:");
|
|
|
|
if (features2 & (1 << 0))
|
|
|
|
print (" ts");
|
|
|
|
if (features2 & (1 << 1))
|
|
|
|
print (" fid");
|
|
|
|
if (features2 & (1 << 2))
|
|
|
|
print (" vid");
|
|
|
|
if (features2 & (1 << 3))
|
|
|
|
print (" ttp");
|
|
|
|
if (features2 & (1 << 4))
|
|
|
|
print (" tm");
|
|
|
|
if (features2 & (1 << 5))
|
|
|
|
print (" stc");
|
2004-06-23 18:09:32 +02:00
|
|
|
}
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
2007-02-22 11:54:47 +01:00
|
|
|
else
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
|
|
|
bufptr += __small_sprintf (bufptr, "cpu MHz : %d\n"
|
|
|
|
"fpu : %s\n",
|
|
|
|
cpu_mhz,
|
|
|
|
IsProcessorFeaturePresent (PF_FLOATING_POINT_EMULATED) ? "no" : "yes");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dwOldThreadAffinityMask != 0)
|
|
|
|
SetThreadAffinityMask (GetCurrentThread (), dwOldThreadAffinityMask);
|
|
|
|
|
|
|
|
RegCloseKey (hKey);
|
|
|
|
bufptr += __small_sprintf (bufptr, "\n");
|
|
|
|
}
|
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, bufptr - buf);
|
|
|
|
memcpy (destbuf, buf, bufptr - buf);
|
|
|
|
return bufptr - buf;
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef read_value
|
|
|
|
|
2003-04-01 18:11:41 +02:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_partitions (void *, char *&destbuf)
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
2007-12-04 14:29:44 +01:00
|
|
|
char devname[NAME_MAX + 1];
|
2006-03-09 10:01:08 +01:00
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
HANDLE dirhdl, devhdl;
|
|
|
|
IO_STATUS_BLOCK io;
|
|
|
|
NTSTATUS status;
|
2009-01-20 18:22:11 +01:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
|
|
|
|
char *buf = tp.c_get ();
|
|
|
|
char *bufptr = buf;
|
2006-03-09 10:01:08 +01:00
|
|
|
|
|
|
|
/* Open \Device object directory. */
|
2007-12-04 14:29:44 +01:00
|
|
|
wchar_t wpath[MAX_PATH] = L"\\Device";
|
2006-03-09 10:01:08 +01:00
|
|
|
UNICODE_STRING upath = {14, 16, wpath};
|
|
|
|
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE, NULL, NULL);
|
|
|
|
status = NtOpenDirectoryObject (&dirhdl, DIRECTORY_QUERY, &attr);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
{
|
|
|
|
debug_printf ("NtOpenDirectoryObject %x", status);
|
2009-01-20 18:22:11 +01:00
|
|
|
return 0;
|
2006-03-09 10:01:08 +01:00
|
|
|
}
|
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
print ("major minor #blocks name\n\n");
|
2006-03-09 10:01:08 +01:00
|
|
|
/* Traverse \Device directory ... */
|
|
|
|
PDIRECTORY_BASIC_INFORMATION dbi = (PDIRECTORY_BASIC_INFORMATION)
|
|
|
|
alloca (640);
|
|
|
|
BOOLEAN restart = TRUE;
|
|
|
|
ULONG context = 0;
|
|
|
|
while (NT_SUCCESS (NtQueryDirectoryObject (dirhdl, dbi, 640, TRUE, restart,
|
|
|
|
&context, NULL)))
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
2006-03-09 10:01:08 +01:00
|
|
|
restart = FALSE;
|
2007-12-04 14:29:44 +01:00
|
|
|
sys_wcstombs (devname, NAME_MAX + 1, dbi->ObjectName.Buffer,
|
2006-03-09 10:01:08 +01:00
|
|
|
dbi->ObjectName.Length / 2);
|
|
|
|
/* ... and check for a "Harddisk[0-9]*" entry. */
|
|
|
|
if (!strncasematch (devname, "Harddisk", 8)
|
|
|
|
|| dbi->ObjectName.Length < 18
|
|
|
|
|| !isdigit (devname[8]))
|
|
|
|
continue;
|
|
|
|
/* Construct path name for partition 0, which is the whole disk,
|
2006-05-28 17:50:14 +02:00
|
|
|
and try to open. */
|
2006-03-09 10:01:08 +01:00
|
|
|
wcscpy (wpath, dbi->ObjectName.Buffer);
|
|
|
|
wcscpy (wpath + dbi->ObjectName.Length / 2, L"\\Partition0");
|
|
|
|
upath.Length = 22 + dbi->ObjectName.Length;
|
|
|
|
upath.MaximumLength = upath.Length + 2;
|
|
|
|
InitializeObjectAttributes (&attr, &upath, OBJ_CASE_INSENSITIVE,
|
|
|
|
dirhdl, NULL);
|
|
|
|
status = NtOpenFile (&devhdl, READ_CONTROL | FILE_READ_DATA, &attr, &io,
|
2007-02-22 12:17:01 +01:00
|
|
|
FILE_SHARE_VALID_FLAGS, 0);
|
2006-03-09 10:01:08 +01:00
|
|
|
if (!NT_SUCCESS (status))
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
2006-03-09 10:01:08 +01:00
|
|
|
/* Retry with READ_CONTROL only for non-privileged users. This
|
|
|
|
at least prints the Partition0 info, but it doesn't allow access
|
|
|
|
to the drive's layout information. It beats me, though, why
|
|
|
|
a non-privileged user shouldn't get read access to the drive
|
|
|
|
layout information. */
|
|
|
|
status = NtOpenFile (&devhdl, READ_CONTROL, &attr, &io,
|
2007-02-22 12:17:01 +01:00
|
|
|
FILE_SHARE_VALID_FLAGS, 0);
|
2006-03-09 10:01:08 +01:00
|
|
|
if (!NT_SUCCESS (status))
|
2003-03-09 21:10:25 +01:00
|
|
|
{
|
2006-03-09 10:01:08 +01:00
|
|
|
debug_printf ("NtOpenFile(%s) %x", devname, status);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use a buffer since some ioctl buffers aren't fixed size. */
|
|
|
|
char buf[256];
|
|
|
|
PARTITION_INFORMATION *pi = NULL;
|
|
|
|
PARTITION_INFORMATION_EX *pix = NULL;
|
|
|
|
DISK_GEOMETRY *dg = NULL;
|
|
|
|
DWORD bytes;
|
|
|
|
unsigned long drive_number = strtoul (devname + 8, NULL, 10);
|
|
|
|
unsigned long long size;
|
|
|
|
|
|
|
|
if (wincap.has_disk_ex_ioctls ()
|
|
|
|
&& DeviceIoControl (devhdl, IOCTL_DISK_GET_PARTITION_INFO_EX,
|
|
|
|
NULL, 0, buf, 256, &bytes, NULL))
|
|
|
|
{
|
|
|
|
pix = (PARTITION_INFORMATION_EX *) buf;
|
|
|
|
size = pix->PartitionLength.QuadPart;
|
|
|
|
}
|
|
|
|
else if (DeviceIoControl (devhdl, IOCTL_DISK_GET_PARTITION_INFO,
|
|
|
|
NULL, 0, buf, 256, &bytes, NULL))
|
|
|
|
{
|
|
|
|
pi = (PARTITION_INFORMATION *) buf;
|
|
|
|
size = pi->PartitionLength.QuadPart;
|
|
|
|
}
|
|
|
|
else if (DeviceIoControl (devhdl, IOCTL_DISK_GET_DRIVE_GEOMETRY,
|
|
|
|
NULL, 0, buf, 256, &bytes, NULL))
|
|
|
|
{
|
|
|
|
dg = (DISK_GEOMETRY *) buf;
|
|
|
|
size = (unsigned long long) dg->Cylinders.QuadPart
|
|
|
|
* dg->TracksPerCylinder
|
|
|
|
* dg->SectorsPerTrack
|
|
|
|
* dg->BytesPerSector;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
size = 0;
|
|
|
|
if (!pi && !pix && !dg)
|
|
|
|
debug_printf ("DeviceIoControl %E");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
device dev;
|
|
|
|
dev.parsedisk (drive_number, 0);
|
|
|
|
bufptr += __small_sprintf (bufptr, "%5d %5d %9U %s\n",
|
|
|
|
dev.major, dev.minor,
|
|
|
|
size >> 10, dev.name + 5);
|
|
|
|
}
|
|
|
|
size_t buf_size = 8192;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
char buf[buf_size];
|
|
|
|
if (DeviceIoControl (devhdl, IOCTL_DISK_GET_DRIVE_LAYOUT,
|
|
|
|
NULL, 0, (DRIVE_LAYOUT_INFORMATION *) buf,
|
|
|
|
buf_size, &bytes, NULL))
|
|
|
|
/* fall through */;
|
|
|
|
else if (GetLastError () == ERROR_INSUFFICIENT_BUFFER)
|
|
|
|
{
|
|
|
|
buf_size *= 2;
|
|
|
|
continue;
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-09 10:01:08 +01:00
|
|
|
debug_printf ("DeviceIoControl %E");
|
|
|
|
break;
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
2006-03-09 10:01:08 +01:00
|
|
|
DRIVE_LAYOUT_INFORMATION *dli = (DRIVE_LAYOUT_INFORMATION *) buf;
|
|
|
|
for (unsigned part = 0; part < dli->PartitionCount; part++)
|
|
|
|
{
|
|
|
|
if (!dli->PartitionEntry[part].PartitionLength.QuadPart
|
|
|
|
|| !dli->PartitionEntry[part].RecognizedPartition)
|
|
|
|
continue;
|
|
|
|
device dev;
|
|
|
|
dev.parsedisk (drive_number,
|
|
|
|
dli->PartitionEntry[part].PartitionNumber);
|
|
|
|
size = dli->PartitionEntry[part].PartitionLength.QuadPart >> 10;
|
|
|
|
bufptr += __small_sprintf (bufptr, "%5d %5d %9U %s\n",
|
|
|
|
dev.major, dev.minor,
|
|
|
|
size, dev.name + 5);
|
|
|
|
}
|
|
|
|
break;
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
2006-03-09 10:01:08 +01:00
|
|
|
NtClose (devhdl);
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
2006-03-09 10:01:08 +01:00
|
|
|
NtClose (dirhdl);
|
|
|
|
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, bufptr - buf);
|
|
|
|
memcpy (destbuf, buf, bufptr - buf);
|
|
|
|
return bufptr - buf;
|
2003-03-09 21:10:25 +01:00
|
|
|
}
|
|
|
|
|
2009-01-17 11:16:42 +01:00
|
|
|
static _off64_t
|
2009-01-20 18:22:11 +01:00
|
|
|
format_proc_self (void *, char *&destbuf)
|
2009-01-17 11:16:42 +01:00
|
|
|
{
|
2009-01-20 18:22:11 +01:00
|
|
|
destbuf = (char *) crealloc_abort (destbuf, 16);
|
2009-01-17 11:16:42 +01:00
|
|
|
return __small_sprintf (destbuf, "%d", getpid ());
|
|
|
|
}
|
|
|
|
|
2009-02-04 17:40:04 +01:00
|
|
|
static _off64_t
|
|
|
|
format_proc_mounts (void *, char *&destbuf)
|
|
|
|
{
|
|
|
|
destbuf = (char *) crealloc_abort (destbuf, sizeof ("self/mounts"));
|
|
|
|
return __small_sprintf (destbuf, "self/mounts");
|
|
|
|
}
|
|
|
|
|
2003-03-09 21:10:25 +01:00
|
|
|
#undef print
|