NetBSD/usr.bin/ypmatch/ypmatch.c

168 lines
3.8 KiB
C
Raw Normal View History

2012-03-02 22:57:27 +04:00
/* $NetBSD: ypmatch.c,v 1.21 2012/03/02 18:57:27 matt Exp $ */
1994-12-24 19:56:47 +03:00
/*
1994-05-25 13:52:05 +04:00
* Copyright (c) 1992, 1993 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.
*
* 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.
*/
1997-07-18 11:05:35 +04:00
#include <sys/cdefs.h>
#ifndef lint
2012-03-02 22:57:27 +04:00
__RCSID("$NetBSD: ypmatch.c,v 1.21 2012/03/02 18:57:27 matt Exp $");
#endif
1993-04-26 12:09:02 +04:00
#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
1997-07-18 11:05:35 +04:00
#include <ctype.h>
#include <err.h>
1993-04-26 12:09:02 +04:00
#include <stdio.h>
#include <stdlib.h>
1994-12-24 19:56:47 +03:00
#include <string.h>
1997-07-18 11:05:35 +04:00
#include <unistd.h>
1993-04-26 12:09:02 +04:00
#include <rpc/rpc.h>
#include <rpc/xdr.h>
#include <rpcsvc/yp_prot.h>
#include <rpcsvc/ypclnt.h>
#include "ypalias_init.h"
static void usage(void) __attribute__((__noreturn__));
1997-07-18 11:05:35 +04:00
1993-04-26 12:09:02 +04:00
int
main(int argc, char *argv[])
1993-04-26 12:09:02 +04:00
{
char *domainname, *b_retry_cnt;
char *inkey, *outbuf;
const char *inmap;
int outbuflen, key, null, notrans;
int c, r, len;
size_t i;
int rval;
const struct ypalias *ypaliases;
1993-04-26 12:09:02 +04:00
setprogname(*argv);
domainname = b_retry_cnt = NULL;
notrans = key = null = 0;
ypaliases = ypalias_init();
while ((c = getopt(argc, argv, "bd:ktxz")) != -1) {
1997-07-18 11:05:35 +04:00
switch (c) {
1993-04-26 12:09:02 +04:00
case 'x':
for(i = 0; ypaliases[i].alias; i++)
1993-04-26 12:09:02 +04:00
printf("Use \"%s\" for \"%s\"\n",
ypaliases[i].alias,
ypaliases[i].name);
return 0;
1997-07-18 11:05:35 +04:00
case 'b':
b_retry_cnt = optarg;
break;
1993-04-26 12:09:02 +04:00
case 'd':
domainname = optarg;
break;
1997-07-18 11:05:35 +04:00
1993-04-26 12:09:02 +04:00
case 't':
notrans++;
break;
1997-07-18 11:05:35 +04:00
1993-04-26 12:09:02 +04:00
case 'k':
key++;
break;
1997-07-18 11:05:35 +04:00
case 'z':
null++;
break;
1993-04-26 12:09:02 +04:00
default:
usage();
}
1997-07-18 11:05:35 +04:00
}
argc -= optind;
argv += optind;
1993-04-26 12:09:02 +04:00
1997-07-18 11:05:35 +04:00
if (argc < 2)
1993-04-26 12:09:02 +04:00
usage();
if (b_retry_cnt != NULL) {
char *s;
unsigned long l;
l = strtoul(b_retry_cnt, &s, 10);
if (*s != '\0' || l > 0xffff) usage();
yp_setbindtries((int)l);
}
1997-07-18 11:05:35 +04:00
if (domainname == NULL)
yp_get_default_domain(&domainname);
1997-07-18 11:05:35 +04:00
inmap = argv[argc - 1];
if (notrans == 0) {
for (i = 0; ypaliases[i].alias; i++)
1997-07-18 11:05:35 +04:00
if (strcmp(inmap, ypaliases[i].alias) == 0)
inmap = ypaliases[i].name;
}
rval = 0;
for(c = 0; c < (argc - 1); c++) {
inkey = argv[c];
1993-04-26 12:09:02 +04:00
len = strlen(inkey);
if (null)
len++;
r = yp_match(domainname, inmap, inkey, len,
1997-07-18 11:05:35 +04:00
&outbuf, &outbuflen);
switch (r) {
1993-04-26 12:09:02 +04:00
case 0:
1997-07-18 11:05:35 +04:00
if (key)
printf("%s: ", inkey);
fwrite(outbuf, outbuflen, 1, stdout);
putc('\n', stdout);
1993-04-26 12:09:02 +04:00
break;
1997-07-18 11:05:35 +04:00
1993-04-26 12:09:02 +04:00
case YPERR_YPBIND:
1997-07-18 11:05:35 +04:00
errx(1, "not running ypbind");
1993-04-26 12:09:02 +04:00
default:
1997-07-18 11:05:35 +04:00
warnx("can't match key %s in map %s. Reason: %s",
inkey, inmap, yperr_string(r));
rval = 1;
1993-04-26 12:09:02 +04:00
break;
}
}
return rval;
1993-04-26 12:09:02 +04:00
}
1997-07-18 11:05:35 +04:00
static void
usage(void)
1997-07-18 11:05:35 +04:00
{
(void)fprintf(stderr, "Usage: %s [-ktz] [-b <num-retry>] "
2012-03-02 22:57:27 +04:00
"[-d <domainname>] <key> ... <mapname>\n", getprogname());
(void)fprintf(stderr, " %s -x\n", getprogname());
1997-07-18 11:05:35 +04:00
exit(1);
}