1 /* Copyright (c) 1997 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
23 #include <rpcsvc/nis.h>
26 nis_nstype2str (const nstype type
)
52 print_ttl (const u_long ttl
)
54 unsigned long int time
, s
, m
, h
;
63 printf ("%lu:%lu:%lu\n", h
, m
, s
);
67 print_flags (const u_long flags
)
71 if (flags
& TA_SEARCHABLE
)
72 fputs ("SEARCHABLE, ", stdout
);
74 if (flags
& TA_BINARY
)
76 fputs ("BINARY DATA", stdout
);
78 fputs (", XDR ENCODED", stdout
);
80 fputs (", ASN.1 ENCODED", stdout
);
82 fputs (", ENCRYPTED", stdout
);
86 fputs("TEXTUAL DATA", stdout
);
87 if (flags
& TA_SEARCHABLE
)
90 fputs (", CASE INSENSITIVE", stdout
);
92 fputs (", CASE SENSITIVE", stdout
);
96 fputs (")\n", stdout
);
100 nis_print_objtype (enum zotypes type
)
105 fputs (_("BOGUS OBJECT\n"), stdout
);
108 fputs (_("NO OBJECT\n"), stdout
);
110 case NIS_DIRECTORY_OBJ
:
111 fputs (_("DIRECTORY\n"), stdout
);
114 fputs (_("GROUP\n"), stdout
);
117 fputs (_("TABLE\n"), stdout
);
120 fputs (_("ENTRY\n"), stdout
);
123 fputs (_("LINK\n"), stdout
);
125 case NIS_PRIVATE_OBJ
:
126 fputs (_("PRIVATE\n"), stdout
);
129 fputs (_("(Unknown object)\n"), stdout
);
135 nis_print_rights (const u_long access
)
141 acc
= access
; /* Parameter is const ! */
142 result
[i
= 16] = '\0';
146 result
[i
+ 0] = (acc
& NIS_READ_ACC
) ? 'r' : '-';
147 result
[i
+ 1] = (acc
& NIS_MODIFY_ACC
) ? 'm' : '-';
148 result
[i
+ 2] = (acc
& NIS_CREATE_ACC
) ? 'c' : '-';
149 result
[i
+ 3] = (acc
& NIS_DESTROY_ACC
) ? 'd' : '-';
153 printf ("%s", result
);
157 nis_print_directory (const directory_obj
*dir
)
162 printf (_("Name : '%s'\n"), dir
->do_name
);
163 printf (_("Type : %s\n"), nis_nstype2str (dir
->do_type
));
164 sptr
= dir
->do_servers
.do_servers_val
;
165 for (i
= 0; i
< dir
->do_servers
.do_servers_len
; i
++)
168 fputs (_("Master Server :\n"), stdout
);
170 fputs (_("Replicate :\n"), stdout
);
171 printf (_("\tName : %s\n"), sptr
->name
);
172 fputs (_("\tPublic Key : "), stdout
);
173 switch (sptr
->key_type
)
176 fputs (_("None.\n"), stdout
);
179 fprintf (stdout
, _("Diffie-Hellmann (%d bits)\n"),
180 (sptr
->pkey
.n_len
- 1) * 4);
181 /* sptr->pkey.n_len counts the last 0, too */
184 fprintf (stdout
, _("RSA (%d bits)\n"),
185 (sptr
->pkey
.n_len
- 1) * 4);
188 fputs (_("Kerberos.\n"), stdout
);
191 fprintf (stdout
, _("Unknown (type = %d, bits = %d)\n"),
192 sptr
->key_type
, (sptr
->pkey
.n_len
- 1) * 4);
196 if (sptr
->ep
.ep_len
!= 0)
201 ptr
= sptr
->ep
.ep_val
;
202 printf (_("\tUniversal addresses (%u)\n"), sptr
->ep
.ep_len
);
203 for (j
= 0; j
< sptr
->ep
.ep_len
; j
++)
205 printf ("\t[%d] - ", j
+ 1);
206 if (ptr
->proto
!= NULL
&& strlen (ptr
->proto
) > 0)
207 printf ("%s, ", ptr
->proto
);
210 if (ptr
->family
!= NULL
&& strlen (ptr
->family
) > 0)
211 printf ("%s, ", ptr
->family
);
214 if (ptr
->uaddr
!= NULL
&& strlen (ptr
->uaddr
) > 0)
215 printf ("%s\n", ptr
->uaddr
);
224 fputs (_("Time to live : "), stdout
);
225 print_ttl (dir
->do_ttl
);
226 fputs (_("Default Access rights :\n"), stdout
);
227 if (dir
->do_armask
.do_armask_len
!= 0)
231 ptr
= dir
->do_armask
.do_armask_val
;
232 for (i
= 0; i
< dir
->do_armask
.do_armask_len
; i
++)
234 nis_print_rights (ptr
->oa_rights
);
235 printf (_("\tType : %s\n"), nis_nstype2str (ptr
->oa_otype
));
236 printf (_("\tAccess rights: "));
237 nis_print_rights (ptr
->oa_rights
);
238 fputs ("\n", stdout
);
245 nis_print_group (const group_obj
*obj
)
249 fputs (_("Group Flags :"), stdout
);
251 printf ("0x%08lX", obj
->gr_flags
);
252 fputs (_("\nGroup Members :\n"), stdout
);
254 for (i
= 0; i
< obj
->gr_members
.gr_members_len
; i
++)
255 printf ("\t%s\n", obj
->gr_members
.gr_members_val
[i
]);
259 nis_print_table (const table_obj
*obj
)
263 printf (_("Table Type : %s\n"), obj
->ta_type
);
264 printf (_("Number of Columns : %d\n"), obj
->ta_maxcol
);
265 printf (_("Character Separator : %c\n"), obj
->ta_sep
);
266 printf (_("Search Path : %s\n"), obj
->ta_path
);
267 fputs (_("Columns :\n"), stdout
);
268 for (i
= 0; i
< obj
->ta_cols
.ta_cols_len
; i
++)
270 printf (_("\t[%d]\tName : %s\n"), i
,
271 obj
->ta_cols
.ta_cols_val
[i
].tc_name
);
272 fputs (_("\t\tAttributes : "), stdout
);
273 print_flags (obj
->ta_cols
.ta_cols_val
[i
].tc_flags
);
274 fputs (_("\t\tAccess Rights : "), stdout
);
275 nis_print_rights (obj
->ta_cols
.ta_cols_val
[i
].tc_rights
);
276 fputc ('\n', stdout
);
281 nis_print_link (const link_obj
*obj
)
283 fputs (_("Linked Object Type : "), stdout
);
284 nis_print_objtype (obj
->li_rtype
);
285 printf (_("Linked to : %s\n"), obj
->li_name
);
286 /* XXX Print the attributs here, if they exists */
290 nis_print_entry (const entry_obj
*obj
)
294 printf (_("\tEntry data of type %s\n"), obj
->en_type
);
295 for (i
= 0; i
< obj
->en_cols
.en_cols_len
; i
++)
297 printf (_("\t[%u] - [%u bytes] "), i
,
298 obj
->en_cols
.en_cols_val
[i
].ec_value
.ec_value_len
);
299 if ((obj
->en_cols
.en_cols_val
[i
].ec_flags
& EN_CRYPT
) == EN_CRYPT
)
300 fputs (_("Encrypted data\n"), stdout
);
301 else if ((obj
->en_cols
.en_cols_val
[i
].ec_flags
& EN_BINARY
) == EN_BINARY
)
302 fputs (_("Binary data\n"), stdout
);
304 printf ("%.*s\n", (int)obj
->en_cols
.en_cols_val
[i
].ec_value
.ec_value_len
,
305 obj
->en_cols
.en_cols_val
[i
].ec_value
.ec_value_val
);
310 nis_print_object (const nis_object
* obj
)
312 printf (_("Object Name : %s\n"), obj
->zo_name
);
313 printf (_("Directory : %s\n"), obj
->zo_domain
);
314 printf (_("Owner : %s\n"), obj
->zo_owner
);
315 printf (_("Group : %s\n"), obj
->zo_group
);
316 fputs (_("Access Rights : "), stdout
);
317 nis_print_rights (obj
->zo_access
);
318 printf (_("\nTime to Live : "));
319 print_ttl (obj
->zo_ttl
);
320 printf (_("Creation Time : %s"), ctime (&obj
->zo_oid
.ctime
));
321 printf (_("Mod. Time : %s"), ctime (&obj
->zo_oid
.mtime
));
322 fputs (_("Object Type : "), stdout
);
323 nis_print_objtype (obj
->zo_data
.zo_type
);
324 switch (obj
->zo_data
.zo_type
)
326 case NIS_DIRECTORY_OBJ
:
327 nis_print_directory (&obj
->zo_data
.objdata_u
.di_data
);
330 nis_print_group (&obj
->zo_data
.objdata_u
.gr_data
);
333 nis_print_table (&obj
->zo_data
.objdata_u
.ta_data
);
336 nis_print_entry (&obj
->zo_data
.objdata_u
.en_data
);
339 nis_print_link (&obj
->zo_data
.objdata_u
.li_data
);
341 case NIS_PRIVATE_OBJ
:
342 printf (_(" Data Length = %u\n"),
343 obj
->zo_data
.objdata_u
.po_data
.po_data_len
);
351 nis_print_result (const nis_result
*res
)
355 printf (_("Status : %s\n"), nis_sperrno (res
->status
));
356 printf (_("Number of objects : %u\n"), res
->objects
.objects_len
);
358 for (i
= 0; i
< res
->objects
.objects_len
; i
++)
360 printf (_("Object #%d:\n"), i
);
361 nis_print_object (&res
->objects
.objects_val
[i
]);