2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
29 * @(#)clnt_perror.c 1.15 87/10/07 Copyr 1984 Sun Micro
30 * @(#)clnt_perror.c 2.1 88/07/29 4.0 RPCSRC
31 * $NetBSD: clnt_perror.c,v 1.24 2000/06/02 23:11:07 fvdl Exp $
32 * $FreeBSD: src/lib/libc/rpc/clnt_perror.c,v 1.17 2004/10/16 06:11:34 obrien Exp $
33 * $DragonFly: src/lib/libc/rpc/clnt_perror.c,v 1.5 2005/11/13 12:27:04 swildner Exp $
39 * Copyright (C) 1984, Sun Microsystems, Inc.
42 #include "namespace.h"
49 #include <rpc/types.h>
52 #include "un-namespace.h"
56 static char *_buf(void);
57 static char *auth_errmsg(enum auth_stat
);
58 #define CLNT_PERROR_BUFLEN 256
65 buf
= (char *)malloc(CLNT_PERROR_BUFLEN
);
70 * Print reply error info
73 clnt_sperror(CLIENT
*rpch
, const char *s
)
84 str
= _buf(); /* side effect: sets CLNT_PERROR_BUFLEN */
87 len
= CLNT_PERROR_BUFLEN
;
89 CLNT_GETERR(rpch
, &e
);
91 if ((i
= snprintf(str
, len
, "%s: ", s
)) > 0) {
96 strncpy(str
, clnt_sperrno(e
.re_status
), len
- 1);
101 switch (e
.re_status
) {
103 case RPC_CANTENCODEARGS
:
104 case RPC_CANTDECODERES
:
106 case RPC_PROGUNAVAIL
:
107 case RPC_PROCUNAVAIL
:
108 case RPC_CANTDECODEARGS
:
109 case RPC_SYSTEMERROR
:
110 case RPC_UNKNOWNHOST
:
111 case RPC_UNKNOWNPROTO
:
112 case RPC_PMAPFAILURE
:
113 case RPC_PROGNOTREGISTERED
:
119 i
= snprintf(str
, len
, "; errno = %s", strerror(e
.re_errno
));
126 case RPC_VERSMISMATCH
:
127 i
= snprintf(str
, len
, "; low version = %u, high version = %u",
128 e
.re_vers
.low
, e
.re_vers
.high
);
136 err
= auth_errmsg(e
.re_why
);
137 i
= snprintf(str
, len
, "; why = ");
143 i
= snprintf(str
, len
, "%s",err
);
145 i
= snprintf(str
, len
,
146 "(unknown authentication error - %d)",
155 case RPC_PROGVERSMISMATCH
:
156 i
= snprintf(str
, len
, "; low version = %u, high version = %u",
157 e
.re_vers
.low
, e
.re_vers
.high
);
164 default: /* unknown */
165 i
= snprintf(str
, len
, "; s1 = %u, s2 = %u",
166 e
.re_lb
.s1
, e
.re_lb
.s2
);
173 strstart
[CLNT_PERROR_BUFLEN
-1] = '\0';
178 clnt_perror(CLIENT
*rpch
, const char *s
)
181 assert(rpch
!= NULL
);
184 fprintf(stderr
, "%s\n", clnt_sperror(rpch
,s
));
187 static const char *const rpc_errlist
[] = {
188 "RPC: Success", /* 0 - RPC_SUCCESS */
189 "RPC: Can't encode arguments", /* 1 - RPC_CANTENCODEARGS */
190 "RPC: Can't decode result", /* 2 - RPC_CANTDECODERES */
191 "RPC: Unable to send", /* 3 - RPC_CANTSEND */
192 "RPC: Unable to receive", /* 4 - RPC_CANTRECV */
193 "RPC: Timed out", /* 5 - RPC_TIMEDOUT */
194 "RPC: Incompatible versions of RPC", /* 6 - RPC_VERSMISMATCH */
195 "RPC: Authentication error", /* 7 - RPC_AUTHERROR */
196 "RPC: Program unavailable", /* 8 - RPC_PROGUNAVAIL */
197 "RPC: Program/version mismatch", /* 9 - RPC_PROGVERSMISMATCH */
198 "RPC: Procedure unavailable", /* 10 - RPC_PROCUNAVAIL */
199 "RPC: Server can't decode arguments", /* 11 - RPC_CANTDECODEARGS */
200 "RPC: Remote system error", /* 12 - RPC_SYSTEMERROR */
201 "RPC: Unknown host", /* 13 - RPC_UNKNOWNHOST */
202 "RPC: Port mapper failure", /* 14 - RPC_PMAPFAILURE */
203 "RPC: Program not registered", /* 15 - RPC_PROGNOTREGISTERED */
204 "RPC: Failed (unspecified error)", /* 16 - RPC_FAILED */
205 "RPC: Unknown protocol" /* 17 - RPC_UNKNOWNPROTO */
210 * This interface for use by clntrpc
213 clnt_sperrno(enum clnt_stat stat
)
215 unsigned int errnum
= stat
;
217 if (errnum
< (sizeof(rpc_errlist
)/sizeof(rpc_errlist
[0])))
218 /* LINTED interface problem */
219 return (char *)rpc_errlist
[errnum
];
221 return ("RPC: (unknown error code)");
225 clnt_perrno(enum clnt_stat num
)
227 fprintf(stderr
, "%s\n", clnt_sperrno(num
));
232 clnt_spcreateerror(const char *s
)
239 str
= _buf(); /* side effect: sets CLNT_PERROR_BUFLEN */
242 len
= CLNT_PERROR_BUFLEN
;
243 i
= snprintf(str
, len
, "%s: ", s
);
246 strncat(str
, clnt_sperrno(rpc_createerr
.cf_stat
), len
- 1);
247 switch (rpc_createerr
.cf_stat
) {
248 case RPC_PMAPFAILURE
:
249 strncat(str
, " - ", len
- 1);
251 clnt_sperrno(rpc_createerr
.cf_error
.re_status
), len
- 4);
254 case RPC_SYSTEMERROR
:
255 strncat(str
, " - ", len
- 1);
256 strncat(str
, strerror(rpc_createerr
.cf_error
.re_errno
),
261 case RPC_CANTDECODERES
:
262 case RPC_CANTENCODEARGS
:
264 case RPC_UNKNOWNPROTO
:
265 case RPC_PROGNOTREGISTERED
:
267 case RPC_UNKNOWNHOST
:
268 case RPC_CANTDECODEARGS
:
269 case RPC_PROCUNAVAIL
:
270 case RPC_PROGVERSMISMATCH
:
271 case RPC_PROGUNAVAIL
:
273 case RPC_VERSMISMATCH
:
279 str
[CLNT_PERROR_BUFLEN
-1] = '\0';
284 clnt_pcreateerror(const char *s
)
289 fprintf(stderr
, "%s\n", clnt_spcreateerror(s
));
292 static const char *const auth_errlist
[] = {
293 "Authentication OK", /* 0 - AUTH_OK */
294 "Invalid client credential", /* 1 - AUTH_BADCRED */
295 "Server rejected credential", /* 2 - AUTH_REJECTEDCRED */
296 "Invalid client verifier", /* 3 - AUTH_BADVERF */
297 "Server rejected verifier", /* 4 - AUTH_REJECTEDVERF */
298 "Client credential too weak", /* 5 - AUTH_TOOWEAK */
299 "Invalid server verifier", /* 6 - AUTH_INVALIDRESP */
300 "Failed (unspecified error)" /* 7 - AUTH_FAILED */
304 auth_errmsg(enum auth_stat stat
)
306 unsigned int errnum
= stat
;
308 if (errnum
< (sizeof(auth_errlist
)/sizeof(auth_errlist
[0])))
309 /* LINTED interface problem */
310 return (char *)auth_errlist
[errnum
];