1 /* Copyright (c) 1998-2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
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
20 /* getent: get entries from administrative database. */
35 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <netinet/ether.h>
38 #include <arpa/inet.h>
39 #include <arpa/nameser.h>
41 /* Get libc version number. */
44 #define PACKAGE _libc_intl_domainname
46 /* Name and version of program. */
47 static void print_version (FILE *stream
, struct argp_state
*state
);
48 void (*argp_program_version_hook
) (FILE *, struct argp_state
*) = print_version
;
50 /* Short description of parameters. */
51 static const char args_doc
[] = N_("database [key ...]");
53 /* Supported options. */
54 static const struct argp_option args_options
[] =
56 { "service", 's', "CONFIG", 0, N_("Service configuration to be used") },
57 { NULL
, 0, NULL
, 0, NULL
},
60 /* Prototype for option handler. */
61 static error_t
parse_option (int key
, char *arg
, struct argp_state
*state
);
63 /* Data structure to communicate with argp functions. */
64 static struct argp argp
=
66 args_options
, parse_option
, args_doc
, NULL
,
69 /* Print the version information. */
71 print_version (FILE *stream
, struct argp_state
*state
)
73 fprintf (stream
, "getent (GNU %s) %s\n", PACKAGE
, VERSION
);
74 fprintf (stream
, gettext ("\
75 Copyright (C) %s Free Software Foundation, Inc.\n\
76 This is free software; see the source for copying conditions. There is NO\n\
77 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
79 fprintf (stream
, gettext ("Written by %s.\n"), "Thorsten Kukuk");
82 /* This is for aliases */
84 print_aliases (struct aliasent
*alias
)
88 printf ("%s: ", alias
->alias_name
);
89 for (i
= strlen (alias
->alias_name
); i
< 14; ++i
)
90 fputs_unlocked (" ", stdout
);
92 for (i
= 0; i
< alias
->alias_members_len
; ++i
)
94 alias
->alias_members
[i
],
95 i
+ 1 == alias
->alias_members_len
? "\n" : ", ");
99 aliases_keys (int number
, char *key
[])
103 struct aliasent
*alias
;
108 while ((alias
= getaliasent ()) != NULL
)
109 print_aliases (alias
);
114 for (i
= 0; i
< number
; ++i
)
116 alias
= getaliasbyname (key
[i
]);
121 print_aliases (alias
);
127 /* This is for ethers */
129 ethers_keys (int number
, char *key
[])
136 fprintf (stderr
, _("Enumeration not supported on %s\n"), "ethers");
140 for (i
= 0; i
< number
; ++i
)
142 struct ether_addr
*ethp
, eth
;
143 char buffer
[1024], *p
;
145 ethp
= ether_aton (key
[i
]);
148 if (ether_ntohost (buffer
, ethp
))
157 if (ether_hostton (key
[i
], ð
))
165 printf ("%s %s\n", ether_ntoa (ethp
), p
);
171 /* This is for group */
173 print_group (struct group
*grp
)
177 printf ("%s:%s:%lu:", grp
->gr_name
? grp
->gr_name
: "",
178 grp
->gr_passwd
? grp
->gr_passwd
: "",
179 (unsigned long int) grp
->gr_gid
);
181 while (grp
->gr_mem
[i
] != NULL
)
183 fputs_unlocked (grp
->gr_mem
[i
], stdout
);
185 if (grp
->gr_mem
[i
] != NULL
)
186 putchar_unlocked (',');
188 putchar_unlocked ('\n');
192 group_keys (int number
, char *key
[])
201 while ((grp
= getgrent ()) != NULL
)
207 for (i
= 0; i
< number
; ++i
)
211 gid_t arg_gid
= strtoul(key
[i
], &ep
, 10);
213 if (errno
!= EINVAL
&& *key
[i
] != '\0' && *ep
== '\0')
214 /* Valid numeric gid. */
215 grp
= getgrgid (arg_gid
);
217 grp
= getgrnam (key
[i
]);
228 /* This is for hosts */
230 print_hosts (struct hostent
*host
)
234 for (cnt
= 0; host
->h_addr_list
[cnt
] != NULL
; ++cnt
)
236 char buf
[INET6_ADDRSTRLEN
];
237 const char *ip
= inet_ntop (host
->h_addrtype
, host
->h_addr_list
[cnt
],
240 printf ("%-15s %s", ip
, host
->h_name
);
243 for (i
= 0; host
->h_aliases
[i
] != NULL
; ++i
)
245 putchar_unlocked (' ');
246 fputs_unlocked (host
->h_aliases
[i
], stdout
);
248 putchar_unlocked ('\n');
253 hosts_keys (int number
, char *key
[])
257 struct hostent
*host
;
262 while ((host
= gethostent ()) != NULL
)
268 for (i
= 0; i
< number
; ++i
)
270 struct hostent
*host
= NULL
;
272 if (strchr (key
[i
], ':') != NULL
)
274 char addr
[IN6ADDRSZ
];
275 if (inet_pton (AF_INET6
, key
[i
], &addr
))
276 host
= gethostbyaddr (addr
, sizeof (addr
), AF_INET6
);
278 else if (isdigit (key
[i
][0]))
281 if (inet_pton (AF_INET
, key
[i
], &addr
))
282 host
= gethostbyaddr (addr
, sizeof (addr
), AF_INET
);
284 else if ((host
= gethostbyname2 (key
[i
], AF_INET6
)) == NULL
)
285 host
= gethostbyname2 (key
[i
], AF_INET
);
296 /* This is for hosts, but using getaddrinfo */
298 ahosts_keys_int (int af
, int xflags
, int number
, char *key
[])
302 struct hostent
*host
;
307 while ((host
= gethostent ()) != NULL
)
313 struct addrinfo hint
;
314 memset (&hint
, '\0', sizeof (hint
));
315 hint
.ai_flags
= AI_V4MAPPED
| AI_ADDRCONFIG
| AI_CANONNAME
| xflags
;
318 for (i
= 0; i
< number
; ++i
)
320 struct addrinfo
*res
;
322 if (getaddrinfo (key
[i
], NULL
, &hint
, &res
) != 0)
326 struct addrinfo
*runp
= res
;
332 if (runp
->ai_socktype
== SOCK_STREAM
)
334 else if (runp
->ai_socktype
== SOCK_DGRAM
)
336 else if (runp
->ai_socktype
== SOCK_RAW
)
340 snprintf (sockbuf
, sizeof (sockbuf
), "%d",
345 char buf
[INET6_ADDRSTRLEN
];
346 printf ("%-15s %-6s %s\n",
347 inet_ntop (runp
->ai_family
,
348 runp
->ai_family
== AF_INET
349 ? (void *) &((struct sockaddr_in
*) runp
->ai_addr
)->sin_addr
350 : (void *) &((struct sockaddr_in6
*) runp
->ai_addr
)->sin6_addr
,
353 runp
->ai_canonname
?: "");
355 runp
= runp
->ai_next
;
366 ahosts_keys (int number
, char *key
[])
368 return ahosts_keys_int (AF_UNSPEC
, 0, number
, key
);
372 ahostsv4_keys (int number
, char *key
[])
374 return ahosts_keys_int (AF_INET
, 0, number
, key
);
378 ahostsv6_keys (int number
, char *key
[])
380 return ahosts_keys_int (AF_INET6
, AI_V4MAPPED
, number
, key
);
383 /* This is for netgroup */
385 netgroup_keys (int number
, char *key
[])
392 fprintf (stderr
, _("Enumeration not supported on %s\n"), "netgroup");
396 for (i
= 0; i
< number
; ++i
)
398 if (!setnetgrent (key
[i
]))
404 printf ("%-21s", key
[i
]);
406 while (getnetgrent (p
, p
+ 1, p
+ 2))
407 printf (" (%s, %s, %s)", p
[0] ?: " ", p
[1] ?: "", p
[2] ?: "");
408 putchar_unlocked ('\n');
415 /* This is for networks */
417 print_networks (struct netent
*net
)
421 ip
.s_addr
= htonl (net
->n_net
);
423 printf ("%-21s %s", net
->n_name
, inet_ntoa (ip
));
426 while (net
->n_aliases
[i
] != NULL
)
428 putchar_unlocked (' ');
429 fputs_unlocked (net
->n_aliases
[i
], stdout
);
431 if (net
->n_aliases
[i
] != NULL
)
432 putchar_unlocked (',');
434 putchar_unlocked ('\n');
438 networks_keys (int number
, char *key
[])
447 while ((net
= getnetent ()) != NULL
)
448 print_networks (net
);
453 for (i
= 0; i
< number
; ++i
)
455 if (isdigit (key
[i
][0]))
456 net
= getnetbyaddr (inet_addr (key
[i
]), AF_UNIX
);
458 net
= getnetbyname (key
[i
]);
463 print_networks (net
);
469 /* Now is all for passwd */
471 print_passwd (struct passwd
*pwd
)
473 printf ("%s:%s:%lu:%lu:%s:%s:%s\n",
474 pwd
->pw_name
? pwd
->pw_name
: "",
475 pwd
->pw_passwd
? pwd
->pw_passwd
: "",
476 (unsigned long int) pwd
->pw_uid
,
477 (unsigned long int) pwd
->pw_gid
,
478 pwd
->pw_gecos
? pwd
->pw_gecos
: "",
479 pwd
->pw_dir
? pwd
->pw_dir
: "",
480 pwd
->pw_shell
? pwd
->pw_shell
: "");
484 passwd_keys (int number
, char *key
[])
493 while ((pwd
= getpwent ()) != NULL
)
499 for (i
= 0; i
< number
; ++i
)
503 uid_t arg_uid
= strtoul(key
[i
], &ep
, 10);
505 if (errno
!= EINVAL
&& *key
[i
] != '\0' && *ep
== '\0')
506 /* Valid numeric uid. */
507 pwd
= getpwuid (arg_uid
);
509 pwd
= getpwnam (key
[i
]);
520 /* This is for protocols */
522 print_protocols (struct protoent
*proto
)
526 printf ("%-21s %d", proto
->p_name
, proto
->p_proto
);
529 while (proto
->p_aliases
[i
] != NULL
)
531 putchar_unlocked (' ');
532 fputs_unlocked (proto
->p_aliases
[i
], stdout
);
535 putchar_unlocked ('\n');
539 protocols_keys (int number
, char *key
[])
543 struct protoent
*proto
;
548 while ((proto
= getprotoent ()) != NULL
)
549 print_protocols (proto
);
554 for (i
= 0; i
< number
; ++i
)
556 if (isdigit (key
[i
][0]))
557 proto
= getprotobynumber (atol (key
[i
]));
559 proto
= getprotobyname (key
[i
]);
564 print_protocols (proto
);
570 /* Now is all for rpc */
572 print_rpc (struct rpcent
*rpc
)
576 printf ("%-15s %d%s",
577 rpc
->r_name
, rpc
->r_number
, rpc
->r_aliases
[0] ? " " : "");
579 for (i
= 0; rpc
->r_aliases
[i
]; ++i
)
580 printf (" %s", rpc
->r_aliases
[i
]);
581 putchar_unlocked ('\n');
585 rpc_keys (int number
, char *key
[])
594 while ((rpc
= getrpcent ()) != NULL
)
600 for (i
= 0; i
< number
; ++i
)
602 if (isdigit (key
[i
][0]))
603 rpc
= getrpcbynumber (atol (key
[i
]));
605 rpc
= getrpcbyname (key
[i
]);
618 print_services (struct servent
*serv
)
622 printf ("%-21s %d/%s", serv
->s_name
, ntohs (serv
->s_port
), serv
->s_proto
);
625 while (serv
->s_aliases
[i
] != NULL
)
627 putchar_unlocked (' ');
628 fputs_unlocked (serv
->s_aliases
[i
], stdout
);
631 putchar_unlocked ('\n');
635 services_keys (int number
, char *key
[])
639 struct servent
*serv
;
644 while ((serv
= getservent ()) != NULL
)
645 print_services (serv
);
650 for (i
= 0; i
< number
; ++i
)
652 struct servent
*serv
;
653 char *proto
= strchr (key
[i
], '/');
658 if (isdigit (key
[i
][0]))
659 serv
= getservbyport (htons (atol (key
[i
])), proto
);
661 serv
= getservbyname (key
[i
], proto
);
666 print_services (serv
);
672 /* This is for shadow */
674 print_shadow (struct spwd
*sp
)
677 sp
->sp_namp
? sp
->sp_namp
: "",
678 sp
->sp_pwdp
? sp
->sp_pwdp
: "");
680 #define SHADOW_FIELD(n) \
682 putchar_unlocked (':'); \
684 printf ("%ld:", sp->n)
686 SHADOW_FIELD (sp_lstchg
);
687 SHADOW_FIELD (sp_min
);
688 SHADOW_FIELD (sp_max
);
689 SHADOW_FIELD (sp_warn
);
690 SHADOW_FIELD (sp_inact
);
691 SHADOW_FIELD (sp_expire
);
692 if (sp
->sp_flag
== ~0ul)
693 putchar_unlocked ('\n');
695 printf ("%lu\n", sp
->sp_flag
);
699 shadow_keys (int number
, char *key
[])
709 while ((sp
= getspent ()) != NULL
)
715 for (i
= 0; i
< number
; ++i
)
719 sp
= getspnam (key
[i
]);
733 int (*func
) (int number
, char *key
[]);
736 #define D(name) { #name, name ## _keys },
755 /* Handle arguments found by argp. */
757 parse_option (int key
, char *arg
, struct argp_state
*state
)
763 for (i
= 0; databases
[i
].name
; ++i
)
764 __nss_configure_lookup (databases
[i
].name
, arg
);
768 return ARGP_ERR_UNKNOWN
;
779 char *short_doc
, *long_doc
, *doc
, *p
;
781 short_doc
= _("getent - get entries from administrative database.");
782 long_doc
= _("Supported databases:");
783 len
= strlen (short_doc
) + strlen (long_doc
) + 3;
785 for (i
= 0; databases
[i
].name
; ++i
)
786 len
+= strlen (databases
[i
].name
) + 1;
788 doc
= (char *) malloc (len
);
793 p
= stpcpy (doc
, short_doc
);
795 p
= stpcpy (p
, long_doc
);
798 for (i
= 0, j
= 0; databases
[i
].name
; ++i
)
800 len
= strlen (databases
[i
].name
);
812 p
= mempcpy (p
, databases
[i
].name
, len
);
820 /* the main function */
822 main (int argc
, char *argv
[])
826 /* Set locale via LC_ALL. */
827 setlocale (LC_ALL
, "");
828 /* Set the text message domain. */
829 textdomain (PACKAGE
);
831 /* Build argp.doc. */
834 /* Parse and process arguments. */
835 argp_parse (&argp
, argc
, argv
, 0, &remaining
, NULL
);
837 if ((argc
- remaining
) < 1)
839 error (0, 0, gettext ("wrong number of arguments"));
840 argp_help (&argp
, stdout
, ARGP_HELP_SEE
, program_invocation_short_name
);
844 for (i
= 0; databases
[i
].name
; ++i
)
845 if (argv
[remaining
][0] == databases
[i
].name
[0]
846 && !strcmp (argv
[remaining
], databases
[i
].name
))
847 return databases
[i
].func (argc
- remaining
- 1, &argv
[remaining
+ 1]);
849 fprintf (stderr
, _("Unknown database: %s\n"), argv
[remaining
]);
850 argp_help (&argp
, stdout
, ARGP_HELP_SEE
, program_invocation_short_name
);