summaryrefslogtreecommitdiffstats
path: root/testsuite/nsswitch/getent.c
blob: b4c4e50c6fe7a6803e3359c28d5877160cb45dac (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* Cut down version of getent which only returns passwd and group database
   entries and seems to compile on most systems without too much fuss.
   Original copyright notice below. */

/* Copyright (c) 1998, 1999, 2000 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the GNU C Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA. */

#include <stdio.h>
#include <pwd.h>
#include <grp.h>

group_keys (int number, char *key[])
{
  int result = 0;
  int i;

  for (i = 0; i < number; ++i)
    {
      struct group *grp;

      if (isdigit (key[i][0]))
        grp = getgrgid (atol (key[i]));
      else
        grp = getgrnam (key[i]);

      if (grp == NULL)
        result = 2;
      else
        print_group (grp);
    }

  return result;
}

passwd_keys (int number, char *key[])
{
  int result = 0;
  int i;

  for (i = 0; i < number; ++i)
    {
      struct passwd *pwd;

      if (isdigit (key[i][0]))
        pwd = getpwuid (atol (key[i]));
      else
        pwd = getpwnam (key[i]);

      if (pwd == NULL)
        result = 2;
      else
        print_passwd (pwd);
    }

  return result;
}

print_group (struct group *grp)
{
  unsigned int i = 0;

  printf ("%s:%s:%ld:", grp->gr_name ? grp->gr_name : "",
          grp->gr_passwd ? grp->gr_passwd : "",
          (unsigned long)grp->gr_gid);

  while (grp->gr_mem[i] != NULL)
    {
      fputs (grp->gr_mem[i], stdout);
      ++i;
      if (grp->gr_mem[i] != NULL)
        fputs (",", stdout);
    }
  fputs ("\n", stdout);
}

print_passwd (struct passwd *pwd)
{
  printf ("%s:%s:%ld:%ld:%s:%s:%s\n",
          pwd->pw_name ? pwd->pw_name : "",
          pwd->pw_passwd ? pwd->pw_passwd : "",
          (unsigned long)pwd->pw_uid,
          (unsigned long)pwd->pw_gid,
          pwd->pw_gecos ? pwd->pw_gecos : "",
          pwd->pw_dir ? pwd->pw_dir : "",
          pwd->pw_shell ? pwd->pw_shell : "");
}

int main(int argc, char **argv)
{
  switch(argv[1][0])
    {
    case 'g': /* group */
      if (strcmp (argv[1], "group") == 0)
        {
          if (argc == 2)
            {
              struct group *grp;

              setgrent ();
              while ((grp = getgrent()) != NULL)
                print_group (grp);
              endgrent ();
            }
          else
            return group_keys (argc - 2, &argv[2]);
        }
      else
        goto error;
      break;

   case 'p': /* passwd, protocols */
      if (strcmp (argv[1], "passwd") == 0)
        {
          if (argc == 2)
            {
              struct passwd *pwd;

              setpwent ();
              while ((pwd = getpwent()) != NULL)
                print_passwd (pwd);
              endpwent ();
            }
          else
            return passwd_keys (argc - 2, &argv[2]);
        }
      else
        goto error;
      break;
    default:
    error:
      fprintf (stderr, "Unknown database: %s\n", argv[1]);
      return 1;
    }
  return 0;
}