mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-29 02:20:21 +08:00
44d2fc0a45
* child_info.h: Redefine CURR_CHILD_INFO_MAGIC. (child_info_fork::abort): Rename from handle_failure. Change arguments. * cygtls.h (_local_storage::ttybuf): New field. * dcrt0.cc (vapi_fatal): Split api_fatal. Add "in forked process" to message when appropriate. (api_fatal): Use vapi_fatal. * devices.h: Make multiple inclusion safe. (fh_devices): Add FH_CONS* stuff. Reorder slightly. (device): Eliminate anonymous union. Add more ways to access minor/major. (device::setunit): Accommodate no-longer-anonymous union. (device::is_fs): Ditto. (device::is_fs_special): Ditto. (device::major): New function. (device::minor): Ditto. (device::is_device): New function. (device::not_device): Ditto. (device::operator int): New operator. (device::operator fh_devices): Ditto. (device::operator bool): Ditto. (device::operator DWORD): Ditto. (device::operator =): Ditto. (isproc_dev): New function. (isprocsys_dev): Ditto. (iscons_dev): Ditto. (istty_slave_dev): Ditto. * devices.in: Add new "/dev/cons*" strings. Accommodate no-longer-anonymous union throughout. (BRACK): Use more precise method for initialization. * devices.cc: Regenerate. * dtable.cc (dtable::stdio_init): Use get_cttyp instead of get_tty. (dtable::find_archetype): Use new DWORD operator in device to test archetypes. (dtable::init_std_file_from_handle): Use different method to initialize 'dev'. Adapt to different ctty handling and accommodate /dev/cons*. (fh_alloc): Accommodate no-longer-anonymous union. Adapt to new /dev/cons*. (build_fh_pc): Make debugging output more useful. * exceptions.cc (ctrl_c_handler): Use get_cttyp instead of get_tty. * external.cc (fillout_pinfo): Accommodate new cons* stuff. * fhandler.cc (fhandler_base::read): Eliminate is_slow() test. * fhandler.h (fhandler_base::*): Adapt to changes in device.h. (fhandler_*::is_slow): Delete. ( fhandler_proc::get_proc_fhandler): Return fh_devices type. * fhandler_console.cc (open_shared_console): New function. (console_unit): New class. (console_unit::console_unit): New constructor. (enum_windows): New function. Declare as friend to console_unit. (fhandler_console::set_unit): New function. (fhandler_console::get_tty_stuff): Call set_unit to set the unit number and determine if initialization is needed. Eliminate flags parameter. (tty_list::get_cttyp): Rename (sorta) from get_tty. Return pointer to correct tty_min. (fhandler_console::open): Adapt to elimination of argument to get_tty_stuff. (fhandler_console::output_tcsetattr): Properly detect error condition. (fhandler_console::fixup_after_fork_exec): Adapt to get_tty_stuff() setting tc automatically. * fhandler_proc.cc: Use FH_BAD rather than 0 throughout where using fh_devices enum. (fhandler_proc::get_proc_fhandler): Return fh_devices. Adapt to devices.h changes. * fhandler_process.cc: Adapt to devices.h changes. Use FH_BAD rather than 0 throughout where using fh_devices enum. * fhandler_procnet.cc: Ditto. * fhandler_procsys.cc: Ditto. * fhandler_procsysvipc.cc: Ditto. * fhandler_tape.cc (fhandler_dev_tape::fhandler_dev_tape): Ditto. * fhandler_termios.cc (handler_termios::bg_check): Use tc->ttyname() rather than assuming that we can construct a tty. * fhandler_tty.cc (fhandler_tty_master::fhandler_tty_master): Just return get_minor() of dev. (fhandler_pty_master::process_slave_output): Add slightly more debugging info. (fhandler_tty_slave::fhandler_tty_slave): Change name from ntty to unit. (fhandler_pty_master::open): Ditto. (fhandler_tty_slave::ioctl): Adapt to change which causes ctty to represent a complete device. (fhandler_tty_master::init_console): Add debugging for failure path. (fhandler_pty_master::setup): Use get_unit() to retrieve unit number rather than relying on raw ntty. (fhandler_pty_master::setup): Ditto. * fhandler_virtual.h (virt_tab_t): Redefine fhandler as fh_devices. * fork.cc: Remove obsolete vfork stuff. (frok::child): Don't assume that a ctty == 0 is valid. * mount.cc (mount_info::conv_to_win32_path): Adapt to device struct changes. (mount_info::conv_to_win32_path): Ditto. * path.cc (path_conv::check): Retrive major/minor numbers via a method rather than accessing them directly from device. Rely on dev operators to set/retrieve device information as required by device struct change. * path.h (isproc_dev): Move to devices.h. (isprocsys_dev): Ditto. (isvirtual_dev): Ditto. (path_conv:{isdevice,isfifo,isspecial,iscygdrive,issocket,get_devn,get_unitn}): Use device methods to access/manipulate devices. * pinfo.cc (pinfo::exit): Don't assume that ctty == 0 is valid. Use iscons_dev to determine if a device is a console. (_pinfo::_ctty): Use device::parse to generate tty/cons name. (_pinfo::set_ctty): Don't assume that ctty == 0 is valid. Remove redundant info from debugging. * shared.cc (offsets): Remove console offset. * shared_info.h (shared_locations): Ditto. * syscalls.cc (umask): Use device methods to manipulate device information. (ctermid): Use device::parse to generate term device name. * tlsoffsets.h: Regenerate. * tty.cc (ttyslot): Return minor number of ctty since ctty now represents a full device. (tty::create_master): Set ctty to a complete device. (tty_list::attach): Rework to detect new /dev/cons* stuff. (tty_list::terminate): Adapt to changes to ctty. (tty_list::init): Adapt to change to setntty - pass in device major number. (tty::exists): Use get_unit() to retrive tty unit number. (tty::open_mutex): Ditto. (tty::open_inuse): Ditto. (tty::create_inuse): Ditto. (tty::get_event): Ditto. (tty_min::ttyname): Define new function. * tty.h (tty_min::ntty): Redefine as fh_devices. (tty::exists): Use get_unit() to retrive tty unit number. (tty::open_mutex): Ditto. (tty::open_inuse): Ditto. (tty::create_inuse): Ditto. (tty::get_event): Ditto. (tty_min::ttyname): Declare new function. (tty::getntty): Declare as const. (tty_list::operator []): Assure that only minor part of argument is used. * dll_init.cc (dll_list::alloc): Detect mismatch of data segments early issuing an explicit error message if necessary. * heap.cc (heap_init): Adapt to changes from fork->handle_failure to fork->abort. * pinfo.h (EXITCODE_FORK_FAILED): New enum. (from Ryan Johnson) * sigproc.cc (child_info_fork::abort): Rename from handle_failure. Change arguments to allow passing in a printf-like message. * winsup.h (api_fatal): Delete macro definition. (api_fatal): Redefine from __api_fatal. (vapi_fatal): Declare new function. * include/sys/strace.h (strace_vprintf): Define new macro. * ntdll.h (_SYSTEM_INFORMATION_CLASS): Add SystemHandleInformation.
283 lines
6.4 KiB
C++
283 lines
6.4 KiB
C++
/* fhandler_procnet.cc: fhandler for /proc/net virtual filesystem
|
|
|
|
Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#define __INSIDE_CYGWIN_NET__
|
|
|
|
#include "winsup.h"
|
|
#include "cygerrno.h"
|
|
#include "security.h"
|
|
#include "path.h"
|
|
#include "fhandler.h"
|
|
#include "fhandler_virtual.h"
|
|
#include "dtable.h"
|
|
#include "cygheap.h"
|
|
|
|
#include <netdb.h>
|
|
#define USE_SYS_TYPES_FD_SET
|
|
#include <winsock2.h>
|
|
#include <iphlpapi.h>
|
|
#include <asm/byteorder.h>
|
|
#include <cygwin/in6.h>
|
|
|
|
#define _COMPILING_NEWLIB
|
|
#include <dirent.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
extern "C" int ip_addr_prefix (PIP_ADAPTER_UNICAST_ADDRESS pua,
|
|
PIP_ADAPTER_PREFIX pap);
|
|
bool get_adapters_addresses (PIP_ADAPTER_ADDRESSES *pa0, ULONG family);
|
|
|
|
static _off64_t format_procnet_ifinet6 (void *, char *&);
|
|
|
|
static const virt_tab_t procnet_tab[] =
|
|
{
|
|
{ _VN ("."), FH_PROCNET, virt_directory, NULL },
|
|
{ _VN (".."), FH_PROCNET, virt_directory, NULL },
|
|
{ _VN ("if_inet6"), FH_PROCNET, virt_file, format_procnet_ifinet6 },
|
|
{ NULL, 0, FH_BAD, virt_none, NULL }
|
|
};
|
|
|
|
static const int PROCNET_LINK_COUNT =
|
|
(sizeof (procnet_tab) / sizeof (virt_tab_t)) - 1;
|
|
|
|
/* Returns 0 if path doesn't exist, >0 if path is a directory,
|
|
* -1 if path is a file, -2 if path is a symlink, -3 if path is a pipe,
|
|
* -4 if path is a socket.
|
|
*/
|
|
virtual_ftype_t
|
|
fhandler_procnet::exists ()
|
|
{
|
|
const char *path = get_name ();
|
|
debug_printf ("exists (%s)", path);
|
|
path += proc_len + 1;
|
|
while (*path != 0 && !isdirsep (*path))
|
|
path++;
|
|
if (*path == 0)
|
|
return virt_rootdir;
|
|
|
|
virt_tab_t *entry = virt_tab_search (path + 1, false, procnet_tab,
|
|
PROCNET_LINK_COUNT);
|
|
if (entry)
|
|
{
|
|
if (entry->type == virt_file)
|
|
{
|
|
if (!wincap.has_gaa_prefixes ()
|
|
|| !get_adapters_addresses (NULL, AF_INET6))
|
|
return virt_none;
|
|
}
|
|
fileid = entry - procnet_tab;
|
|
return entry->type;
|
|
}
|
|
return virt_none;
|
|
}
|
|
|
|
fhandler_procnet::fhandler_procnet ():
|
|
fhandler_proc ()
|
|
{
|
|
}
|
|
|
|
int
|
|
fhandler_procnet::fstat (struct __stat64 *buf)
|
|
{
|
|
fhandler_base::fstat (buf);
|
|
buf->st_mode &= ~_IFMT & NO_W;
|
|
int file_type = exists ();
|
|
switch (file_type)
|
|
{
|
|
case virt_none:
|
|
set_errno (ENOENT);
|
|
return -1;
|
|
case virt_directory:
|
|
case virt_rootdir:
|
|
buf->st_mode |= S_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
|
|
buf->st_nlink = 2;
|
|
return 0;
|
|
case virt_file:
|
|
default:
|
|
buf->st_mode |= S_IFREG | S_IRUSR | S_IRGRP | S_IROTH;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int
|
|
fhandler_procnet::readdir (DIR *dir, dirent *de)
|
|
{
|
|
int res = ENMFILE;
|
|
if (dir->__d_position >= PROCNET_LINK_COUNT)
|
|
goto out;
|
|
if (procnet_tab[dir->__d_position].type == virt_file)
|
|
{
|
|
if (!wincap.has_gaa_prefixes ()
|
|
|| !get_adapters_addresses (NULL, AF_INET6))
|
|
goto out;
|
|
}
|
|
strcpy (de->d_name, procnet_tab[dir->__d_position++].name);
|
|
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
|
|
res = 0;
|
|
out:
|
|
syscall_printf ("%d = readdir (%p, %p) (%s)", res, dir, de, de->d_name);
|
|
return res;
|
|
}
|
|
|
|
int
|
|
fhandler_procnet::open (int flags, mode_t mode)
|
|
{
|
|
int res = fhandler_virtual::open (flags, mode);
|
|
if (!res)
|
|
goto out;
|
|
|
|
nohandle (true);
|
|
|
|
const char *path;
|
|
path = get_name () + proc_len + 1;
|
|
while (*path != 0 && !isdirsep (*path))
|
|
path++;
|
|
|
|
if (*path == 0)
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
|
|
virt_tab_t *entry;
|
|
entry = virt_tab_search (path + 1, true, procnet_tab, PROCNET_LINK_COUNT);
|
|
if (!entry)
|
|
{
|
|
set_errno ((flags & O_CREAT) ? EROFS : ENOENT);
|
|
res = 0;
|
|
goto out;
|
|
}
|
|
if (flags & O_WRONLY)
|
|
{
|
|
set_errno (EROFS);
|
|
res = 0;
|
|
goto out;
|
|
}
|
|
|
|
fileid = entry - procnet_tab;
|
|
if (!fill_filebuf ())
|
|
{
|
|
res = 0;
|
|
goto out;
|
|
}
|
|
|
|
if (flags & O_APPEND)
|
|
position = filesize;
|
|
else
|
|
position = 0;
|
|
|
|
success:
|
|
res = 1;
|
|
set_flags ((flags & ~O_TEXT) | O_BINARY);
|
|
set_open_status ();
|
|
out:
|
|
syscall_printf ("%d = fhandler_proc::open (%p, %d)", res, flags, mode);
|
|
return res;
|
|
}
|
|
|
|
bool
|
|
fhandler_procnet::fill_filebuf ()
|
|
{
|
|
if (procnet_tab[fileid].format_func)
|
|
{
|
|
filesize = procnet_tab[fileid].format_func (NULL, filebuf);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/* Return the same scope values as Linux. */
|
|
static unsigned int
|
|
get_scope (struct in6_addr *addr)
|
|
{
|
|
if (IN6_IS_ADDR_LOOPBACK (addr))
|
|
return 0x10;
|
|
if (IN6_IS_ADDR_LINKLOCAL (addr))
|
|
return 0x20;
|
|
if (IN6_IS_ADDR_SITELOCAL (addr))
|
|
return 0x40;
|
|
if (IN6_IS_ADDR_V4COMPAT (addr))
|
|
return 0x80;
|
|
return 0x0;
|
|
}
|
|
|
|
/* Convert DAD state into Linux compatible values. */
|
|
static unsigned int dad_to_flags[] =
|
|
{
|
|
0x02, /* Invalid -> NODAD */
|
|
0x40, /* Tentative -> TENTATIVE */
|
|
0xc0, /* Duplicate -> PERMANENT | TENTATIVE */
|
|
0x20, /* Deprecated -> DEPRECATED */
|
|
0x80 /* Preferred -> PERMANENT */
|
|
};
|
|
|
|
static _off64_t
|
|
format_procnet_ifinet6 (void *, char *&filebuf)
|
|
{
|
|
PIP_ADAPTER_ADDRESSES pa0 = NULL, pap;
|
|
PIP_ADAPTER_UNICAST_ADDRESS pua;
|
|
ULONG alloclen;
|
|
|
|
if (!wincap.has_gaa_prefixes ())
|
|
return 0;
|
|
_off64_t filesize = 0;
|
|
if (!get_adapters_addresses (&pa0, AF_INET6))
|
|
goto out;
|
|
alloclen = 0;
|
|
for (pap = pa0; pap; pap = pap->Next)
|
|
for (pua = pap->FirstUnicastAddress; pua; pua = pua->Next)
|
|
alloclen += 100;
|
|
if (!alloclen)
|
|
goto out;
|
|
filebuf = (char *) crealloc (filebuf, alloclen);
|
|
if (!filebuf)
|
|
goto out;
|
|
for (pap = pa0; pap; pap = pap->Next)
|
|
for (pua = pap->FirstUnicastAddress; pua; pua = pua->Next)
|
|
{
|
|
struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)
|
|
pua->Address.lpSockaddr;
|
|
for (int i = 0; i < 8; ++i)
|
|
/* __small_sprintf generates upper-case hex. */
|
|
filesize += sprintf (filebuf + filesize, "%04x",
|
|
ntohs (sin6->sin6_addr.s6_addr16[i]));
|
|
filebuf[filesize++] = ' ';
|
|
filesize += sprintf (filebuf + filesize,
|
|
"%02lx %02x %02x %02x %s\n",
|
|
pap->Ipv6IfIndex,
|
|
ip_addr_prefix (pua, pap->FirstPrefix),
|
|
get_scope (&((struct sockaddr_in6 *)
|
|
pua->Address.lpSockaddr)->sin6_addr),
|
|
dad_to_flags [pua->DadState],
|
|
pap->AdapterName);
|
|
}
|
|
|
|
out:
|
|
if (pa0)
|
|
free (pa0);
|
|
return filesize;
|
|
}
|