ypcat.c revision 1.8 1 1.8 lukem /* $NetBSD: ypcat.c,v 1.8 1997/11/01 06:40:35 lukem Exp $ */
2 1.6 thorpej
3 1.2 deraadt /*
4 1.3 deraadt * Copyright (c) 1992, 1993 Theo de Raadt <deraadt (at) fsa.ca>
5 1.2 deraadt * All rights reserved.
6 1.2 deraadt *
7 1.2 deraadt * Redistribution and use in source and binary forms, with or without
8 1.2 deraadt * modification, are permitted provided that the following conditions
9 1.2 deraadt * are met:
10 1.2 deraadt * 1. Redistributions of source code must retain the above copyright
11 1.2 deraadt * notice, this list of conditions and the following disclaimer.
12 1.2 deraadt * 2. Redistributions in binary form must reproduce the above copyright
13 1.2 deraadt * notice, this list of conditions and the following disclaimer in the
14 1.2 deraadt * documentation and/or other materials provided with the distribution.
15 1.3 deraadt * 3. All advertising materials mentioning features or use of this software
16 1.3 deraadt * must display the following acknowledgement:
17 1.3 deraadt * This product includes software developed by Theo de Raadt.
18 1.3 deraadt * 4. The name of the author may not be used to endorse or promote
19 1.2 deraadt * products derived from this software without specific prior written
20 1.2 deraadt * permission.
21 1.2 deraadt *
22 1.2 deraadt * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
23 1.2 deraadt * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.2 deraadt * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.2 deraadt * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
26 1.2 deraadt * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.2 deraadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.2 deraadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.2 deraadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.2 deraadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.2 deraadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.2 deraadt * SUCH DAMAGE.
33 1.2 deraadt */
34 1.2 deraadt
35 1.7 thorpej #include <sys/cdefs.h>
36 1.7 thorpej #ifndef lint
37 1.8 lukem __RCSID("$NetBSD: ypcat.c,v 1.8 1997/11/01 06:40:35 lukem Exp $");
38 1.2 deraadt #endif
39 1.2 deraadt
40 1.1 deraadt #include <sys/param.h>
41 1.1 deraadt #include <sys/types.h>
42 1.1 deraadt #include <sys/socket.h>
43 1.7 thorpej #include <ctype.h>
44 1.7 thorpej #include <err.h>
45 1.1 deraadt #include <stdio.h>
46 1.7 thorpej #include <unistd.h>
47 1.1 deraadt
48 1.1 deraadt #include <rpc/rpc.h>
49 1.1 deraadt #include <rpc/xdr.h>
50 1.1 deraadt #include <rpcsvc/yp_prot.h>
51 1.1 deraadt #include <rpcsvc/ypclnt.h>
52 1.1 deraadt
53 1.7 thorpej const struct ypalias {
54 1.1 deraadt char *alias, *name;
55 1.1 deraadt } ypaliases[] = {
56 1.1 deraadt { "passwd", "passwd.byname" },
57 1.1 deraadt { "group", "group.byname" },
58 1.1 deraadt { "networks", "networks.byaddr" },
59 1.1 deraadt { "hosts", "hosts.byaddr" },
60 1.1 deraadt { "protocols", "protocols.bynumber" },
61 1.1 deraadt { "services", "services.byname" },
62 1.1 deraadt { "aliases", "mail.aliases" },
63 1.1 deraadt { "ethers", "ethers.byname" },
64 1.1 deraadt };
65 1.1 deraadt
66 1.7 thorpej int main __P((int, char *[]));
67 1.7 thorpej int printit __P((int, char *, int, char *, int, char *));
68 1.7 thorpej void usage __P((void));
69 1.7 thorpej
70 1.1 deraadt int key;
71 1.1 deraadt
72 1.7 thorpej extern char *__progname;
73 1.1 deraadt
74 1.1 deraadt int
75 1.1 deraadt main(argc, argv)
76 1.7 thorpej int argc;
77 1.7 thorpej char *argv[];
78 1.1 deraadt {
79 1.1 deraadt char *domainname;
80 1.1 deraadt struct ypall_callback ypcb;
81 1.1 deraadt char *inmap;
82 1.1 deraadt int notrans;
83 1.1 deraadt int c, r, i;
84 1.1 deraadt
85 1.5 jtc domainname = NULL;
86 1.1 deraadt notrans = key = 0;
87 1.7 thorpej while((c = getopt(argc, argv, "xd:kt")) != -1) {
88 1.7 thorpej switch (c) {
89 1.1 deraadt case 'x':
90 1.7 thorpej for (i = 0;
91 1.7 thorpej i < sizeof(ypaliases)/sizeof(ypaliases[0]); i++)
92 1.1 deraadt printf("Use \"%s\" for \"%s\"\n",
93 1.1 deraadt ypaliases[i].alias,
94 1.1 deraadt ypaliases[i].name);
95 1.1 deraadt exit(0);
96 1.7 thorpej
97 1.1 deraadt case 'd':
98 1.1 deraadt domainname = optarg;
99 1.1 deraadt break;
100 1.7 thorpej
101 1.1 deraadt case 't':
102 1.1 deraadt notrans++;
103 1.1 deraadt break;
104 1.7 thorpej
105 1.1 deraadt case 'k':
106 1.1 deraadt key++;
107 1.1 deraadt break;
108 1.7 thorpej
109 1.1 deraadt default:
110 1.1 deraadt usage();
111 1.1 deraadt }
112 1.7 thorpej }
113 1.7 thorpej
114 1.7 thorpej argc -= optind;
115 1.7 thorpej argv += optind;
116 1.1 deraadt
117 1.7 thorpej if (argc != 1)
118 1.1 deraadt usage();
119 1.5 jtc
120 1.7 thorpej if (domainname == NULL)
121 1.5 jtc yp_get_default_domain(&domainname);
122 1.1 deraadt
123 1.7 thorpej inmap = argv[0];
124 1.7 thorpej if (notrans == 0) {
125 1.7 thorpej for (i = 0; i < sizeof(ypaliases)/sizeof(ypaliases[0]); i++)
126 1.7 thorpej if (strcmp(inmap, ypaliases[i].alias) == 0)
127 1.4 jtc inmap = ypaliases[i].name;
128 1.4 jtc }
129 1.7 thorpej
130 1.1 deraadt ypcb.foreach = printit;
131 1.1 deraadt ypcb.data = NULL;
132 1.1 deraadt
133 1.1 deraadt r = yp_all(domainname, inmap, &ypcb);
134 1.7 thorpej switch (r) {
135 1.1 deraadt case 0:
136 1.1 deraadt break;
137 1.7 thorpej
138 1.1 deraadt case YPERR_YPBIND:
139 1.7 thorpej errx(1, "not running ypbind");
140 1.7 thorpej
141 1.1 deraadt default:
142 1.7 thorpej errx(1, "no such map %s. Reason: %s", inmap, yperr_string(r));
143 1.1 deraadt }
144 1.1 deraadt exit(0);
145 1.7 thorpej }
146 1.7 thorpej
147 1.7 thorpej int
148 1.7 thorpej printit(instatus, inkey, inkeylen, inval, invallen, indata)
149 1.7 thorpej int instatus;
150 1.7 thorpej char *inkey;
151 1.7 thorpej int inkeylen;
152 1.7 thorpej char *inval;
153 1.7 thorpej int invallen;
154 1.7 thorpej char *indata;
155 1.7 thorpej {
156 1.7 thorpej
157 1.7 thorpej if (instatus != YP_TRUE)
158 1.7 thorpej return instatus;
159 1.7 thorpej if (key)
160 1.8 lukem printf("%*.*s", inkeylen, inkeylen, inkey);
161 1.8 lukem if (invallen)
162 1.8 lukem printf("%s%*.*s", (key ? " " : ""), invallen, invallen, inval);
163 1.8 lukem printf("\n");
164 1.7 thorpej return 0;
165 1.7 thorpej }
166 1.7 thorpej
167 1.7 thorpej void
168 1.7 thorpej usage()
169 1.7 thorpej {
170 1.7 thorpej
171 1.7 thorpej fprintf(stderr, "usage: %s [-k] [-d domainname] [-t] mapname\n",
172 1.7 thorpej __progname);
173 1.7 thorpej fprintf(stderr, " %s -x\n", __progname);
174 1.7 thorpej exit(1);
175 1.1 deraadt }
176