NetBSD/usr.bin/ypcat/ypcat.c

193 lines
4.3 KiB
C
Raw Normal View History

2012-03-02 22:55:16 +04:00
/* $NetBSD: ypcat.c,v 1.18 2012/03/02 18:55:16 matt Exp $ */
1996-05-13 06:43:35 +04: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 10:16:29 +04:00
#include <sys/cdefs.h>
#ifndef lint
2012-03-02 22:55:16 +04:00
__RCSID("$NetBSD: ypcat.c,v 1.18 2012/03/02 18:55:16 matt Exp $");
#endif
1993-04-26 12:09:02 +04:00
#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/errno.h>
1993-04-26 12:09:02 +04:00
#include <ctype.h>
1997-07-18 10:16:29 +04:00
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1997-07-18 10:16:29 +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 int printit(int, char *, int, char *, int, char *);
static void usage(void) __attribute__((__noreturn__));
2011-01-12 21:28:19 +03:00
static int compressspace;
1993-04-26 12:09:02 +04:00
int
main(int argc, char *argv[])
1993-04-26 12:09:02 +04:00
{
2012-03-02 22:55:16 +04:00
char *domainname, *b_retry_cnt;
1993-04-26 12:09:02 +04:00
struct ypall_callback ypcb;
const char *inmap;
1993-04-26 12:09:02 +04:00
int notrans;
int c, r;
size_t i;
const struct ypalias *ypaliases;
int key;
1993-04-26 12:09:02 +04:00
setprogname(*argv);
2012-03-02 22:55:16 +04:00
domainname = b_retry_cnt = NULL;
1993-04-26 12:09:02 +04:00
notrans = key = 0;
ypaliases = ypalias_init();
while((c = getopt(argc, argv, "bd:kstx")) != -1) {
1997-07-18 10:16:29 +04:00
switch (c) {
case 'b':
b_retry_cnt = optarg;
break;
2011-01-12 21:28:19 +03:00
case 'd':
domainname = optarg;
break;
case 'k':
key++;
break;
case 's':
compressspace++;
break;
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 10:16:29 +04:00
1993-04-26 12:09:02 +04:00
case 't':
notrans++;
break;
1997-07-18 10:16:29 +04:00
1993-04-26 12:09:02 +04:00
default:
usage();
}
1997-07-18 10:16:29 +04:00
}
argc -= optind;
argv += optind;
1993-04-26 12:09:02 +04:00
1997-07-18 10:16:29 +04:00
if (argc != 1)
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 10:16:29 +04:00
if (domainname == NULL)
yp_get_default_domain(&domainname);
1997-07-18 10:16:29 +04:00
inmap = argv[0];
if (notrans == 0) {
for (i = 0; ypaliases[i].alias; i++)
1997-07-18 10:16:29 +04:00
if (strcmp(inmap, ypaliases[i].alias) == 0)
inmap = ypaliases[i].name;
}
1997-07-18 10:16:29 +04:00
1993-04-26 12:09:02 +04:00
ypcb.foreach = printit;
ypcb.data = key ? (void *)&key : NULL;
1993-04-26 12:09:02 +04:00
r = yp_all(domainname, inmap, &ypcb);
1997-07-18 10:16:29 +04:00
switch (r) {
1993-04-26 12:09:02 +04:00
case 0:
break;
1997-07-18 10:16:29 +04:00
1993-04-26 12:09:02 +04:00
case YPERR_YPBIND:
1997-07-18 10:16:29 +04:00
errx(1, "not running ypbind");
1993-04-26 12:09:02 +04:00
default:
1997-07-18 10:16:29 +04:00
errx(1, "no such map %s. Reason: %s", inmap, yperr_string(r));
1993-04-26 12:09:02 +04:00
}
return 0;
1993-04-26 12:09:02 +04:00
}
1997-07-18 10:16:29 +04:00
static int
printit(int instatus, char *inkey, int inkeylen, char *inval,
int invallen, char *indata)
1997-07-18 10:16:29 +04:00
{
if (instatus != YP_TRUE)
return instatus;
if (indata)
(void)printf("%*.*s", inkeylen, inkeylen, inkey);
2011-01-12 21:28:19 +03:00
if (invallen) {
if (indata)
(void)putc(' ', stdout);
if (compressspace) {
int i;
int hadspace = 0;
for (i = 0; i < invallen; i++) {
if (isspace((unsigned char)inval[i])) {
if (hadspace)
continue;
hadspace = 1;
(void)putc(' ', stdout);
} else {
hadspace = 0;
(void)putc(inval[i], stdout);
}
}
} else
(void)printf("%*.*s", invallen, invallen, inval);
}
(void)putc('\n', stdout);
1997-07-18 10:16:29 +04:00
return 0;
}
static void
usage(void)
1997-07-18 10:16:29 +04:00
{
(void)fprintf(stderr, "Usage: %s [-kst] [-b <num-retry> "
"[-d <domainname>] <mapname>\n", getprogname());
(void)fprintf(stderr, " %s -x\n", getprogname());
1997-07-18 10:16:29 +04:00
exit(1);
}