43981b6c53
We especifically ignored the glibc compatibility changes but this should help interaction with Solaris and Linux. ____ Fixed infinite loop in svc_run() author Steve Dickson Tue, 10 Jun 2008 12:35:52 -0500 (13:35 -0400) Fixed infinite loop in svc_run() ____ __rpc_taddr2uaddr_af() assumes the netbuf to always have a non-zero data. This is a bad assumption and can lead to a seg-fault. This patch adds a check for zero length and returns NULL when found. author Steve Dickson Mon, 27 Oct 2008 11:46:54 -0500 (12:46 -0400) ____ Changed clnt_spcreateerror() to return clearer and more concise error messages. author Steve Dickson Thu, 20 Nov 2008 08:55:31 -0500 (08:55 -0500) ____ Converted all uid and gid variables of the type uid_t and gid_t. author Steve Dickson Wed, 28 Jan 2009 12:44:46 -0500 (12:44 -0500) ____ libtirpc: set r_netid and r_owner in __rpcb_findaddr_timed These fields in the rpcbind GETADDR call are being passed uninitialized to CLNT_CALL. In the case of x86_64 at least, this usually leads to a segfault. On x86, it sometimes causes segfaults and other times causes garbage to be sent on the wire. rpcbind generally ignores the r_owner field for calls that come in over the wire, so it really doesn't matter what we send in that slot. We just need to send something. The reference implementation from Sun seems to send a blank string. Have ours follow suit. author Jeff Layton Fri, 13 Mar 2009 11:44:16 -0500 (12:44 -0400) ____ libtirpc: be sure to free cl_netid and cl_tp When creating a client with clnt_tli_create, it uses strdup to copy strings for these fields if nconf is passed in. clnt_dg_destroy frees these strings already. Make sure clnt_vc_destroy frees them in the same way. author Jeff Layton Fri, 13 Mar 2009 11:47:36 -0500 (12:47 -0400) Obtained from: Bull GNU/Linux NFSv4 Project MFC after: 3 weeks
347 lines
8.2 KiB
C
347 lines
8.2 KiB
C
/* $NetBSD: clnt_perror.c,v 1.24 2000/06/02 23:11:07 fvdl Exp $ */
|
|
|
|
|
|
/*
|
|
* 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
|
|
*/
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
static char *sccsid2 = "@(#)clnt_perror.c 1.15 87/10/07 Copyr 1984 Sun Micro";
|
|
static char *sccsid = "@(#)clnt_perror.c 2.1 88/07/29 4.0 RPCSRC";
|
|
#endif
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
/*
|
|
* clnt_perror.c
|
|
*
|
|
* Copyright (C) 1984, Sun Microsystems, Inc.
|
|
*
|
|
*/
|
|
#include "namespace.h"
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <rpc/rpc.h>
|
|
#include <rpc/types.h>
|
|
#include <rpc/auth.h>
|
|
#include <rpc/clnt.h>
|
|
#include "un-namespace.h"
|
|
|
|
static char *buf;
|
|
|
|
static char *_buf(void);
|
|
static char *auth_errmsg(enum auth_stat);
|
|
#define CLNT_PERROR_BUFLEN 256
|
|
|
|
static char *
|
|
_buf()
|
|
{
|
|
|
|
if (buf == 0)
|
|
buf = (char *)malloc(CLNT_PERROR_BUFLEN);
|
|
return (buf);
|
|
}
|
|
|
|
/*
|
|
* Print reply error info
|
|
*/
|
|
char *
|
|
clnt_sperror(rpch, s)
|
|
CLIENT *rpch;
|
|
const char *s;
|
|
{
|
|
struct rpc_err e;
|
|
char *err;
|
|
char *str;
|
|
char *strstart;
|
|
size_t len, i;
|
|
|
|
assert(rpch != NULL);
|
|
assert(s != NULL);
|
|
|
|
str = _buf(); /* side effect: sets CLNT_PERROR_BUFLEN */
|
|
if (str == 0)
|
|
return (0);
|
|
len = CLNT_PERROR_BUFLEN;
|
|
strstart = str;
|
|
CLNT_GETERR(rpch, &e);
|
|
|
|
if ((i = snprintf(str, len, "%s: ", s)) > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
|
|
(void)strncpy(str, clnt_sperrno(e.re_status), len - 1);
|
|
i = strlen(str);
|
|
str += i;
|
|
len -= i;
|
|
|
|
switch (e.re_status) {
|
|
case RPC_SUCCESS:
|
|
case RPC_CANTENCODEARGS:
|
|
case RPC_CANTDECODERES:
|
|
case RPC_TIMEDOUT:
|
|
case RPC_PROGUNAVAIL:
|
|
case RPC_PROCUNAVAIL:
|
|
case RPC_CANTDECODEARGS:
|
|
case RPC_SYSTEMERROR:
|
|
case RPC_UNKNOWNHOST:
|
|
case RPC_UNKNOWNPROTO:
|
|
case RPC_PMAPFAILURE:
|
|
case RPC_PROGNOTREGISTERED:
|
|
case RPC_FAILED:
|
|
break;
|
|
|
|
case RPC_CANTSEND:
|
|
case RPC_CANTRECV:
|
|
i = snprintf(str, len, "; errno = %s", strerror(e.re_errno));
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
break;
|
|
|
|
case RPC_VERSMISMATCH:
|
|
i = snprintf(str, len, "; low version = %u, high version = %u",
|
|
e.re_vers.low, e.re_vers.high);
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
break;
|
|
|
|
case RPC_AUTHERROR:
|
|
err = auth_errmsg(e.re_why);
|
|
i = snprintf(str, len, "; why = ");
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
if (err != NULL) {
|
|
i = snprintf(str, len, "%s",err);
|
|
} else {
|
|
i = snprintf(str, len,
|
|
"(unknown authentication error - %d)",
|
|
(int) e.re_why);
|
|
}
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
break;
|
|
|
|
case RPC_PROGVERSMISMATCH:
|
|
i = snprintf(str, len, "; low version = %u, high version = %u",
|
|
e.re_vers.low, e.re_vers.high);
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
break;
|
|
|
|
default: /* unknown */
|
|
i = snprintf(str, len, "; s1 = %u, s2 = %u",
|
|
e.re_lb.s1, e.re_lb.s2);
|
|
if (i > 0) {
|
|
str += i;
|
|
len -= i;
|
|
}
|
|
break;
|
|
}
|
|
strstart[CLNT_PERROR_BUFLEN-1] = '\0';
|
|
return(strstart) ;
|
|
}
|
|
|
|
void
|
|
clnt_perror(rpch, s)
|
|
CLIENT *rpch;
|
|
const char *s;
|
|
{
|
|
|
|
assert(rpch != NULL);
|
|
assert(s != NULL);
|
|
|
|
(void) fprintf(stderr, "%s\n", clnt_sperror(rpch,s));
|
|
}
|
|
|
|
static const char *const rpc_errlist[] = {
|
|
"RPC: Success", /* 0 - RPC_SUCCESS */
|
|
"RPC: Can't encode arguments", /* 1 - RPC_CANTENCODEARGS */
|
|
"RPC: Can't decode result", /* 2 - RPC_CANTDECODERES */
|
|
"RPC: Unable to send", /* 3 - RPC_CANTSEND */
|
|
"RPC: Unable to receive", /* 4 - RPC_CANTRECV */
|
|
"RPC: Timed out", /* 5 - RPC_TIMEDOUT */
|
|
"RPC: Incompatible versions of RPC", /* 6 - RPC_VERSMISMATCH */
|
|
"RPC: Authentication error", /* 7 - RPC_AUTHERROR */
|
|
"RPC: Program unavailable", /* 8 - RPC_PROGUNAVAIL */
|
|
"RPC: Program/version mismatch", /* 9 - RPC_PROGVERSMISMATCH */
|
|
"RPC: Procedure unavailable", /* 10 - RPC_PROCUNAVAIL */
|
|
"RPC: Server can't decode arguments", /* 11 - RPC_CANTDECODEARGS */
|
|
"RPC: Remote system error", /* 12 - RPC_SYSTEMERROR */
|
|
"RPC: Unknown host", /* 13 - RPC_UNKNOWNHOST */
|
|
"RPC: Port mapper failure", /* 14 - RPC_PMAPFAILURE */
|
|
"RPC: Program not registered", /* 15 - RPC_PROGNOTREGISTERED */
|
|
"RPC: Failed (unspecified error)", /* 16 - RPC_FAILED */
|
|
"RPC: Unknown protocol" /* 17 - RPC_UNKNOWNPROTO */
|
|
};
|
|
|
|
|
|
/*
|
|
* This interface for use by clntrpc
|
|
*/
|
|
char *
|
|
clnt_sperrno(stat)
|
|
enum clnt_stat stat;
|
|
{
|
|
unsigned int errnum = stat;
|
|
|
|
if (errnum < (sizeof(rpc_errlist)/sizeof(rpc_errlist[0])))
|
|
/* LINTED interface problem */
|
|
return (char *)rpc_errlist[errnum];
|
|
|
|
return ("RPC: (unknown error code)");
|
|
}
|
|
|
|
void
|
|
clnt_perrno(num)
|
|
enum clnt_stat num;
|
|
{
|
|
(void) fprintf(stderr, "%s\n", clnt_sperrno(num));
|
|
}
|
|
|
|
|
|
char *
|
|
clnt_spcreateerror(s)
|
|
const char *s;
|
|
{
|
|
char *str, *err;
|
|
size_t len, i;
|
|
|
|
assert(s != NULL);
|
|
|
|
str = _buf(); /* side effect: sets CLNT_PERROR_BUFLEN */
|
|
if (str == 0)
|
|
return(0);
|
|
len = CLNT_PERROR_BUFLEN;
|
|
i = snprintf(str, len, "%s: ", s);
|
|
if (i > 0)
|
|
len -= i;
|
|
(void)strncat(str, clnt_sperrno(rpc_createerr.cf_stat), len - 1);
|
|
switch (rpc_createerr.cf_stat) {
|
|
case RPC_PMAPFAILURE:
|
|
(void) strncat(str, " - ", len - 1);
|
|
err = clnt_sperrno(rpc_createerr.cf_error.re_status);
|
|
if (err)
|
|
(void) strncat(str, err+5, len-5);
|
|
switch(rpc_createerr.cf_error.re_status) {
|
|
case RPC_CANTSEND:
|
|
case RPC_CANTRECV:
|
|
i = strlen(str);
|
|
len -= i;
|
|
snprintf(str+i, len, ": errno %d (%s)",
|
|
rpc_createerr.cf_error.re_errno,
|
|
strerror(rpc_createerr.cf_error.re_errno));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case RPC_SYSTEMERROR:
|
|
(void)strncat(str, " - ", len - 1);
|
|
(void)strncat(str, strerror(rpc_createerr.cf_error.re_errno),
|
|
len - 4);
|
|
break;
|
|
|
|
case RPC_CANTSEND:
|
|
case RPC_CANTDECODERES:
|
|
case RPC_CANTENCODEARGS:
|
|
case RPC_SUCCESS:
|
|
case RPC_UNKNOWNPROTO:
|
|
case RPC_PROGNOTREGISTERED:
|
|
case RPC_FAILED:
|
|
case RPC_UNKNOWNHOST:
|
|
case RPC_CANTDECODEARGS:
|
|
case RPC_PROCUNAVAIL:
|
|
case RPC_PROGVERSMISMATCH:
|
|
case RPC_PROGUNAVAIL:
|
|
case RPC_AUTHERROR:
|
|
case RPC_VERSMISMATCH:
|
|
case RPC_TIMEDOUT:
|
|
case RPC_CANTRECV:
|
|
default:
|
|
break;
|
|
}
|
|
str[CLNT_PERROR_BUFLEN-1] = '\0';
|
|
return (str);
|
|
}
|
|
|
|
void
|
|
clnt_pcreateerror(s)
|
|
const char *s;
|
|
{
|
|
|
|
assert(s != NULL);
|
|
|
|
(void) fprintf(stderr, "%s\n", clnt_spcreateerror(s));
|
|
}
|
|
|
|
static const char *const auth_errlist[] = {
|
|
"Authentication OK", /* 0 - AUTH_OK */
|
|
"Invalid client credential", /* 1 - AUTH_BADCRED */
|
|
"Server rejected credential", /* 2 - AUTH_REJECTEDCRED */
|
|
"Invalid client verifier", /* 3 - AUTH_BADVERF */
|
|
"Server rejected verifier", /* 4 - AUTH_REJECTEDVERF */
|
|
"Client credential too weak", /* 5 - AUTH_TOOWEAK */
|
|
"Invalid server verifier", /* 6 - AUTH_INVALIDRESP */
|
|
"Failed (unspecified error)", /* 7 - AUTH_FAILED */
|
|
"Kerberos generic error", /* 8 - AUTH_KERB_GENERIC*/
|
|
"Kerberos credential expired", /* 9 - AUTH_TIMEEXPIRE */
|
|
"Bad kerberos ticket file", /* 10 - AUTH_TKT_FILE */
|
|
"Can't decode kerberos authenticator", /* 11 - AUTH_DECODE */
|
|
"Address wrong in kerberos ticket", /* 12 - AUTH_NET_ADDR */
|
|
"GSS-API crediential problem", /* 13 - RPCSEC_GSS_CREDPROBLEM */
|
|
"GSS-API context problem" /* 14 - RPCSEC_GSS_CTXPROBLEM */
|
|
};
|
|
|
|
static char *
|
|
auth_errmsg(stat)
|
|
enum auth_stat stat;
|
|
{
|
|
unsigned int errnum = stat;
|
|
|
|
if (errnum < (sizeof(auth_errlist)/sizeof(auth_errlist[0])))
|
|
/* LINTED interface problem */
|
|
return (char *)auth_errlist[errnum];
|
|
|
|
return(NULL);
|
|
}
|