* include/sys/strace.h (paranoid_printf): Define as not being part of "all"
output. * pwdgrp.h (pwdgrp::next_num): Rename from next_int. Returns true/false if parse operation succeeded. (pwdgrp::reparse): Remove. (pwdgrp::raw_ptr): New function. Returns pointer in line. (pwdgrp::next_num): New functions for parsing other than unsigned long. * grp.cc (pwdgrp::parse_group): Reinstate previous parsing behavior. Don't fill in fields with NULL and assign empty gr_mem to known pointer rather than doing a pointless calloc. Streamline gr_mem parsing. Don't increment curr_lines here. * passwd.cc (pwdgrp::parse_passwd): Use new behavior of next_num. Don't increment curr_lines here. * uinfo.cc (pwdgrp::next_str): Keep returning EOL if out of data. (pwdgrp::reparse): Remove. (pwdgrp::next_num): Rename from next_int. Return bool indicating success of parse, argument returns value parsed. (pwdgrp::add_line): Increment curr_lines here on successful parse. (pwdgrp::load): (from Pierre Humblet) Don't return status. Just report it here.
This commit is contained in:
parent
c9b99d0d2a
commit
6503705696
@ -1,3 +1,30 @@
|
|||||||
|
|
||||||
|
2003-01-26 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* include/sys/strace.h (paranoid_printf): Define as not being part of
|
||||||
|
"all" output.
|
||||||
|
|
||||||
|
2003-01-25 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* pwdgrp.h (pwdgrp::next_num): Rename from next_int. Returns
|
||||||
|
true/false if parse operation succeeded.
|
||||||
|
(pwdgrp::reparse): Remove.
|
||||||
|
(pwdgrp::raw_ptr): New function. Returns pointer in line.
|
||||||
|
(pwdgrp::next_num): New functions for parsing other than unsigned long.
|
||||||
|
* grp.cc (pwdgrp::parse_group): Reinstate previous parsing behavior.
|
||||||
|
Don't fill in fields with NULL and assign empty gr_mem to known pointer
|
||||||
|
rather than doing a pointless calloc. Streamline gr_mem parsing.
|
||||||
|
Don't increment curr_lines here.
|
||||||
|
* passwd.cc (pwdgrp::parse_passwd): Use new behavior of next_num.
|
||||||
|
Don't increment curr_lines here.
|
||||||
|
* uinfo.cc (pwdgrp::next_str): Keep returning EOL if out of data.
|
||||||
|
(pwdgrp::reparse): Remove.
|
||||||
|
(pwdgrp::next_num): Rename from next_int. Return bool indicating
|
||||||
|
success of parse, argument returns value parsed.
|
||||||
|
(pwdgrp::add_line): Increment curr_lines here on successful parse.
|
||||||
|
(pwdgrp::load): (from Pierre Humblet) Don't return status. Just report
|
||||||
|
it here.
|
||||||
|
|
||||||
2003-01-25 Christopher Faylor <cgf@redhat.com>
|
2003-01-25 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* pwdgrp.cc (pwdgrp::reparse): Declare.
|
* pwdgrp.cc (pwdgrp::reparse): Declare.
|
||||||
|
@ -39,38 +39,36 @@ pwdgrp::parse_group ()
|
|||||||
char *dp;
|
char *dp;
|
||||||
|
|
||||||
# define grp (*group_buf)[curr_lines]
|
# define grp (*group_buf)[curr_lines]
|
||||||
|
|
||||||
memset (&grp, 0, sizeof (grp));
|
memset (&grp, 0, sizeof (grp));
|
||||||
|
|
||||||
grp.gr_name = next_str ();
|
grp.gr_name = next_str ();
|
||||||
if (!grp.gr_name)
|
if (!*grp.gr_name)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
grp.gr_passwd = next_str ();
|
grp.gr_passwd = next_str ();
|
||||||
int n = next_int ();
|
|
||||||
if (n >= 0)
|
if (!next_num (grp.gr_gid))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
int n;
|
||||||
|
dp = raw_ptr ();
|
||||||
|
for (n = 0; *next_str (','); n++)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
grp.gr_mem = &null_ptr;
|
||||||
|
if (n)
|
||||||
{
|
{
|
||||||
grp.gr_gid = n;
|
char **namearray = (char **) calloc (n + 2, sizeof (char *));
|
||||||
dp = next_str ();
|
|
||||||
if (!dp)
|
|
||||||
{
|
|
||||||
static char empty[] = "";
|
|
||||||
dp = empty;
|
|
||||||
}
|
|
||||||
int i = 0;
|
|
||||||
for (char *cp = dp; (cp = strchr (cp, ',')) != NULL; cp++)
|
|
||||||
i++;
|
|
||||||
char **namearray = (char **) calloc (i + 2, sizeof (char *));
|
|
||||||
if (namearray)
|
if (namearray)
|
||||||
{
|
{
|
||||||
reparse (dp);
|
for (int i = 0; i < n; i++, dp = strchr (dp, '\0') + 1)
|
||||||
for (i = 0; (dp = next_str (',')); i++)
|
|
||||||
namearray[i] = dp;
|
namearray[i] = dp;
|
||||||
namearray[i] = NULL;
|
|
||||||
grp.gr_mem = namearray;
|
grp.gr_mem = namearray;
|
||||||
}
|
}
|
||||||
curr_lines++;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
|
return true;
|
||||||
# undef grp
|
# undef grp
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,8 +83,7 @@ pwdgrp::read_group ()
|
|||||||
if ((*group_buf)[i].gr_mem != &null_ptr)
|
if ((*group_buf)[i].gr_mem != &null_ptr)
|
||||||
free ((*group_buf)[i].gr_mem);
|
free ((*group_buf)[i].gr_mem);
|
||||||
|
|
||||||
if (!gr.load ("/etc/group"))
|
load ("/etc/group");
|
||||||
debug_printf ("gr.load failed");
|
|
||||||
|
|
||||||
/* Complete /etc/group in memory if needed */
|
/* Complete /etc/group in memory if needed */
|
||||||
if (!internal_getgrgid (myself->gid))
|
if (!internal_getgrgid (myself->gid))
|
||||||
@ -106,11 +103,11 @@ pwdgrp::read_group ()
|
|||||||
snprintf (linebuf, sizeof (linebuf), "%s:%s:%lu:%s",
|
snprintf (linebuf, sizeof (linebuf), "%s:%s:%lu:%s",
|
||||||
group_name, strbuf, myself->gid, cygheap->user.name ());
|
group_name, strbuf, myself->gid, cygheap->user.name ());
|
||||||
debug_printf ("Completing /etc/group: %s", linebuf);
|
debug_printf ("Completing /etc/group: %s", linebuf);
|
||||||
gr.add_line (linebuf);
|
add_line (linebuf);
|
||||||
}
|
}
|
||||||
static char NO_COPY pretty_ls[] = "????????::-1:";
|
static char NO_COPY pretty_ls[] = "????????::-1:";
|
||||||
if (wincap.has_security ())
|
if (wincap.has_security ())
|
||||||
gr.add_line (pretty_ls);
|
add_line (pretty_ls);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ void strace_printf (unsigned, const char *func, const char *, ...);
|
|||||||
}))
|
}))
|
||||||
|
|
||||||
#define debug_printf(fmt, args...) strace_printf_wrap(DEBUG, fmt , ## args)
|
#define debug_printf(fmt, args...) strace_printf_wrap(DEBUG, fmt , ## args)
|
||||||
#define paranoid_printf(fmt, args...) strace_printf_wrap(PARANOID, fmt , ## args)
|
#define paranoid_printf(fmt, args...) strace_printf_wrap1(PARANOID, fmt , ## args)
|
||||||
#define select_printf(fmt, args...) strace_printf_wrap(SELECT, fmt , ## args)
|
#define select_printf(fmt, args...) strace_printf_wrap(SELECT, fmt , ## args)
|
||||||
#define sigproc_printf(fmt, args...) strace_printf_wrap(SIGP, fmt , ## args)
|
#define sigproc_printf(fmt, args...) strace_printf_wrap(SIGP, fmt , ## args)
|
||||||
#define syscall_printf(fmt, args...) strace_printf_wrap(SYSCALL, fmt , ## args)
|
#define syscall_printf(fmt, args...) strace_printf_wrap(SYSCALL, fmt , ## args)
|
||||||
|
@ -37,28 +37,22 @@ static pwdgrp pr (passwd_buf);
|
|||||||
bool
|
bool
|
||||||
pwdgrp::parse_passwd ()
|
pwdgrp::parse_passwd ()
|
||||||
{
|
{
|
||||||
int n;
|
|
||||||
# define res (*passwd_buf)[curr_lines]
|
# define res (*passwd_buf)[curr_lines]
|
||||||
/* Allocate enough room for the passwd struct and all the strings
|
|
||||||
in it in one go */
|
|
||||||
memset (&res, 0, sizeof (res));
|
memset (&res, 0, sizeof (res));
|
||||||
|
|
||||||
res.pw_name = next_str ();
|
res.pw_name = next_str ();
|
||||||
res.pw_passwd = next_str ();
|
res.pw_passwd = next_str ();
|
||||||
|
|
||||||
n = next_int ();
|
if (res.pw_name == res.pw_passwd)
|
||||||
if (n < 0)
|
|
||||||
return false;
|
return false;
|
||||||
res.pw_uid = n;
|
|
||||||
|
|
||||||
n = next_int ();
|
(void) next_num (res.pw_uid);
|
||||||
if (n < 0)
|
(void) next_num (res.pw_gid);
|
||||||
return false;
|
res.pw_comment = NULL;
|
||||||
res.pw_gid = n;
|
|
||||||
res.pw_comment = 0;
|
|
||||||
res.pw_gecos = next_str ();
|
res.pw_gecos = next_str ();
|
||||||
res.pw_dir = next_str ();
|
res.pw_dir = next_str ();
|
||||||
res.pw_shell = next_str ();
|
res.pw_shell = next_str ();
|
||||||
curr_lines++;
|
|
||||||
return true;
|
return true;
|
||||||
# undef res
|
# undef res
|
||||||
}
|
}
|
||||||
@ -69,8 +63,7 @@ pwdgrp::parse_passwd ()
|
|||||||
void
|
void
|
||||||
pwdgrp::read_passwd ()
|
pwdgrp::read_passwd ()
|
||||||
{
|
{
|
||||||
if (!load ("/etc/passwd"))
|
load ("/etc/passwd");
|
||||||
debug_printf ("load failed");
|
|
||||||
|
|
||||||
char strbuf[128] = "";
|
char strbuf[128] = "";
|
||||||
bool searchentry = true;
|
bool searchentry = true;
|
||||||
@ -79,7 +72,7 @@ pwdgrp::read_passwd ()
|
|||||||
if (wincap.has_security ())
|
if (wincap.has_security ())
|
||||||
{
|
{
|
||||||
static char NO_COPY pretty_ls[] = "????????:*:-1:-1:";
|
static char NO_COPY pretty_ls[] = "????????:*:-1:-1:";
|
||||||
pr.add_line (pretty_ls);
|
add_line (pretty_ls);
|
||||||
cygsid tu = cygheap->user.sid ();
|
cygsid tu = cygheap->user.sid ();
|
||||||
tu.string (strbuf);
|
tu.string (strbuf);
|
||||||
if (myself->uid == ILLEGAL_UID)
|
if (myself->uid == ILLEGAL_UID)
|
||||||
@ -101,7 +94,7 @@ pwdgrp::read_passwd ()
|
|||||||
myself->gid,
|
myself->gid,
|
||||||
strbuf, getenv ("HOME") ?: "");
|
strbuf, getenv ("HOME") ?: "");
|
||||||
debug_printf ("Completing /etc/passwd: %s", linebuf);
|
debug_printf ("Completing /etc/passwd: %s", linebuf);
|
||||||
pr.add_line (linebuf);
|
add_line (linebuf);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -45,14 +45,28 @@ class pwdgrp
|
|||||||
void read_passwd ();
|
void read_passwd ();
|
||||||
void read_group ();
|
void read_group ();
|
||||||
char *add_line (char *);
|
char *add_line (char *);
|
||||||
|
char *raw_ptr () const {return lptr;}
|
||||||
char *next_str (char = 0);
|
char *next_str (char = 0);
|
||||||
int next_int (char = 0);
|
bool next_num (unsigned long&);
|
||||||
void reparse (char *);
|
bool next_num (unsigned int& i)
|
||||||
|
{
|
||||||
|
unsigned long x;
|
||||||
|
bool res = next_num (x);
|
||||||
|
i = (unsigned int) x;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
bool next_num (int& i)
|
||||||
|
{
|
||||||
|
unsigned long x;
|
||||||
|
bool res = next_num (x);
|
||||||
|
i = (int) x;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int curr_lines;
|
int curr_lines;
|
||||||
|
|
||||||
bool load (const char *);
|
void load (const char *);
|
||||||
void refresh (bool check = true)
|
void refresh (bool check = true)
|
||||||
{
|
{
|
||||||
if (!check && initialized)
|
if (!check && initialized)
|
||||||
|
@ -400,33 +400,23 @@ pwdgrp::next_str (char c)
|
|||||||
search[2] = c;
|
search[2] = c;
|
||||||
char *res = lptr;
|
char *res = lptr;
|
||||||
char *p = strpbrk (lptr, search);
|
char *p = strpbrk (lptr, search);
|
||||||
if (!p)
|
if (p)
|
||||||
lptr = NULL;
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
lptr = (*p == '\n') ? NULL : p + 1;
|
lptr = (*p == '\n') ? p : p + 1;
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
bool
|
||||||
pwdgrp::reparse (char *in_lptr)
|
pwdgrp::next_num (unsigned long& n)
|
||||||
{
|
{
|
||||||
lptr = in_lptr;
|
char *p = next_str ();
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
pwdgrp::next_int (char c)
|
|
||||||
{
|
|
||||||
char *p = next_str (c);
|
|
||||||
if (!p)
|
if (!p)
|
||||||
return -1;
|
return -1;
|
||||||
char *cp;
|
char *cp;
|
||||||
unsigned n = strtoul (p, &cp, 10);
|
n = strtoul (p, &cp, 10);
|
||||||
if (p == cp)
|
return p != cp && !*cp;
|
||||||
return -1;
|
|
||||||
return n;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
@ -447,14 +437,19 @@ pwdgrp::add_line (char *eptr)
|
|||||||
max_lines += 10;
|
max_lines += 10;
|
||||||
*pwdgrp_buf = realloc (*pwdgrp_buf, max_lines * pwdgrp_buf_elem_size);
|
*pwdgrp_buf = realloc (*pwdgrp_buf, max_lines * pwdgrp_buf_elem_size);
|
||||||
}
|
}
|
||||||
(void) (this->*parse) ();
|
if ((this->*parse) ())
|
||||||
|
curr_lines++;
|
||||||
}
|
}
|
||||||
return eptr;
|
return eptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
void
|
||||||
pwdgrp::load (const char *posix_fname)
|
pwdgrp::load (const char *posix_fname)
|
||||||
{
|
{
|
||||||
|
const char *res;
|
||||||
|
static const char failed[] = "failed";
|
||||||
|
static const char succeeded[] = "succeeded";
|
||||||
|
|
||||||
if (buf)
|
if (buf)
|
||||||
free (buf);
|
free (buf);
|
||||||
buf = NULL;
|
buf = NULL;
|
||||||
@ -464,26 +459,29 @@ pwdgrp::load (const char *posix_fname)
|
|||||||
|
|
||||||
paranoid_printf ("%s", posix_fname);
|
paranoid_printf ("%s", posix_fname);
|
||||||
|
|
||||||
bool res;
|
|
||||||
if (pc.error || !pc.exists () || !pc.isdisk () || pc.isdir ())
|
if (pc.error || !pc.exists () || !pc.isdisk () || pc.isdir ())
|
||||||
res = false;
|
{
|
||||||
|
paranoid_printf ("strange path_conv problem");
|
||||||
|
res = failed;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
HANDLE fh = CreateFile (pc, GENERIC_READ, wincap.shared (), NULL,
|
HANDLE fh = CreateFile (pc, GENERIC_READ, wincap.shared (), NULL,
|
||||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
|
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
|
||||||
if (fh == INVALID_HANDLE_VALUE)
|
if (fh == INVALID_HANDLE_VALUE)
|
||||||
res = false;
|
res = failed;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DWORD size = GetFileSize (fh, NULL), read_bytes;
|
DWORD size = GetFileSize (fh, NULL), read_bytes;
|
||||||
buf = (char *) malloc (size + 1);
|
buf = (char *) malloc (size + 1);
|
||||||
if (!ReadFile (fh, buf, size, &read_bytes, NULL))
|
if (!ReadFile (fh, buf, size, &read_bytes, NULL))
|
||||||
{
|
{
|
||||||
|
paranoid_printf ("ReadFile failed, %E");
|
||||||
CloseHandle (fh);
|
CloseHandle (fh);
|
||||||
if (buf)
|
if (buf)
|
||||||
free (buf);
|
free (buf);
|
||||||
buf = NULL;
|
buf = NULL;
|
||||||
res = false;
|
res = failed;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -494,11 +492,12 @@ pwdgrp::load (const char *posix_fname)
|
|||||||
while ((eptr = add_line (eptr)))
|
while ((eptr = add_line (eptr)))
|
||||||
continue;
|
continue;
|
||||||
debug_printf ("%s curr_lines %d", posix_fname, curr_lines);
|
debug_printf ("%s curr_lines %d", posix_fname, curr_lines);
|
||||||
res = true;
|
res = succeeded;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
debug_printf ("load of %s %s", posix_fname, res);
|
||||||
initialized = true;
|
initialized = true;
|
||||||
return res;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user