From owner-svn-src-head@freebsd.org Tue Aug 11 01:33:37 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 866FC99D395; Tue, 11 Aug 2015 01:33:37 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69DBBD68; Tue, 11 Aug 2015 01:33:37 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B1XbjT051067; Tue, 11 Aug 2015 01:33:37 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B1XaGU051065; Tue, 11 Aug 2015 01:33:36 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201508110133.t7B1XaGU051065@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 11 Aug 2015 01:33:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286610 - head/usr.sbin/ypset X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 01:33:37 -0000 Author: araujo Date: Tue Aug 11 01:33:36 2015 New Revision: 286610 URL: https://svnweb.freebsd.org/changeset/base/286610 Log: Sync the code with OpenBSD. Remove 3rd BSD clause. Differential Revision: D3289 Approved by: bapt (mentor) Obtained from: OpenBSD Modified: head/usr.sbin/ypset/ypset.8 head/usr.sbin/ypset/ypset.c Modified: head/usr.sbin/ypset/ypset.8 ============================================================================== --- head/usr.sbin/ypset/ypset.8 Tue Aug 11 01:02:17 2015 (r286609) +++ head/usr.sbin/ypset/ypset.8 Tue Aug 11 01:33:36 2015 (r286610) @@ -31,7 +31,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 25, 1994 +.Dd August 04, 2015 .Dt YPSET 8 .Os .Sh NAME @@ -68,15 +68,15 @@ the local network supplying YP maps. .Pp The options are as follows: .Bl -tag -width indent -.It Fl h Ar host -Set the YP binding on -.Ar host -instead of the local machine. .It Fl d Ar domain Use the YP domain .Ar domain instead of the default domain as returned by .Xr domainname 1 . +.It Fl h Ar host +Set the YP binding on +.Ar host +instead of the local machine. .El .Sh SEE ALSO .Xr domainname 1 , Modified: head/usr.sbin/ypset/ypset.c ============================================================================== --- head/usr.sbin/ypset/ypset.c Tue Aug 11 01:02:17 2015 (r286609) +++ head/usr.sbin/ypset/ypset.c Tue Aug 11 01:33:36 2015 (r286610) @@ -1,5 +1,8 @@ +/* $OpenBSD: ypset.c,v 1.20 2015/01/16 06:40:23 deraadt Exp $ */ +/* $NetBSD: ypset.c,v 1.8 1996/05/13 02:46:33 thorpej Exp $ */ + /* - * Copyright (c) 1992/3 Theo de Raadt + * Copyright (c) 1992, 1993 Theo de Raadt * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -10,9 +13,6 @@ * 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 @@ -30,61 +30,58 @@ #include __FBSDID("$FreeBSD$"); +#include +#include +#include + #include #include #include #include #include #include -#include -#include -#include + #include #include #include #include #include -extern bool_t xdr_domainname(); - static void usage(void) { - fprintf(stderr, "usage: ypset [-h host] [-d domain] server\n"); + fprintf(stderr, "usage: ypset [-d domain] [-h host] server\n"); exit(1); } -int +static int bind_tohost(struct sockaddr_in *sin, char *dom, char *server) { struct ypbind_setdom ypsd; - struct timeval tv; + struct in_addr iaddr; struct hostent *hp; + struct timeval tv; CLIENT *client; - int sock, port; - int r; - unsigned long server_addr; + int sock, port, r; - if ((port = htons(getrpcport(server, YPPROG, YPPROC_NULL, IPPROTO_UDP))) == 0) + port = getrpcport(server, YPPROG, YPPROC_NULL, IPPROTO_UDP); + if (port == 0) errx(1, "%s not running ypserv", server); + port = htons(port); - bzero(&ypsd, sizeof ypsd); - - if ((hp = gethostbyname (server)) != NULL) { - /* is this the most compatible way?? */ - bcopy (hp->h_addr_list[0], - (u_long *)&ypsd.ypsetdom_binding.ypbind_binding_addr, - sizeof (unsigned long)); - } else if ((server_addr = inet_addr(server)) == INADDR_NONE) { - errx(1, "can't find address for %s", server); - } else - bcopy (&server_addr, - (u_long *)&ypsd.ypsetdom_binding.ypbind_binding_addr, - sizeof (server_addr)); + memset(&ypsd, 0, sizeof ypsd); -/* strncpy(ypsd.ypsetdom_domain, dom, sizeof ypsd.ypsetdom_domain); */ + if (inet_aton(server, &iaddr) == 0) { + hp = gethostbyname(server); + if (hp == NULL) + errx(1, "can't find address for %s", server); + memmove(&iaddr.s_addr, hp->h_addr, sizeof(iaddr.s_addr)); + } ypsd.ypsetdom_domain = dom; - *(u_long *)&ypsd.ypsetdom_binding.ypbind_binding_port = port; + bcopy(&iaddr.s_addr, &ypsd.ypsetdom_binding.ypbind_binding_addr, + sizeof(ypsd.ypsetdom_binding.ypbind_binding_addr)); + bcopy(&port, &ypsd.ypsetdom_binding.ypbind_binding_port, + sizeof(ypsd.ypsetdom_binding.ypbind_binding_port)); ypsd.ypsetdom_vers = YPVERS; tv.tv_sec = 15; @@ -101,7 +98,9 @@ bind_tohost(struct sockaddr_in *sin, cha (xdrproc_t)xdr_ypbind_setdom, &ypsd, (xdrproc_t)xdr_void, NULL, tv); if (r) { - warnx("sorry, cannot ypset for domain %s on host - make sure ypbind was started with -ypset or -ypsetme", dom); + warnx("cannot ypset for domain %s on host %s: %s" + " - make sure ypbind was started with -ypset or -ypsetme", dom, + server, clnt_sperrno(r)); clnt_destroy(client); return (YPERR_YPBIND); } @@ -124,18 +123,17 @@ main(int argc, char *argv[]) sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); while ((c = getopt(argc, argv, "h:d:")) != -1) - switch (c) { + switch(c) { case 'd': domainname = optarg; break; case 'h': - if ((sin.sin_addr.s_addr = inet_addr(optarg)) == - INADDR_NONE) { + if (inet_aton(optarg, &sin.sin_addr) == 0) { hent = gethostbyname(optarg); if (hent == NULL) - errx(1, "host %s unknown", optarg); - bcopy(hent->h_addr_list[0], &sin.sin_addr, - sizeof sin.sin_addr); + errx(1, "host %s unknown\n", optarg); + bcopy(hent->h_addr, &sin.sin_addr, + sizeof(sin.sin_addr)); } break; default: