7ac6173643
* 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.
436 lines
9.4 KiB
C++
436 lines
9.4 KiB
C++
/* grp.cc
|
|
|
|
Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003 Red Hat, Inc.
|
|
|
|
Original stubs by Jason Molenda of Cygnus Support, crash@cygnus.com
|
|
First implementation by Gunther Ebert, gunther.ebert@ixos-leipzig.de
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#include "winsup.h"
|
|
#include <grp.h>
|
|
#include <wininet.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "pinfo.h"
|
|
#include "security.h"
|
|
#include "path.h"
|
|
#include "fhandler.h"
|
|
#include "dtable.h"
|
|
#include "cygerrno.h"
|
|
#include "cygheap.h"
|
|
#include "pwdgrp.h"
|
|
|
|
/* Position in the group cache */
|
|
#define grp_pos _reent_winsup ()->_grp_pos
|
|
|
|
static __group32 *group_buf;
|
|
static pwdgrp gr (group_buf);
|
|
static char * NO_COPY null_ptr;
|
|
|
|
bool
|
|
pwdgrp::parse_group ()
|
|
{
|
|
# define grp (*group_buf)[curr_lines]
|
|
grp.gr_name = next_str (':');
|
|
if (!*grp.gr_name)
|
|
return false;
|
|
|
|
grp.gr_passwd = next_str (':');
|
|
|
|
if (!next_num (grp.gr_gid))
|
|
return false;
|
|
|
|
int n;
|
|
char *dp = raw_ptr ();
|
|
for (n = 0; *next_str (','); n++)
|
|
continue;
|
|
|
|
grp.gr_mem = &null_ptr;
|
|
if (n)
|
|
{
|
|
char **namearray = (char **) calloc (n + 1, sizeof (char *));
|
|
if (namearray)
|
|
{
|
|
for (int i = 0; i < n; i++, dp = strchr (dp, '\0') + 1)
|
|
namearray[i] = dp;
|
|
grp.gr_mem = namearray;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
# undef grp
|
|
}
|
|
|
|
/* Cygwin internal */
|
|
/* Read in /etc/group and save contents in the group cache */
|
|
/* This sets group_in_memory_p to 1 so functions in this file can
|
|
tell that /etc/group has been read in */
|
|
void
|
|
pwdgrp::read_group ()
|
|
{
|
|
for (int i = 0; i < gr.curr_lines; i++)
|
|
if ((*group_buf)[i].gr_mem != &null_ptr)
|
|
free ((*group_buf)[i].gr_mem);
|
|
|
|
load ("/etc/group");
|
|
|
|
/* Complete /etc/group in memory if needed */
|
|
if (!internal_getgrgid (myself->gid))
|
|
{
|
|
static char linebuf [200];
|
|
char group_name [UNLEN + 1] = "mkgroup";
|
|
char strbuf[128] = "";
|
|
|
|
if (wincap.has_security ())
|
|
{
|
|
struct __group32 *gr;
|
|
|
|
cygheap->user.groups.pgsid.string (strbuf);
|
|
if ((gr = internal_getgrsid (cygheap->user.groups.pgsid)))
|
|
strlcpy (group_name, gr->gr_name, sizeof (group_name));
|
|
}
|
|
if (myself->uid == UNKNOWN_UID)
|
|
strcpy (group_name, "mkpasswd"); /* Feedback... */
|
|
snprintf (linebuf, sizeof (linebuf), "%s:%s:%lu:%s",
|
|
group_name, strbuf, myself->gid, cygheap->user.name ());
|
|
debug_printf ("Completing /etc/group: %s", linebuf);
|
|
add_line (linebuf);
|
|
}
|
|
static char NO_COPY pretty_ls[] = "????????::-1:";
|
|
if (wincap.has_security ())
|
|
add_line (pretty_ls);
|
|
return;
|
|
}
|
|
|
|
pwdgrp::pwdgrp (passwd *&pbuf) :
|
|
pwdgrp_buf_elem_size (sizeof (*pbuf)), passwd_buf (&pbuf)
|
|
{
|
|
read = &pwdgrp::read_passwd;
|
|
parse = &pwdgrp::parse_passwd;
|
|
new_muto (pglock);
|
|
}
|
|
|
|
pwdgrp::pwdgrp (__group32 *&gbuf) :
|
|
pwdgrp_buf_elem_size (sizeof (*gbuf)), group_buf (&gbuf)
|
|
{
|
|
read = &pwdgrp::read_group;
|
|
parse = &pwdgrp::parse_group;
|
|
new_muto (pglock);
|
|
}
|
|
|
|
struct __group32 *
|
|
internal_getgrsid (cygpsid &sid)
|
|
{
|
|
char sid_string[128];
|
|
|
|
gr.refresh (false);
|
|
|
|
if (sid.string (sid_string))
|
|
for (int i = 0; i < gr.curr_lines; i++)
|
|
if (!strcmp (sid_string, group_buf[i].gr_passwd))
|
|
return group_buf + i;
|
|
return NULL;
|
|
}
|
|
|
|
struct __group32 *
|
|
internal_getgrgid (__gid32_t gid, bool check)
|
|
{
|
|
gr.refresh (check);
|
|
|
|
for (int i = 0; i < gr.curr_lines; i++)
|
|
if (group_buf[i].gr_gid == gid)
|
|
return group_buf + i;
|
|
return NULL;
|
|
}
|
|
|
|
struct __group32 *
|
|
internal_getgrnam (const char *name, bool check)
|
|
{
|
|
gr.refresh (check);
|
|
|
|
for (int i = 0; i < gr.curr_lines; i++)
|
|
if (strcasematch (group_buf[i].gr_name, name))
|
|
return group_buf + i;
|
|
|
|
/* Didn't find requested group */
|
|
return NULL;
|
|
}
|
|
|
|
static struct __group16 *
|
|
grp32togrp16 (struct __group16 *gp16, struct __group32 *gp32)
|
|
{
|
|
if (!gp16 || !gp32)
|
|
return NULL;
|
|
|
|
/* Copying the pointers is actually unnecessary. Just having the correct
|
|
return type is important. */
|
|
gp16->gr_name = gp32->gr_name;
|
|
gp16->gr_passwd = gp32->gr_passwd;
|
|
gp16->gr_gid = (__gid16_t) gp32->gr_gid; /* Not loss-free */
|
|
gp16->gr_mem = gp32->gr_mem;
|
|
|
|
return gp16;
|
|
}
|
|
|
|
extern "C" struct __group32 *
|
|
getgrgid32 (__gid32_t gid)
|
|
{
|
|
return internal_getgrgid (gid, TRUE);
|
|
}
|
|
|
|
extern "C" struct __group16 *
|
|
getgrgid (__gid16_t gid)
|
|
{
|
|
static struct __group16 g16; /* FIXME: thread-safe? */
|
|
|
|
return grp32togrp16 (&g16, getgrgid32 (gid16togid32 (gid)));
|
|
}
|
|
|
|
extern "C" struct __group32 *
|
|
getgrnam32 (const char *name)
|
|
{
|
|
return internal_getgrnam (name, TRUE);
|
|
}
|
|
|
|
extern "C" struct __group16 *
|
|
getgrnam (const char *name)
|
|
{
|
|
static struct __group16 g16; /* FIXME: thread-safe? */
|
|
|
|
return grp32togrp16 (&g16, getgrnam32 (name));
|
|
}
|
|
|
|
extern "C" void
|
|
endgrent ()
|
|
{
|
|
grp_pos = 0;
|
|
}
|
|
|
|
extern "C" struct __group32 *
|
|
getgrent32 ()
|
|
{
|
|
if (grp_pos == 0)
|
|
gr.refresh (true);
|
|
if (grp_pos < gr.curr_lines)
|
|
return group_buf + grp_pos++;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
extern "C" struct __group16 *
|
|
getgrent ()
|
|
{
|
|
static struct __group16 g16; /* FIXME: thread-safe? */
|
|
|
|
return grp32togrp16 (&g16, getgrent32 ());
|
|
}
|
|
|
|
extern "C" void
|
|
setgrent ()
|
|
{
|
|
grp_pos = 0;
|
|
}
|
|
|
|
/* Internal function. ONLY USE THIS INTERNALLY, NEVER `getgrent'!!! */
|
|
struct __group32 *
|
|
internal_getgrent (int pos)
|
|
{
|
|
gr.refresh (false);
|
|
|
|
if (pos < gr.curr_lines)
|
|
return group_buf + pos;
|
|
return NULL;
|
|
}
|
|
|
|
int
|
|
internal_getgroups (int gidsetsize, __gid32_t *grouplist, cygpsid * srchsid)
|
|
{
|
|
HANDLE hToken = NULL;
|
|
DWORD size;
|
|
int cnt = 0;
|
|
struct __group32 *gr;
|
|
__gid32_t gid;
|
|
const char *username;
|
|
|
|
if (allow_ntsec)
|
|
{
|
|
/* If impersonated, use impersonation token. */
|
|
if (cygheap->user.issetuid ())
|
|
hToken = cygheap->user.token ();
|
|
else if (!OpenProcessToken (hMainProc, TOKEN_QUERY, &hToken))
|
|
hToken = NULL;
|
|
}
|
|
if (hToken)
|
|
{
|
|
if (GetTokenInformation (hToken, TokenGroups, NULL, 0, &size)
|
|
|| GetLastError () == ERROR_INSUFFICIENT_BUFFER)
|
|
{
|
|
char buf[size];
|
|
TOKEN_GROUPS *groups = (TOKEN_GROUPS *) buf;
|
|
|
|
if (GetTokenInformation (hToken, TokenGroups, buf, size, &size))
|
|
{
|
|
cygsid sid;
|
|
|
|
if (srchsid)
|
|
{
|
|
for (DWORD pg = 0; pg < groups->GroupCount; ++pg)
|
|
if ((cnt = (*srchsid == groups->Groups[pg].Sid)))
|
|
break;
|
|
}
|
|
else
|
|
for (int gidx = 0; (gr = internal_getgrent (gidx)); ++gidx)
|
|
if (sid.getfromgr (gr))
|
|
for (DWORD pg = 0; pg < groups->GroupCount; ++pg)
|
|
if (sid == groups->Groups[pg].Sid &&
|
|
sid != well_known_world_sid)
|
|
{
|
|
if (cnt < gidsetsize)
|
|
grouplist[cnt] = gr->gr_gid;
|
|
++cnt;
|
|
if (gidsetsize && cnt > gidsetsize)
|
|
{
|
|
if (!cygheap->user.issetuid ())
|
|
CloseHandle (hToken);
|
|
goto error;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
debug_printf ("%d = GetTokenInformation(NULL) %E", size);
|
|
if (!cygheap->user.issetuid ())
|
|
CloseHandle (hToken);
|
|
return cnt;
|
|
}
|
|
|
|
gid = myself->gid;
|
|
username = cygheap->user.name ();
|
|
for (int gidx = 0; (gr = internal_getgrent (gidx)); ++gidx)
|
|
if (gid == gr->gr_gid)
|
|
{
|
|
if (cnt < gidsetsize)
|
|
grouplist[cnt] = gr->gr_gid;
|
|
++cnt;
|
|
if (gidsetsize && cnt > gidsetsize)
|
|
goto error;
|
|
}
|
|
else if (gr->gr_mem)
|
|
for (int gi = 0; gr->gr_mem[gi]; ++gi)
|
|
if (strcasematch (username, gr->gr_mem[gi]))
|
|
{
|
|
if (cnt < gidsetsize)
|
|
grouplist[cnt] = gr->gr_gid;
|
|
++cnt;
|
|
if (gidsetsize && cnt > gidsetsize)
|
|
goto error;
|
|
}
|
|
return cnt;
|
|
|
|
error:
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
extern "C" int
|
|
getgroups32 (int gidsetsize, __gid32_t *grouplist)
|
|
{
|
|
return internal_getgroups (gidsetsize, grouplist);
|
|
}
|
|
|
|
extern "C" int
|
|
getgroups (int gidsetsize, __gid16_t *grouplist)
|
|
{
|
|
__gid32_t *grouplist32 = NULL;
|
|
|
|
if (gidsetsize < 0)
|
|
{
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
if (gidsetsize > 0 && grouplist)
|
|
grouplist32 = (__gid32_t *) alloca (gidsetsize * sizeof (__gid32_t));
|
|
|
|
int ret = internal_getgroups (gidsetsize, grouplist32);
|
|
|
|
if (gidsetsize > 0 && grouplist)
|
|
for (int i = 0; i < ret; ++ i)
|
|
grouplist[i] = grouplist32[i];
|
|
|
|
return ret;
|
|
}
|
|
|
|
extern "C" int
|
|
initgroups32 (const char *, __gid32_t)
|
|
{
|
|
if (wincap.has_security ())
|
|
cygheap->user.groups.clear_supp ();
|
|
return 0;
|
|
}
|
|
|
|
extern "C" int
|
|
initgroups (const char * name, __gid16_t gid)
|
|
{
|
|
return initgroups32 (name, gid16togid32(gid));
|
|
}
|
|
|
|
/* setgroups32: standards? */
|
|
extern "C" int
|
|
setgroups32 (int ngroups, const __gid32_t *grouplist)
|
|
{
|
|
if (ngroups < 0 || (ngroups > 0 && !grouplist))
|
|
{
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
if (!wincap.has_security ())
|
|
return 0;
|
|
|
|
cygsidlist gsids (cygsidlist_alloc, ngroups);
|
|
struct __group32 *gr;
|
|
|
|
if (ngroups && !gsids.sids)
|
|
return -1;
|
|
|
|
for (int gidx = 0; gidx < ngroups; ++gidx)
|
|
{
|
|
for (int gidy = 0; gidy < gidx; gidy++)
|
|
if (grouplist[gidy] == grouplist[gidx])
|
|
goto found; /* Duplicate */
|
|
if ((gr = internal_getgrgid (grouplist[gidx])) &&
|
|
gsids.addfromgr (gr))
|
|
goto found;
|
|
debug_printf ("No sid found for gid %d", grouplist[gidx]);
|
|
gsids.free_sids ();
|
|
set_errno (EINVAL);
|
|
return -1;
|
|
found:
|
|
continue;
|
|
}
|
|
cygheap->user.groups.update_supp (gsids);
|
|
return 0;
|
|
}
|
|
|
|
extern "C" int
|
|
setgroups (int ngroups, const __gid16_t *grouplist)
|
|
{
|
|
__gid32_t *grouplist32 = NULL;
|
|
|
|
if (ngroups > 0 && grouplist)
|
|
{
|
|
grouplist32 = (__gid32_t *) alloca (ngroups * sizeof (__gid32_t));
|
|
if (grouplist32 == NULL)
|
|
return -1;
|
|
for (int i = 0; i < ngroups; i++)
|
|
grouplist32[i] = grouplist[i];
|
|
}
|
|
return setgroups32 (ngroups, grouplist32);
|
|
}
|