2 * Copyright (c) 1992/3 Theo de Raadt <deraadt@fsa.ca>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote
14 * products derived from this software without specific prior written
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
34 #include <sys/param.h>
35 #include <sys/types.h>
36 #include <sys/socket.h>
40 #include <rpcsvc/yp_prot.h>
41 #include <rpcsvc/ypclnt.h>
53 { "passwd", "passwd.byname" },
54 { "master.passwd", "master.passwd.byname" },
55 { "group", "group.byname" },
56 { "networks", "networks.byaddr" },
57 { "hosts", "hosts.byname" },
58 { "protocols", "protocols.bynumber" },
59 { "services", "services.byname" },
60 { "aliases", "mail.aliases" },
61 { "ethers", "ethers.byname" },
67 fprintf(stderr
, "%s\n%s\n",
68 "usage: ypmatch [-kt] [-d domainname] key ... mapname",
74 main(int argc
, char *argv
[])
76 char *domainname
= NULL
;
77 char *inkey
, *inmap
, *outbuf
;
78 int outbuflen
, key
, notrans
;
84 while ((c
= getopt(argc
, argv
, "xd:kt")) != -1)
87 for (i
= 0; i
<sizeof ypaliases
/sizeof ypaliases
[0]; i
++)
88 printf("Use \"%s\" for \"%s\"\n",
105 if ((argc
-optind
) < 2)
109 yp_get_default_domain(&domainname
);
111 inmap
= argv
[argc
-1];
112 for (i
= 0; (!notrans
) && i
<sizeof ypaliases
/sizeof ypaliases
[0]; i
++)
113 if (strcmp(inmap
, ypaliases
[i
].alias
) == 0)
114 inmap
= ypaliases
[i
].name
;
115 for (; optind
< argc
-1; optind
++) {
116 inkey
= argv
[optind
];
118 r
= yp_match(domainname
, inmap
, inkey
,
119 strlen(inkey
), &outbuf
, &outbuflen
);
123 printf("%s ", inkey
);
124 printf("%*.*s\n", outbuflen
, outbuflen
, outbuf
);
127 errx(1, "not running ypbind");
129 errx(1, "can't match key %s in map %s. reason: %s",
130 inkey
, inmap
, yperr_string(r
));