ypset.c revision 1.9
1/* $NetBSD: ypset.c,v 1.9 1996/05/29 20:12:03 thorpej Exp $ */ 2 3/* 4 * Copyright (c) 1992, 1993 Theo de Raadt <deraadt@fsa.ca> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. All advertising materials mentioning features or use of this software 16 * must display the following acknowledgement: 17 * This product includes software developed by Theo de Raadt. 18 * 4. The name of the author may not be used to endorse or promote 19 * products derived from this software without specific prior written 20 * permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 23 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 26 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35#ifndef LINT 36static char rcsid[] = "$NetBSD: ypset.c,v 1.9 1996/05/29 20:12:03 thorpej Exp $"; 37#endif 38 39#include <sys/param.h> 40#include <sys/types.h> 41#include <sys/socket.h> 42#include <stdio.h> 43#include <netdb.h> 44#include <rpc/rpc.h> 45#include <rpc/xdr.h> 46#include <rpcsvc/yp_prot.h> 47#include <rpcsvc/ypclnt.h> 48#include <arpa/inet.h> 49 50usage() 51{ 52 fprintf(stderr, "Usage:\n"); 53 fprintf(stderr, "\typset [-h host ] [-d domain] server\n"); 54 exit(1); 55} 56 57bind_tohost(sin, dom, server) 58struct sockaddr_in *sin; 59char *dom, *server; 60{ 61 struct ypbind_setdom ypsd; 62 struct timeval tv; 63 struct hostent *hp; 64 CLIENT *client; 65 int sock, port; 66 int r; 67 68 if( (port=htons(getrpcport(server, YPPROG, YPPROC_NULL, IPPROTO_UDP))) == 0) { 69 fprintf(stderr, "%s not running ypserv.\n", server); 70 exit(1); 71 } 72 73 bzero(&ypsd, sizeof ypsd); 74 75 if (inet_aton(server, &ypsd.ypsetdom_addr) == 0) { 76 hp = gethostbyname(server); 77 if (hp == NULL) { 78 fprintf(stderr, "ypset: can't find address for %s\n", server); 79 exit(1); 80 } 81 bcopy(hp->h_addr, &ypsd.ypsetdom_addr, sizeof(ypsd.ypsetdom_addr)); 82 } 83 84 strncpy(ypsd.ypsetdom_domain, dom, sizeof ypsd.ypsetdom_domain); 85 ypsd.ypsetdom_port = port; 86 ypsd.ypsetdom_vers = YPVERS; 87 88 tv.tv_sec = 15; 89 tv.tv_usec = 0; 90 sock = RPC_ANYSOCK; 91 client = clntudp_create(sin, YPBINDPROG, YPBINDVERS, tv, &sock); 92 if (client==NULL) { 93 fprintf(stderr, "can't yp_bind: Reason: %s\n", 94 yperr_string(YPERR_YPBIND)); 95 return YPERR_YPBIND; 96 } 97 client->cl_auth = authunix_create_default(); 98 99 r = clnt_call(client, YPBINDPROC_SETDOM, 100 xdr_ypbind_setdom, &ypsd, xdr_void, NULL, tv); 101 if(r) { 102 fprintf(stderr, "Sorry, cannot ypset for domain %s on host.\n", dom); 103 clnt_destroy(client); 104 return YPERR_YPBIND; 105 } 106 clnt_destroy(client); 107 return 0; 108} 109 110int 111main(argc, argv) 112char **argv; 113{ 114 struct sockaddr_in sin; 115 struct hostent *hent; 116 extern char *optarg; 117 extern int optind; 118 char *domainname; 119 int c; 120 121 yp_get_default_domain(&domainname); 122 123 bzero(&sin, sizeof sin); 124 sin.sin_family = AF_INET; 125 sin.sin_addr.s_addr = htonl(0x7f000001); 126 127 while( (c=getopt(argc, argv, "h:d:")) != -1) 128 switch(c) { 129 case 'd': 130 domainname = optarg; 131 break; 132 case 'h': 133 if (inet_aton(optarg, &sin.sin_addr) == 0) { 134 hent = gethostbyname(optarg); 135 if (hent == NULL) { 136 fprintf(stderr, "ypset: host %s unknown\n", 137 optarg); 138 exit(1); 139 } 140 bcopy(&hent->h_addr, &sin.sin_addr, 141 sizeof(sin.sin_addr)); 142 } 143 break; 144 default: 145 usage(); 146 } 147 148 if(optind + 1 != argc ) 149 usage(); 150 151 if (bind_tohost(&sin, domainname, argv[optind])) 152 exit(1); 153 exit(0); 154} 155