1994-08-08 01:13:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992/3 Theo de Raadt <deraadt@fsa.ca>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-11 22:08:58 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-08-08 01:13:35 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2001-12-11 22:08:58 +00:00
|
|
|
|
2003-10-26 05:30:40 +00:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpc/xdr.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
2001-12-11 22:08:58 +00:00
|
|
|
#include <rpcsvc/ypclnt.h>
|
|
|
|
|
1998-06-12 13:04:59 +00:00
|
|
|
#include <netinet/in.h>
|
2001-12-11 22:08:58 +00:00
|
|
|
|
1998-06-12 13:04:59 +00:00
|
|
|
#include <arpa/inet.h>
|
2001-12-11 22:08:58 +00:00
|
|
|
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <ctype.h>
|
1997-08-29 11:56:51 +00:00
|
|
|
#include <err.h>
|
1994-08-08 01:13:35 +00:00
|
|
|
#include <netdb.h>
|
1997-08-29 11:56:51 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1994-08-08 01:13:35 +00:00
|
|
|
|
1995-04-22 00:23:59 +00:00
|
|
|
#define ERR_USAGE 1 /* bad arguments - display 'usage' message */
|
|
|
|
#define ERR_NOSUCHHOST 2 /* no such host */
|
|
|
|
#define ERR_NOBINDING 3 /* error from ypbind -- domain not bound */
|
|
|
|
#define ERR_NOYPBIND 4 /* ypbind not running */
|
|
|
|
#define ERR_NOMASTER 5 /* could not find master server */
|
|
|
|
|
1994-08-08 01:13:35 +00:00
|
|
|
extern bool_t xdr_domainname();
|
|
|
|
|
2015-07-29 02:21:35 +00:00
|
|
|
static const struct ypalias {
|
2003-10-26 05:30:40 +00:00
|
|
|
char *alias, *name;
|
2015-07-29 02:21:35 +00:00
|
|
|
} ypaliases[] = {
|
1994-08-08 01:13:35 +00:00
|
|
|
{ "passwd", "passwd.byname" },
|
1997-07-12 14:34:26 +00:00
|
|
|
{ "master.passwd", "master.passwd.byname" },
|
2009-06-25 16:15:39 +00:00
|
|
|
{ "shadow", "shadow.byname" },
|
1994-08-08 01:13:35 +00:00
|
|
|
{ "group", "group.byname" },
|
|
|
|
{ "networks", "networks.byaddr" },
|
|
|
|
{ "hosts", "hosts.byaddr" },
|
|
|
|
{ "protocols", "protocols.bynumber" },
|
|
|
|
{ "services", "services.byname" },
|
|
|
|
{ "aliases", "mail.aliases" },
|
|
|
|
{ "ethers", "ethers.byname" },
|
|
|
|
};
|
|
|
|
|
1997-08-29 11:56:51 +00:00
|
|
|
static void
|
2001-12-11 22:08:58 +00:00
|
|
|
usage(void)
|
1994-08-08 01:13:35 +00:00
|
|
|
{
|
1997-08-29 11:56:51 +00:00
|
|
|
fprintf(stderr, "%s\n%s\n",
|
|
|
|
"usage: ypwhich [-d domain] [[-t] -m [mname] | host]",
|
|
|
|
" ypwhich -x");
|
1995-04-22 00:23:59 +00:00
|
|
|
exit(ERR_USAGE);
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like yp_bind except can query a specific host
|
|
|
|
*/
|
2001-12-11 22:08:58 +00:00
|
|
|
static int
|
|
|
|
bind_host(char *dom, struct sockaddr_in *lsin)
|
1994-08-08 01:13:35 +00:00
|
|
|
{
|
|
|
|
struct hostent *hent = NULL;
|
|
|
|
struct ypbind_resp ypbr;
|
|
|
|
struct timeval tv;
|
|
|
|
CLIENT *client;
|
|
|
|
int sock, r;
|
1998-06-12 13:04:59 +00:00
|
|
|
struct in_addr ss_addr;
|
1994-08-08 01:13:35 +00:00
|
|
|
|
|
|
|
sock = RPC_ANYSOCK;
|
|
|
|
tv.tv_sec = 15;
|
|
|
|
tv.tv_usec = 0;
|
2001-12-11 22:08:58 +00:00
|
|
|
client = clntudp_create(lsin, YPBINDPROG, YPBINDVERS, tv, &sock);
|
2002-02-06 13:30:31 +00:00
|
|
|
if (client == NULL) {
|
1997-08-29 11:56:51 +00:00
|
|
|
warnx("can't clntudp_create: %s", yperr_string(YPERR_YPBIND));
|
2002-02-06 13:30:31 +00:00
|
|
|
return (YPERR_YPBIND);
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tv.tv_sec = 5;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
r = clnt_call(client, YPBINDPROC_DOMAIN,
|
2003-10-26 05:30:40 +00:00
|
|
|
(xdrproc_t)xdr_domainname, &dom,
|
|
|
|
(xdrproc_t)xdr_ypbind_resp, &ypbr, tv);
|
2002-02-06 13:30:31 +00:00
|
|
|
if (r != RPC_SUCCESS) {
|
1997-08-29 11:56:51 +00:00
|
|
|
warnx("can't clnt_call: %s", yperr_string(YPERR_YPBIND));
|
1994-08-08 01:13:35 +00:00
|
|
|
clnt_destroy(client);
|
2002-02-06 13:30:31 +00:00
|
|
|
return (YPERR_YPBIND);
|
1994-08-08 01:13:35 +00:00
|
|
|
} else {
|
|
|
|
if (ypbr.ypbind_status != YPBIND_SUCC_VAL) {
|
1997-08-29 11:56:51 +00:00
|
|
|
warnx("can't yp_bind: reason: %s",
|
2003-10-26 05:30:40 +00:00
|
|
|
ypbinderr_string(ypbr.ypbind_respbody.ypbind_error));
|
1994-08-08 01:13:35 +00:00
|
|
|
clnt_destroy(client);
|
2002-02-06 13:30:31 +00:00
|
|
|
return (r);
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
clnt_destroy(client);
|
|
|
|
|
2003-10-26 05:30:40 +00:00
|
|
|
ss_addr = ypbr.ypbind_respbody.ypbind_bindinfo.ypbind_binding_addr;
|
1994-08-08 01:13:35 +00:00
|
|
|
/*printf("%08x\n", ss_addr);*/
|
|
|
|
hent = gethostbyaddr((char *)&ss_addr, sizeof(ss_addr), AF_INET);
|
|
|
|
if (hent)
|
|
|
|
printf("%s\n", hent->h_name);
|
|
|
|
else
|
|
|
|
printf("%s\n", inet_ntoa(ss_addr));
|
2002-02-06 13:30:31 +00:00
|
|
|
return (0);
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-08-08 01:13:35 +00:00
|
|
|
int
|
2001-12-11 22:08:58 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-08-08 01:13:35 +00:00
|
|
|
{
|
2001-12-11 22:08:58 +00:00
|
|
|
char *domnam = NULL, *master;
|
2003-10-26 05:30:40 +00:00
|
|
|
char *map = NULL;
|
1994-08-08 01:13:35 +00:00
|
|
|
struct ypmaplist *ypml, *y;
|
|
|
|
struct hostent *hent;
|
2001-12-11 22:08:58 +00:00
|
|
|
struct sockaddr_in lsin;
|
2010-06-19 16:24:55 +00:00
|
|
|
int notrans, mode;
|
2001-12-11 22:08:58 +00:00
|
|
|
int c, r;
|
|
|
|
u_int i;
|
1994-08-08 01:13:35 +00:00
|
|
|
|
2010-06-19 16:24:55 +00:00
|
|
|
notrans = mode = 0;
|
2002-02-06 13:30:31 +00:00
|
|
|
while ((c = getopt(argc, argv, "xd:mt")) != -1)
|
|
|
|
switch (c) {
|
1994-08-08 01:13:35 +00:00
|
|
|
case 'x':
|
2015-08-13 02:36:37 +00:00
|
|
|
for (i = 0; i < nitems(ypaliases); i++)
|
1995-07-20 16:30:15 +00:00
|
|
|
printf("\"%s\" is an alias for \"%s\"\n",
|
1994-08-08 01:13:35 +00:00
|
|
|
ypaliases[i].alias,
|
|
|
|
ypaliases[i].name);
|
|
|
|
exit(0);
|
|
|
|
case 'd':
|
2001-12-11 22:08:58 +00:00
|
|
|
domnam = optarg;
|
1994-08-08 01:13:35 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
notrans++;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
mode++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2015-08-13 02:36:37 +00:00
|
|
|
if (domnam == NULL)
|
2001-12-11 22:08:58 +00:00
|
|
|
yp_get_default_domain(&domnam);
|
1997-08-29 11:56:51 +00:00
|
|
|
|
2002-02-06 13:30:31 +00:00
|
|
|
if (mode == 0) {
|
|
|
|
switch (argc-optind) {
|
1994-08-08 01:13:35 +00:00
|
|
|
case 0:
|
2001-12-11 22:08:58 +00:00
|
|
|
bzero(&lsin, sizeof lsin);
|
|
|
|
lsin.sin_family = AF_INET;
|
|
|
|
lsin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
|
1994-08-08 01:13:35 +00:00
|
|
|
|
2002-02-06 13:30:31 +00:00
|
|
|
if (bind_host(domnam, &lsin))
|
1995-04-22 00:23:59 +00:00
|
|
|
exit(ERR_NOBINDING);
|
1994-08-08 01:13:35 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2001-12-11 22:08:58 +00:00
|
|
|
bzero(&lsin, sizeof lsin);
|
|
|
|
lsin.sin_family = AF_INET;
|
2002-02-27 14:32:43 +00:00
|
|
|
if ((lsin.sin_addr.s_addr = inet_addr(argv[optind])) == INADDR_NONE) {
|
1994-08-08 01:13:35 +00:00
|
|
|
hent = gethostbyname(argv[optind]);
|
2002-02-06 13:30:31 +00:00
|
|
|
if (!hent)
|
1997-08-29 11:56:51 +00:00
|
|
|
errx(ERR_NOSUCHHOST, "host %s unknown", argv[optind]);
|
1994-08-08 01:13:35 +00:00
|
|
|
bcopy((char *)hent->h_addr_list[0],
|
2001-12-11 22:08:58 +00:00
|
|
|
(char *)&lsin.sin_addr, sizeof lsin.sin_addr);
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
2002-02-06 13:30:31 +00:00
|
|
|
if (bind_host(domnam, &lsin))
|
1995-04-22 00:23:59 +00:00
|
|
|
exit(ERR_NOBINDING);
|
1994-08-08 01:13:35 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2002-02-06 13:30:31 +00:00
|
|
|
if (argc-optind > 1)
|
1994-08-08 01:13:35 +00:00
|
|
|
usage();
|
|
|
|
|
2002-02-06 13:30:31 +00:00
|
|
|
if (argv[optind]) {
|
1994-08-08 01:13:35 +00:00
|
|
|
map = argv[optind];
|
2015-08-13 02:36:37 +00:00
|
|
|
if (notrans == 0) {
|
|
|
|
for (i = 0; i < nitems(ypaliases); i++)
|
|
|
|
if (strcmp(map, ypaliases[i].alias) == 0)
|
|
|
|
map = ypaliases[i].name;
|
|
|
|
}
|
2001-12-11 22:08:58 +00:00
|
|
|
r = yp_master(domnam, map, &master);
|
2002-02-06 13:30:31 +00:00
|
|
|
switch (r) {
|
1994-08-08 01:13:35 +00:00
|
|
|
case 0:
|
|
|
|
printf("%s\n", master);
|
|
|
|
free(master);
|
|
|
|
break;
|
|
|
|
case YPERR_YPBIND:
|
1997-08-29 11:56:51 +00:00
|
|
|
errx(ERR_NOYPBIND, "not running ypbind");
|
1994-08-08 01:13:35 +00:00
|
|
|
default:
|
2004-04-04 19:17:38 +00:00
|
|
|
errx(ERR_NOMASTER, "can't find master for map %s: reason: %s",
|
1994-08-08 01:13:35 +00:00
|
|
|
map, yperr_string(r));
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ypml = NULL;
|
2001-12-11 22:08:58 +00:00
|
|
|
r = yp_maplist(domnam, &ypml);
|
2002-02-06 13:30:31 +00:00
|
|
|
switch (r) {
|
1994-08-08 01:13:35 +00:00
|
|
|
case 0:
|
2002-02-06 13:30:31 +00:00
|
|
|
for (y = ypml; y;) {
|
1994-08-08 01:13:35 +00:00
|
|
|
ypml = y;
|
2003-10-26 05:30:40 +00:00
|
|
|
r = yp_master(domnam, ypml->ypml_name, &master);
|
2002-02-06 13:30:31 +00:00
|
|
|
switch (r) {
|
1994-08-08 01:13:35 +00:00
|
|
|
case 0:
|
2003-10-26 05:30:40 +00:00
|
|
|
printf("%s %s\n", ypml->ypml_name, master);
|
1994-08-08 01:13:35 +00:00
|
|
|
free(master);
|
|
|
|
break;
|
|
|
|
default:
|
1997-08-29 11:56:51 +00:00
|
|
|
warnx("can't find the master of %s: reason: %s",
|
2003-10-26 05:30:40 +00:00
|
|
|
ypml->ypml_name, yperr_string(r));
|
1994-08-08 01:13:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-10-26 05:30:40 +00:00
|
|
|
y = ypml->ypml_next;
|
1994-08-08 01:13:35 +00:00
|
|
|
free(ypml);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case YPERR_YPBIND:
|
1997-08-29 11:56:51 +00:00
|
|
|
errx(ERR_NOYPBIND, "not running ypbind");
|
1994-08-08 01:13:35 +00:00
|
|
|
default:
|
2004-04-04 19:17:38 +00:00
|
|
|
errx(ERR_NOMASTER, "can't get map list for domain %s: reason: %s",
|
2001-12-11 22:08:58 +00:00
|
|
|
domnam, yperr_string(r));
|
1994-08-08 01:13:35 +00:00
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|