1994-08-28 15:01:31 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1993, 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-08-28 15:01:31 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
2002-04-28 10:49:15 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
#include <rpc/rpc.h>
|
1997-08-07 06:50:02 +00:00
|
|
|
#include <rpc/pmap_clnt.h>
|
2002-04-28 10:49:15 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
#undef FSHIFT /* Use protocol's shift and scale values */
|
|
|
|
#undef FSCALE
|
2002-04-28 10:49:15 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
#include <rpcsvc/rstat.h>
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
#define HOST_WIDTH 15
|
|
|
|
|
|
|
|
struct host_list {
|
|
|
|
struct host_list *next;
|
|
|
|
struct in_addr addr;
|
|
|
|
} *hosts;
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
static int
|
|
|
|
search_host(struct in_addr addr)
|
1994-08-28 15:01:31 +00:00
|
|
|
{
|
|
|
|
struct host_list *hp;
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
if (!hosts)
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
for (hp = hosts; hp != NULL; hp = hp->next) {
|
|
|
|
if (hp->addr.s_addr == addr.s_addr)
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
static void
|
|
|
|
remember_host(struct in_addr addr)
|
1994-08-28 15:01:31 +00:00
|
|
|
{
|
|
|
|
struct host_list *hp;
|
|
|
|
|
1997-08-07 06:50:02 +00:00
|
|
|
if (!(hp = (struct host_list *)malloc(sizeof(struct host_list))))
|
|
|
|
errx(1, "no memory");
|
1994-08-28 15:01:31 +00:00
|
|
|
hp->addr.s_addr = addr.s_addr;
|
|
|
|
hp->next = hosts;
|
|
|
|
hosts = hp;
|
|
|
|
}
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
static int
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
rstat_reply(caddr_t replyp, struct sockaddr_in *raddrp)
|
1994-08-28 15:01:31 +00:00
|
|
|
{
|
|
|
|
struct tm *tmp_time;
|
|
|
|
struct tm host_time;
|
|
|
|
struct tm host_uptime;
|
|
|
|
char days_buf[16];
|
|
|
|
char hours_buf[16];
|
|
|
|
struct hostent *hp;
|
|
|
|
char *host;
|
|
|
|
statstime *host_stat = (statstime *)replyp;
|
|
|
|
|
|
|
|
if (search_host(raddrp->sin_addr))
|
|
|
|
return(0);
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
hp = gethostbyaddr((char *)&raddrp->sin_addr.s_addr,
|
|
|
|
sizeof(struct in_addr), AF_INET);
|
|
|
|
if (hp)
|
|
|
|
host = hp->h_name;
|
|
|
|
else
|
|
|
|
host = inet_ntoa(raddrp->sin_addr);
|
|
|
|
|
|
|
|
/* truncate hostname to fit nicely into field */
|
|
|
|
if (strlen(host) > HOST_WIDTH)
|
|
|
|
host[HOST_WIDTH] = '\0';
|
|
|
|
|
|
|
|
printf("%-*s\t", HOST_WIDTH, host);
|
|
|
|
|
|
|
|
tmp_time = localtime((time_t *)&host_stat->curtime.tv_sec);
|
|
|
|
host_time = *tmp_time;
|
|
|
|
|
|
|
|
host_stat->curtime.tv_sec -= host_stat->boottime.tv_sec;
|
|
|
|
|
|
|
|
tmp_time = gmtime((time_t *)&host_stat->curtime.tv_sec);
|
|
|
|
host_uptime = *tmp_time;
|
|
|
|
|
1995-11-21 05:43:27 +00:00
|
|
|
#define updays (host_stat->curtime.tv_sec / 86400)
|
1994-08-28 15:01:31 +00:00
|
|
|
if (host_uptime.tm_yday != 0)
|
1995-11-21 05:43:27 +00:00
|
|
|
sprintf(days_buf, "%3d day%s, ", updays,
|
|
|
|
(updays > 1) ? "s" : "");
|
1994-08-28 15:01:31 +00:00
|
|
|
else
|
|
|
|
days_buf[0] = '\0';
|
|
|
|
|
|
|
|
if (host_uptime.tm_hour != 0)
|
|
|
|
sprintf(hours_buf, "%2d:%02d, ",
|
|
|
|
host_uptime.tm_hour, host_uptime.tm_min);
|
|
|
|
else
|
|
|
|
if (host_uptime.tm_min != 0)
|
|
|
|
sprintf(hours_buf, "%2d mins, ", host_uptime.tm_min);
|
2001-10-17 01:44:34 +00:00
|
|
|
else if (host_stat->curtime.tv_sec < 60)
|
|
|
|
sprintf(hours_buf, "%2d secs, ", host_uptime.tm_sec);
|
1994-08-28 15:01:31 +00:00
|
|
|
else
|
|
|
|
hours_buf[0] = '\0';
|
|
|
|
|
|
|
|
printf(" %2d:%02d%cm up %9.9s%9.9s load average: %.2f %.2f %.2f\n",
|
1998-04-01 21:34:10 +00:00
|
|
|
(host_time.tm_hour % 12) ? host_time.tm_hour % 12 : 12,
|
1994-08-28 15:01:31 +00:00
|
|
|
host_time.tm_min,
|
|
|
|
(host_time.tm_hour >= 12) ? 'p' : 'a',
|
|
|
|
days_buf,
|
|
|
|
hours_buf,
|
|
|
|
(double)host_stat->avenrun[0]/FSCALE,
|
|
|
|
(double)host_stat->avenrun[1]/FSCALE,
|
|
|
|
(double)host_stat->avenrun[2]/FSCALE);
|
|
|
|
|
|
|
|
remember_host(raddrp->sin_addr);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
static int
|
1994-08-28 15:01:31 +00:00
|
|
|
onehost(char *host)
|
|
|
|
{
|
|
|
|
CLIENT *rstat_clnt;
|
|
|
|
statstime host_stat;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
struct hostent *hp;
|
1996-12-30 15:26:51 +00:00
|
|
|
struct timeval tv;
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
hp = gethostbyname(host);
|
|
|
|
if (hp == NULL) {
|
1997-08-07 06:50:02 +00:00
|
|
|
warnx("unknown host \"%s\"", host);
|
1994-08-28 15:01:31 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
rstat_clnt = clnt_create(host, RSTATPROG, RSTATVERS_TIME, "udp");
|
|
|
|
if (rstat_clnt == NULL) {
|
1997-08-07 06:50:02 +00:00
|
|
|
warnx("%s %s", host, clnt_spcreateerror(""));
|
1994-08-28 15:01:31 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bzero((char *)&host_stat, sizeof(host_stat));
|
1996-12-30 15:26:51 +00:00
|
|
|
tv.tv_sec = 15; /* XXX ??? */
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
if (clnt_call(rstat_clnt, RSTATPROC_STATS, xdr_void, NULL, xdr_statstime, &host_stat, tv) != RPC_SUCCESS) {
|
1997-08-07 06:50:02 +00:00
|
|
|
warnx("%s: %s", host, clnt_sperror(rstat_clnt, host));
|
2001-06-19 03:48:26 +00:00
|
|
|
clnt_destroy(rstat_clnt);
|
1994-08-28 15:01:31 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
addr.sin_addr.s_addr = *(int *)hp->h_addr;
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
rstat_reply((caddr_t)&host_stat, &addr);
|
2001-06-19 03:48:26 +00:00
|
|
|
clnt_destroy(rstat_clnt);
|
1997-08-07 06:50:02 +00:00
|
|
|
return (0);
|
1994-08-28 15:01:31 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 10:49:15 +00:00
|
|
|
static void
|
|
|
|
allhosts(void)
|
1994-08-28 15:01:31 +00:00
|
|
|
{
|
|
|
|
statstime host_stat;
|
|
|
|
enum clnt_stat clnt_stat;
|
|
|
|
|
|
|
|
clnt_stat = clnt_broadcast(RSTATPROG, RSTATVERS_TIME, RSTATPROC_STATS,
|
|
|
|
xdr_void, NULL,
|
2002-04-28 10:49:15 +00:00
|
|
|
xdr_statstime, &host_stat, rstat_reply);
|
1997-08-07 06:50:02 +00:00
|
|
|
if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT)
|
|
|
|
errx(1, "%s", clnt_sperrno(clnt_stat));
|
1994-08-28 15:01:31 +00:00
|
|
|
}
|
|
|
|
|
1997-08-07 06:50:02 +00:00
|
|
|
static void
|
2002-04-28 10:49:15 +00:00
|
|
|
usage(void)
|
1994-08-28 15:01:31 +00:00
|
|
|
{
|
1997-08-07 06:50:02 +00:00
|
|
|
fprintf(stderr, "usage: rup [hosts ...]\n");
|
1994-08-28 15:01:31 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1997-08-07 06:50:02 +00:00
|
|
|
int
|
1994-08-28 15:01:31 +00:00
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "?")) != -1)
|
|
|
|
switch (ch) {
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-08-28 15:01:31 +00:00
|
|
|
setlinebuf(stdout);
|
|
|
|
if (argc == optind)
|
|
|
|
allhosts();
|
|
|
|
else {
|
|
|
|
for (; optind < argc; optind++)
|
|
|
|
(void) onehost(argv[optind]);
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|