Fix bug in firstversions.awk version range handling.
[glibc.git] / nis / nis_print_group_entry.c
blob925c950299ac4a3b7f0754f18028ab1ded81bbb5
1 /* Copyright (c) 1997,1998,2000,2004,2006,2011
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <alloca.h>
22 #include <string.h>
23 #include <libintl.h>
24 #include <rpcsvc/nis.h>
26 void
27 nis_print_group_entry (const_nis_name group)
29 if (group != NULL && group[0] != '\0')
31 size_t grouplen = strlen (group);
32 char buf[grouplen + 50];
33 char leafbuf[grouplen + 3];
34 char domainbuf[grouplen + 3];
35 nis_result *res;
36 char *cp, *cp2;
37 u_int i;
39 cp = stpcpy (buf, nis_leaf_of_r (group, leafbuf, sizeof (leafbuf) - 1));
40 cp = stpcpy (cp, ".groups_dir");
41 cp2 = nis_domain_of_r (group, domainbuf, sizeof (domainbuf) - 1);
42 if (cp2 != NULL && cp2[0] != '\0')
44 *cp++ = '.';
45 stpcpy (cp, cp2);
47 res = nis_lookup (buf, FOLLOW_LINKS | EXPAND_NAME);
49 if (res == NULL)
50 return;
52 if (NIS_RES_STATUS (res) != NIS_SUCCESS
53 || NIS_RES_NUMOBJ (res) != 1
54 || __type_of (NIS_RES_OBJECT (res)) != NIS_GROUP_OBJ)
56 nis_freeresult (res);
57 return;
60 char *mem_exp[NIS_RES_NUMOBJ (res)];
61 char *mem_imp[NIS_RES_NUMOBJ (res)];
62 char *mem_rec[NIS_RES_NUMOBJ (res)];
63 char *nomem_exp[NIS_RES_NUMOBJ (res)];
64 char *nomem_imp[NIS_RES_NUMOBJ (res)];
65 char *nomem_rec[NIS_RES_NUMOBJ (res)];
66 unsigned long mem_exp_cnt = 0, mem_imp_cnt = 0, mem_rec_cnt = 0;
67 unsigned long nomem_exp_cnt = 0, nomem_imp_cnt = 0, nomem_rec_cnt = 0;
69 for (i = 0;
70 i < NIS_RES_OBJECT (res)->GR_data.gr_members.gr_members_len; ++i)
72 char *grmem =
73 NIS_RES_OBJECT (res)->GR_data.gr_members.gr_members_val[i];
74 int neg = grmem[0] == '-';
76 switch (grmem[neg])
78 case '*':
79 if (neg)
81 nomem_imp[nomem_imp_cnt] = grmem;
82 ++nomem_imp_cnt;
84 else
86 mem_imp[mem_imp_cnt] = grmem;
87 ++mem_imp_cnt;
89 break;
90 case '@':
91 if (neg)
93 nomem_rec[nomem_rec_cnt] = grmem;
94 ++nomem_rec_cnt;
96 else
98 mem_rec[mem_rec_cnt] = grmem;
99 ++mem_rec_cnt;
101 break;
102 default:
103 if (neg)
105 nomem_exp[nomem_exp_cnt] = grmem;
106 ++nomem_exp_cnt;
108 else
110 mem_exp[mem_exp_cnt] = grmem;
111 ++mem_exp_cnt;
113 break;
117 char buf[strlen (NIS_RES_OBJECT (res)->zo_domain) + 10];
118 printf (_("Group entry for \"%s.%s\" group:\n"),
119 NIS_RES_OBJECT (res)->zo_name,
120 nis_domain_of_r (NIS_RES_OBJECT (res)->zo_domain,
121 buf, strlen (NIS_RES_OBJECT (res)->zo_domain)
122 + 10));
124 if (mem_exp_cnt)
126 fputs (_(" Explicit members:\n"), stdout);
127 for (i = 0; i < mem_exp_cnt; ++i)
128 printf ("\t%s\n", mem_exp[i]);
130 else
131 fputs (_(" No explicit members\n"), stdout);
132 if (mem_imp_cnt)
134 fputs (_(" Implicit members:\n"), stdout);
135 for (i = 0; i < mem_imp_cnt; ++i)
136 printf ("\t%s\n", &mem_imp[i][2]);
138 else
139 fputs (_(" No implicit members\n"), stdout);
140 if (mem_rec_cnt)
142 fputs (_(" Recursive members:\n"), stdout);
143 for (i = 0; i < mem_rec_cnt; ++i)
144 printf ("\t%s\n", &mem_rec[i][1]);
146 else
147 fputs (_(" No recursive members\n"), stdout);
148 if (nomem_exp_cnt)
150 fputs (_(" Explicit nonmembers:\n"), stdout);
151 for (i = 0; i < nomem_exp_cnt; ++i)
152 printf ("\t%s\n", &nomem_exp[i][1]);
154 else
155 fputs (_(" No explicit nonmembers\n"), stdout);
156 if (nomem_imp_cnt)
158 fputs (_(" Implicit nonmembers:\n"), stdout);
159 for (i = 0; i < nomem_imp_cnt; ++i)
160 printf ("\t%s\n", &nomem_imp[i][3]);
162 else
163 fputs (_(" No implicit nonmembers\n"), stdout);
164 if (nomem_rec_cnt)
166 fputs (_(" Recursive nonmembers:\n"), stdout);
167 for (i = 0; i < nomem_rec_cnt; ++i)
168 printf ("\t%s=n", &nomem_rec[i][2]);
170 else
171 fputs (_(" No recursive nonmembers\n"), stdout);
173 nis_freeresult (res);