(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / nis / nis_print_group_entry.c
blob6f0ba8fbd458668bec99ec402e8189dfa130f740
1 /* Copyright (c) 1997, 1998, 2000, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <alloca.h>
21 #include <string.h>
22 #include <libintl.h>
23 #include <rpcsvc/nis.h>
25 void
26 nis_print_group_entry (const_nis_name group)
28 if (group != NULL && group[0] != '\0')
30 size_t grouplen = strlen (group);
31 char buf[grouplen + 50];
32 char leafbuf[grouplen + 3];
33 char domainbuf[grouplen + 3];
34 nis_result *res;
35 char *cp, *cp2;
36 u_int i;
38 cp = stpcpy (buf, nis_leaf_of_r (group, leafbuf, sizeof (leafbuf) - 1));
39 cp = stpcpy (cp, ".groups_dir");
40 cp2 = nis_domain_of_r (group, domainbuf, sizeof (domainbuf) - 1);
41 if (cp2 != NULL && cp2[0] != '\0')
43 *cp++ = '.';
44 stpcpy (cp, cp2);
46 res = nis_lookup (buf, FOLLOW_LINKS | EXPAND_NAME);
48 if (NIS_RES_STATUS(res) != NIS_SUCCESS)
49 return;
51 if ((NIS_RES_NUMOBJ (res) != 1) ||
52 (__type_of (NIS_RES_OBJECT (res)) != NIS_GROUP_OBJ))
53 return;
55 char *mem_exp[NIS_RES_NUMOBJ (res)];
56 char *mem_imp[NIS_RES_NUMOBJ (res)];
57 char *mem_rec[NIS_RES_NUMOBJ (res)];
58 char *nomem_exp[NIS_RES_NUMOBJ (res)];
59 char *nomem_imp[NIS_RES_NUMOBJ (res)];
60 char *nomem_rec[NIS_RES_NUMOBJ (res)];
61 unsigned long mem_exp_cnt = 0, mem_imp_cnt = 0, mem_rec_cnt = 0;
62 unsigned long nomem_exp_cnt = 0, nomem_imp_cnt = 0, nomem_rec_cnt = 0;
64 for (i = 0;
65 i < NIS_RES_OBJECT (res)->GR_data.gr_members.gr_members_len; ++i)
67 char *grmem =
68 NIS_RES_OBJECT (res)->GR_data.gr_members.gr_members_val[i];
69 int neg = grmem[0] == '-';
71 switch (grmem[neg])
73 case '*':
74 if (neg)
76 nomem_imp[nomem_imp_cnt] = grmem;
77 ++nomem_imp_cnt;
79 else
81 mem_imp[mem_imp_cnt] = grmem;
82 ++mem_imp_cnt;
84 break;
85 case '@':
86 if (neg)
88 nomem_rec[nomem_rec_cnt] = grmem;
89 ++nomem_rec_cnt;
91 else
93 mem_rec[mem_rec_cnt] = grmem;
94 ++mem_rec_cnt;
96 break;
97 default:
98 if (neg)
100 nomem_exp[nomem_exp_cnt] = grmem;
101 ++nomem_exp_cnt;
103 else
105 mem_exp[mem_exp_cnt] = grmem;
106 ++mem_exp_cnt;
108 break;
112 char buf[strlen (NIS_RES_OBJECT (res)->zo_domain) + 10];
113 printf (_("Group entry for \"%s.%s\" group:\n"),
114 NIS_RES_OBJECT (res)->zo_name,
115 nis_domain_of_r (NIS_RES_OBJECT (res)->zo_domain,
116 buf, strlen (NIS_RES_OBJECT (res)->zo_domain)
117 + 10));
119 if (mem_exp_cnt)
121 fputs (_(" Explicit members:\n"), stdout);
122 for (i = 0; i < mem_exp_cnt; ++i)
123 printf ("\t%s\n", mem_exp[i]);
125 else
126 fputs (_(" No explicit members\n"), stdout);
127 if (mem_imp_cnt)
129 fputs (_(" Implicit members:\n"), stdout);
130 for (i = 0; i < mem_imp_cnt; ++i)
131 printf ("\t%s\n", &mem_imp[i][2]);
133 else
134 fputs (_(" No implicit members\n"), stdout);
135 if (mem_rec_cnt)
137 fputs (_(" Recursive members:\n"), stdout);
138 for (i = 0; i < mem_rec_cnt; ++i)
139 printf ("\t%s\n", &mem_rec[i][1]);
141 else
142 fputs (_(" No recursive members\n"), stdout);
143 if (nomem_exp_cnt)
145 fputs (_(" Explicit nonmembers:\n"), stdout);
146 for (i = 0; i < nomem_exp_cnt; ++i)
147 printf ("\t%s\n", &nomem_exp[i][1]);
149 else
150 fputs (_(" No explicit nonmembers\n"), stdout);
151 if (nomem_imp_cnt)
153 fputs (_(" Implicit nonmembers:\n"), stdout);
154 for (i = 0; i < nomem_imp_cnt; ++i)
155 printf ("\t%s\n", &mem_imp[i][3]);
157 else
158 fputs (_(" No implicit nonmembers\n"), stdout);
159 if (nomem_rec_cnt)
161 fputs (_(" Explicit nonmembers:\n"), stdout);
162 for (i = 0; i < nomem_rec_cnt; ++i)
163 printf ("\t%s=n", &nomem_rec[i][2]);
165 else
166 fputs (_(" No recursive nonmembers\n"), stdout);
168 nis_freeresult (res);