09d4f7789e
- Use '\0' for a char instead of NULL. - Explicitly compare against the global `nullstring' to determine if a non-NULL uaddr is not malloc'd. - Remove some unnecessary casting of the argument to free(). - In rpcbproc_callit_com(), move the freeing of m_uaddr to the cleanup code at the end of the function. - To avoid confusion and possible alignment problems, change netbufdup() to allocate the netbuf struct and the sockaddr buffer separately, and change netbuffree() accordingly. This makes it produce netbufs that are consistent with all other netbufs in rpcbind.
209 lines
4.5 KiB
C
209 lines
4.5 KiB
C
/*
|
|
* $NetBSD: rpcb_stat.c,v 1.2 2000/07/04 20:27:40 matt Exp $
|
|
* $FreeBSD$
|
|
*/
|
|
/*
|
|
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
|
* unrestricted use provided that this legend is included on all tape
|
|
* media and as a part of the software program in whole or part. Users
|
|
* may copy or modify Sun RPC without charge, but are not authorized
|
|
* to license or distribute it to anyone else except as part of a product or
|
|
* program developed by the user.
|
|
*
|
|
* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
|
|
* WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
|
|
*
|
|
* Sun RPC is provided with no support and without any obligation on the
|
|
* part of Sun Microsystems, Inc. to assist in its use, correction,
|
|
* modification or enhancement.
|
|
*
|
|
* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
|
|
* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
|
|
* OR ANY PART THEREOF.
|
|
*
|
|
* In no event will Sun Microsystems, Inc. be liable for any lost revenue
|
|
* or profits or other special, indirect and consequential damages, even if
|
|
* Sun has been advised of the possibility of such damages.
|
|
*
|
|
* Sun Microsystems, Inc.
|
|
* 2550 Garcia Avenue
|
|
* Mountain View, California 94043
|
|
*/
|
|
/* #pragma ident "@(#)rpcb_stat.c 1.7 94/04/25 SMI" */
|
|
|
|
/*
|
|
* rpcb_stat.c
|
|
* Allows for gathering of statistics
|
|
*
|
|
* Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <netconfig.h>
|
|
#include <rpc/rpc.h>
|
|
#include <rpc/rpcb_prot.h>
|
|
#include <sys/stat.h>
|
|
#ifdef PORTMAP
|
|
#include <rpc/pmap_prot.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "rpcbind.h"
|
|
|
|
static rpcb_stat_byvers inf;
|
|
|
|
void
|
|
rpcbs_init()
|
|
{
|
|
|
|
}
|
|
|
|
void
|
|
rpcbs_procinfo(rpcvers_t rtype, rpcproc_t proc)
|
|
{
|
|
switch (rtype + 2) {
|
|
#ifdef PORTMAP
|
|
case PMAPVERS: /* version 2 */
|
|
if (proc > rpcb_highproc_2)
|
|
return;
|
|
break;
|
|
#endif
|
|
case RPCBVERS: /* version 3 */
|
|
if (proc > rpcb_highproc_3)
|
|
return;
|
|
break;
|
|
case RPCBVERS4: /* version 4 */
|
|
if (proc > rpcb_highproc_4)
|
|
return;
|
|
break;
|
|
default: return;
|
|
}
|
|
inf[rtype].info[proc]++;
|
|
return;
|
|
}
|
|
|
|
void
|
|
rpcbs_set(rpcvers_t rtype, bool_t success)
|
|
{
|
|
if ((rtype >= RPCBVERS_STAT) || (success == FALSE))
|
|
return;
|
|
inf[rtype].setinfo++;
|
|
return;
|
|
}
|
|
|
|
void
|
|
rpcbs_unset(rpcvers_t rtype, bool_t success)
|
|
{
|
|
if ((rtype >= RPCBVERS_STAT) || (success == FALSE))
|
|
return;
|
|
inf[rtype].unsetinfo++;
|
|
return;
|
|
}
|
|
|
|
void
|
|
rpcbs_getaddr(rpcvers_t rtype, rpcprog_t prog, rpcvers_t vers, char *netid,
|
|
char *uaddr)
|
|
{
|
|
rpcbs_addrlist *al;
|
|
struct netconfig *nconf;
|
|
|
|
if (rtype >= RPCBVERS_STAT)
|
|
return;
|
|
for (al = inf[rtype].addrinfo; al; al = al->next) {
|
|
|
|
if(al->netid == NULL)
|
|
return;
|
|
if ((al->prog == prog) && (al->vers == vers) &&
|
|
(strcmp(al->netid, netid) == 0)) {
|
|
if ((uaddr == NULL) || (uaddr[0] == NULL))
|
|
al->failure++;
|
|
else
|
|
al->success++;
|
|
return;
|
|
}
|
|
}
|
|
nconf = rpcbind_get_conf(netid);
|
|
if (nconf == NULL) {
|
|
return;
|
|
}
|
|
al = (rpcbs_addrlist *) malloc(sizeof (rpcbs_addrlist));
|
|
if (al == NULL) {
|
|
return;
|
|
}
|
|
al->prog = prog;
|
|
al->vers = vers;
|
|
al->netid = nconf->nc_netid;
|
|
if ((uaddr == NULL) || (uaddr[0] == '\0')) {
|
|
al->failure = 1;
|
|
al->success = 0;
|
|
} else {
|
|
al->failure = 0;
|
|
al->success = 1;
|
|
}
|
|
al->next = inf[rtype].addrinfo;
|
|
inf[rtype].addrinfo = al;
|
|
}
|
|
|
|
void
|
|
rpcbs_rmtcall(rpcvers_t rtype, rpcproc_t rpcbproc, rpcprog_t prog,
|
|
rpcvers_t vers, rpcproc_t proc, char *netid, rpcblist_ptr rbl)
|
|
{
|
|
rpcbs_rmtcalllist *rl;
|
|
struct netconfig *nconf;
|
|
|
|
if (rtype > RPCBVERS_STAT)
|
|
return;
|
|
for (rl = inf[rtype].rmtinfo; rl; rl = rl->next) {
|
|
|
|
if(rl->netid == NULL)
|
|
return;
|
|
|
|
if ((rl->prog == prog) && (rl->vers == vers) &&
|
|
(rl->proc == proc) &&
|
|
(strcmp(rl->netid, netid) == 0)) {
|
|
if ((rbl == NULL) ||
|
|
(rbl->rpcb_map.r_vers != vers))
|
|
rl->failure++;
|
|
else
|
|
rl->success++;
|
|
if (rpcbproc == RPCBPROC_INDIRECT)
|
|
rl->indirect++;
|
|
return;
|
|
}
|
|
}
|
|
nconf = rpcbind_get_conf(netid);
|
|
if (nconf == NULL) {
|
|
return;
|
|
}
|
|
rl = (rpcbs_rmtcalllist *) malloc(sizeof (rpcbs_rmtcalllist));
|
|
if (rl == NULL) {
|
|
return;
|
|
}
|
|
rl->prog = prog;
|
|
rl->vers = vers;
|
|
rl->proc = proc;
|
|
rl->netid = nconf->nc_netid;
|
|
if ((rbl == NULL) ||
|
|
(rbl->rpcb_map.r_vers != vers)) {
|
|
rl->failure = 1;
|
|
rl->success = 0;
|
|
} else {
|
|
rl->failure = 0;
|
|
rl->success = 1;
|
|
}
|
|
rl->indirect = 1;
|
|
rl->next = inf[rtype].rmtinfo;
|
|
inf[rtype].rmtinfo = rl;
|
|
return;
|
|
}
|
|
|
|
/*
|
|
*/
|
|
void *
|
|
rpcbproc_getstat(void *arg, struct svc_req *req, SVCXPRT *xprt,
|
|
rpcvers_t versnum)
|
|
{
|
|
return (void *)&inf;
|
|
}
|