Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pwdgrp.h « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe3c3f2a15477d8ace4036e1a4c3424334a9c28d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* 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 (uid_t, bool = FALSE);
extern struct group *internal_getgrsid (cygpsid &);
extern struct group *internal_getgrgid (gid_t gid, bool = FALSE);
extern struct group *internal_getgrnam (const char *, bool = FALSE);
extern struct group *internal_getgrent (int);
int internal_getgroups (int, gid_t *, cygpsid * = NULL);

#include "sync.h"
#include "cygtls.h"
class pwdgrp
{
  unsigned pwdgrp_buf_elem_size;
  union
  {
    passwd **passwd_buf;
    group **group_buf;
    void **pwdgrp_buf;
  };
  void (pwdgrp::*read) ();
  bool (pwdgrp::*parse) ();
  int etc_ix;
  UNICODE_STRING upath;
  PWCHAR path;
  char *buf, *lptr;
  int max_lines;
  bool initialized;
  static 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 wchar_t *);
  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 (group *&gbuf);
};