diff options
-rw-r--r-- | usr.sbin/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/yppoll/Makefile | 7 | ||||
-rw-r--r-- | usr.sbin/yppoll/yppoll.c | 101 | ||||
-rw-r--r-- | usr.sbin/ypset/Makefile | 7 | ||||
-rw-r--r-- | usr.sbin/ypset/ypset.c | 154 |
5 files changed, 271 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 6a14503..bd12ed4 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -6,7 +6,8 @@ SUBDIR= XNSrouted accton amd arp chown chroot dev_mkdb diskpart \ edquota inetd kgmon kvm_mkdb lpr mtree portmap pstat \ pwd_mkdb quotaon repquota routed rmt rwhod sendmail \ - sliplogin sysctl syslogd traceroute trpt trsp vipw + sliplogin sysctl syslogd traceroute trpt trsp vipw \ + ypbind yppoll ypset .if make(clean) || make(cleandir) SUBDIR+=bad144 config config.new eeprom iostat timed diff --git a/usr.sbin/yppoll/Makefile b/usr.sbin/yppoll/Makefile new file mode 100644 index 0000000..3108b83 --- /dev/null +++ b/usr.sbin/yppoll/Makefile @@ -0,0 +1,7 @@ +# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 +# $Id: Makefile,v 1.2 1994/02/17 07:06:17 rgrimes Exp $ + +PROG= yppoll +NOMAN= + +.include <bsd.prog.mk> diff --git a/usr.sbin/yppoll/yppoll.c b/usr.sbin/yppoll/yppoll.c new file mode 100644 index 0000000..525e564 --- /dev/null +++ b/usr.sbin/yppoll/yppoll.c @@ -0,0 +1,101 @@ +/* + * Copyright (c) 1992/3 Theo de Raadt <deraadt@fsa.ca> + * Copyright (c) 1992/3 John Brezak + * 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. + */ + +#ifndef lint +static char rcsid[] = "yppoll.c,v 1.2 1993/08/02 17:57:20 mycroft Exp"; +#endif /* not lint */ + +#include <sys/param.h> +#include <sys/types.h> +#include <sys/socket.h> +#include <stdio.h> +#include <time.h> + +#include <rpc/rpc.h> +#include <rpc/xdr.h> +#include <rpcsvc/yp_prot.h> +#include <rpcsvc/ypclnt.h> + +usage() +{ + fprintf(stderr, "Usage:\n"); + fprintf(stderr, "\typpoll [-h host] [-d domainname] mapname\n"); + exit(1); +} + +int +main(argc, argv) +char **argv; +{ + char *domainname; + char *hostname = "localhost"; + char *inmap, *master; + int order; + extern char *optarg; + extern int optind; + int c, r; + + yp_get_default_domain(&domainname); + + while( (c=getopt(argc, argv, "h:d:?")) != -1) + switch(c) { + case 'd': + domainname = optarg; + break; + case 'h': + hostname = optarg; + break; + case '?': + usage(); + /*NOTREACHED*/ + } + + if(optind + 1 != argc ) + usage(); + + inmap = argv[optind]; + + r = yp_order(domainname, inmap, &order); + if (r != 0) { + fprintf(stderr, "No such map %s. Reason: %s\n", + inmap, yperr_string(r)); + exit(1); + } + printf("Map %s has order number %d. %s", inmap, order, ctime((time_t *)&order)); + r = yp_master(domainname, inmap, &master); + if (r != 0) { + fprintf(stderr, "No such map %s. Reason: %s\n", + inmap, yperr_string(r)); + exit(1); + } + printf("The master server is %s.\n", master); + + exit(0); +} diff --git a/usr.sbin/ypset/Makefile b/usr.sbin/ypset/Makefile new file mode 100644 index 0000000..58bafea --- /dev/null +++ b/usr.sbin/ypset/Makefile @@ -0,0 +1,7 @@ +# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 +# $Id: Makefile,v 1.2 1994/02/17 07:06:19 rgrimes Exp $ + +PROG= ypset +NOMAN= + +.include <bsd.prog.mk> diff --git a/usr.sbin/ypset/ypset.c b/usr.sbin/ypset/ypset.c new file mode 100644 index 0000000..6a25a97 --- /dev/null +++ b/usr.sbin/ypset/ypset.c @@ -0,0 +1,154 @@ +/* + * 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. + */ + +#ifndef LINT +static char rcsid[] = "ypset.c,v 1.3 1993/06/12 00:02:37 deraadt Exp"; +#endif + +#include <sys/param.h> +#include <sys/types.h> +#include <sys/socket.h> +#include <stdio.h> +#include <netdb.h> +#include <rpc/rpc.h> +#include <rpc/xdr.h> +#include <rpcsvc/yp_prot.h> +#include <rpcsvc/ypclnt.h> +#include <arpa/inet.h> + +extern bool_t xdr_domainname(); + +usage() +{ + fprintf(stderr, "Usage:\n"); + fprintf(stderr, "\typset [-h host ] [-d domain] server\n"); + exit(1); +} + +bind_tohost(sin, dom, server) +struct sockaddr_in *sin; +char *dom, *server; +{ + struct ypbind_setdom ypsd; + struct timeval tv; + struct hostent *hp; + CLIENT *client; + int sock, port; + int r; + unsigned long server_addr; + + if( (port=htons(getrpcport(server, YPPROG, YPPROC_NULL, IPPROTO_UDP))) == 0) { + fprintf(stderr, "%s not running ypserv.\n", server); + exit(1); + } + + bzero(&ypsd, sizeof ypsd); + + if( (hp = gethostbyname (server)) != NULL ) { + /* is this the most compatible way?? */ + bcopy (hp->h_addr_list[0], &ypsd.ypsetdom_addr, + sizeof (ypsd.ypsetdom_addr)); + } else if( (long)(server_addr = inet_addr (server)) == -1) { + fprintf(stderr, "can't find address for %s\n", server); + exit(1); + } else + bcopy (&server_addr, &ypsd.ypsetdom_addr, + sizeof (server_addr)); + + strncpy(ypsd.ypsetdom_domain, dom, sizeof ypsd.ypsetdom_domain); + ypsd.ypsetdom_port = port; + ypsd.ypsetdom_vers = YPVERS; + + tv.tv_sec = 15; + tv.tv_usec = 0; + sock = RPC_ANYSOCK; + client = clntudp_create(sin, YPBINDPROG, YPBINDVERS, tv, &sock); + if (client==NULL) { + fprintf(stderr, "can't yp_bind: Reason: %s\n", + yperr_string(YPERR_YPBIND)); + return YPERR_YPBIND; + } + client->cl_auth = authunix_create_default(); + + r = clnt_call(client, YPBINDPROC_SETDOM, + xdr_ypbind_setdom, &ypsd, xdr_void, NULL, tv); + if(r) { + fprintf(stderr, "Sorry, cannot ypset for domain %s on host.\n", dom); + clnt_destroy(client); + return YPERR_YPBIND; + } + clnt_destroy(client); + return 0; +} + +int +main(argc, argv) +char **argv; +{ + struct sockaddr_in sin; + struct hostent *hent; + extern char *optarg; + extern int optind; + char *domainname; + int c; + + yp_get_default_domain(&domainname); + + bzero(&sin, sizeof sin); + sin.sin_family = AF_INET; + sin.sin_addr.s_addr = htonl(0x7f000001); + + while( (c=getopt(argc, argv, "h:d:")) != -1) + switch(c) { + case 'd': + domainname = optarg; + break; + case 'h': + if( (sin.sin_addr.s_addr=inet_addr(optarg)) == -1) { + hent = gethostbyname(optarg); + if(hent==NULL) { + fprintf(stderr, "ypset: host %s unknown\n", + optarg); + exit(1); + } + bcopy(&hent->h_addr_list[0], &sin.sin_addr, + sizeof sin.sin_addr); + } + break; + default: + usage(); + } + + if(optind + 1 != argc ) + usage(); + + if (bind_tohost(&sin, domainname, argv[optind])) + exit(1); + exit(0); +} |