322c131f9f
(locker): Remove unused class. (new_muto): Delete. (new_muto1): Ditto. (new_muto_name): Ditto. * cygheap.cc (cygheap_setup_for_child): Reflect use of static storage for muto rather than pointer. (_csbrk): Ditto. (_cmalloc): Ditto. (_cmalloc): Ditto. (_cfree): Ditto. * cygheap.h (cwdstuff::cwd_lock): Ditto. (cwdstuff::get_drive): Ditto. * cygmalloc.h (__malloc_lock): Ditto. (__malloc_unlock): Ditto. * cygtls.cc (sentry::lock): Ditto. (sentry::sentry): Ditto. (~sentry): Ditto. (_cygtls::init): Ditto. * dcrt0.cc: Ditto. (cygwin_atexit): Ditto. (cygwin_exit): Ditto. * debug.cc (lock_debug::locker): Ditto. (lock_debug::lock_debug): Ditto. (lock_debug::unlock): Ditto. (debug_init): Ditto. * dtable.cc (dtable::init_lock): Ditto. * dtable.h (dtable::lock_cs): Ditto. (dtable::lock): Ditto. (dtable::unlock): Ditto. * exceptions.cc (mask_sync): Ditto. (sighold): Ditto. (set_process_mask_delta): Ditto. (set_signal_mask): Ditto. (events_init): Ditto. * grp.cc (pwdgrp::pwdgrp): Ditto. * malloc_wrapper.cc (mallock): Ditto. (malloc_init): Ditto. * path.cc (cwdstuff::cwd_lock): Ditto. (cwdstuff::get_hash): Ditto. (cwdstuff::get_hash): Ditto. (cwdstuff::init): Ditto. (cwdstuff::set): Ditto. (cwdstuff::get): Ditto. * pwdgrp.h (pwdgrp::pglock): Ditto. (pwdgrp::refresh): Ditto. * sigproc.cc (sync_proc_subproc): Ditto. (get_proc_lock): Ditto. (proc_subproc): Ditto. (_cygtls::remove_wq): Ditto. (proc_terminate): Ditto. (sigproc_init): Ditto. * timer.cc (lock_timer_tracker::protect): Ditto. (lock_timer_tracker::lock_timer_tracker): Ditto. (lock_timer_tracker::~lock_timer_tracker): Ditto. * wininfo.cc (wininfo::_lock;): Ditto. (wininfo::winthread): Ditto. (operator HWND): Ditto. (wininfo::lock): Ditto. (wininfo::release): Ditto. * wininfo.h (wininfo::_lock;): Ditto.
84 lines
2.0 KiB
C++
84 lines
2.0 KiB
C++
/* pwdgrp.h
|
|
|
|
Copyright 2001, 2002, 2003 Red Hat inc.
|
|
|
|
Stuff common to pwd and grp handling.
|
|
|
|
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. */
|
|
|
|
/* These functions are needed to allow searching and walking through
|
|
the passwd and group lists */
|
|
extern struct passwd *internal_getpwsid (cygpsid &);
|
|
extern struct passwd *internal_getpwnam (const char *, bool = FALSE);
|
|
extern struct passwd *internal_getpwuid (__uid32_t, bool = FALSE);
|
|
extern struct __group32 *internal_getgrsid (cygpsid &);
|
|
extern struct __group32 *internal_getgrgid (__gid32_t gid, bool = FALSE);
|
|
extern struct __group32 *internal_getgrnam (const char *, bool = FALSE);
|
|
extern struct __group32 *internal_getgrent (int);
|
|
int internal_getgroups (int, __gid32_t *, cygpsid * = NULL);
|
|
|
|
#include "sync.h"
|
|
#include "cygtls.h"
|
|
class pwdgrp
|
|
{
|
|
unsigned pwdgrp_buf_elem_size;
|
|
union
|
|
{
|
|
passwd **passwd_buf;
|
|
__group32 **group_buf;
|
|
void **pwdgrp_buf;
|
|
};
|
|
void (pwdgrp::*read) ();
|
|
bool (pwdgrp::*parse) ();
|
|
int etc_ix;
|
|
path_conv pc;
|
|
char *buf, *lptr;
|
|
int max_lines;
|
|
bool initialized;
|
|
muto pglock;
|
|
|
|
bool parse_passwd ();
|
|
bool parse_group ();
|
|
void read_passwd ();
|
|
void read_group ();
|
|
char *add_line (char *);
|
|
char *raw_ptr () const {return lptr;}
|
|
char *next_str (char);
|
|
bool next_num (unsigned long&);
|
|
bool next_num (unsigned int& i)
|
|
{
|
|
unsigned long x;
|
|
bool res = next_num (x);
|
|
i = (unsigned int) x;
|
|
return res;
|
|
}
|
|
inline bool next_num (int& i)
|
|
{
|
|
unsigned long x;
|
|
bool res = next_num (x);
|
|
i = (int) x;
|
|
return res;
|
|
}
|
|
|
|
public:
|
|
int curr_lines;
|
|
|
|
void load (const char *);
|
|
inline void refresh (bool check)
|
|
{
|
|
if (!check && initialized)
|
|
return;
|
|
if (pglock.acquire () == 1 &&
|
|
(!initialized || (check && etc::file_changed (etc_ix))))
|
|
(this->*read) ();
|
|
pglock.release ();
|
|
}
|
|
|
|
pwdgrp (passwd *&pbuf);
|
|
pwdgrp (__group32 *&gbuf);
|
|
};
|