1 /* @(#)clnt_perror.c 2.1 88/07/29 4.0 RPCSRC */
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
28 * Mountain View, California 94043
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid
[] = "@(#)clnt_perror.c 1.15 87/10/07 Copyr 1984 Sun Micro";
37 * Copyright (C) 1984, Sun Microsystems, Inc.
42 #include <rpc/types.h>
47 # include <libio/iolibio.h>
48 # define fputs(s, f) _IO_fputs (s, f)
51 static char *auth_errmsg (enum auth_stat stat
) internal_function
;
59 buf
= (char *) malloc (256);
64 * Print reply error info
67 clnt_sperror (CLIENT
* rpch
, const char *msg
)
78 CLNT_GETERR (rpch
, &e
);
80 len
= sprintf (str
, "%s: ", msg
);
83 str
= stpcpy (str
, clnt_sperrno (e
.re_status
));
88 case RPC_CANTENCODEARGS
:
89 case RPC_CANTDECODERES
:
93 case RPC_CANTDECODEARGS
:
96 case RPC_UNKNOWNPROTO
:
98 case RPC_PROGNOTREGISTERED
:
104 len
= sprintf (str
, "; errno = %s", __strerror_r (e
.re_errno
,
109 case RPC_VERSMISMATCH
:
110 len
= sprintf (str
, _("; low version = %lu, high version = %lu"),
111 e
.re_vers
.low
, e
.re_vers
.high
);
116 err
= auth_errmsg (e
.re_why
);
117 str
= stpcpy (str
, _ ("; why = "));
120 str
= stpcpy (str
, err
);
124 len
= sprintf (str
, _("(unknown authentication error - %d)"),
130 case RPC_PROGVERSMISMATCH
:
131 len
= sprintf (str
, _("; low version = %lu, high version = %lu"),
132 e
.re_vers
.low
, e
.re_vers
.high
);
136 default: /* unknown */
137 len
= sprintf (str
, "; s1 = %lu, s2 = %lu", e
.re_lb
.s1
, e
.re_lb
.s2
);
147 clnt_perror (CLIENT
* rpch
, const char *msg
)
149 (void) fputs (clnt_sperror (rpch
, msg
), stderr
);
155 enum clnt_stat status
;
159 static const struct rpc_errtab rpc_errlist
[] =
164 N_("RPC: Can't encode arguments")},
166 N_("RPC: Can't decode result")},
168 N_("RPC: Unable to send")},
170 N_("RPC: Unable to receive")},
172 N_("RPC: Timed out")},
174 N_("RPC: Incompatible versions of RPC")},
176 N_("RPC: Authentication error")},
178 N_("RPC: Program unavailable")},
179 {RPC_PROGVERSMISMATCH
,
180 N_("RPC: Program/version mismatch")},
182 N_("RPC: Procedure unavailable")},
184 N_("RPC: Server can't decode arguments")},
186 N_("RPC: Remote system error")},
188 N_("RPC: Unknown host")},
190 N_("RPC: Unknown protocol")},
192 N_("RPC: Port mapper failure")},
193 {RPC_PROGNOTREGISTERED
,
194 N_("RPC: Program not registered")},
196 N_("RPC: Failed (unspecified error)")}
201 * This interface for use by clntrpc
204 clnt_sperrno (enum clnt_stat stat
)
208 for (i
= 0; i
< sizeof (rpc_errlist
) / sizeof (struct rpc_errtab
); i
++)
210 if (rpc_errlist
[i
].status
== stat
)
212 return _(rpc_errlist
[i
].message
);
215 return _("RPC: (unknown error code)");
219 clnt_perrno (enum clnt_stat num
)
221 (void) fputs (clnt_sperrno (num
), stderr
);
226 clnt_spcreateerror (const char *msg
)
235 len
= sprintf (str
, "%s: ", msg
);
237 cp
= stpcpy (cp
, clnt_sperrno (rpc_createerr
.cf_stat
));
238 switch (rpc_createerr
.cf_stat
)
240 case RPC_PMAPFAILURE
:
241 cp
= stpcpy (stpcpy (cp
, " - "),
242 clnt_sperrno (rpc_createerr
.cf_error
.re_status
));
245 case RPC_SYSTEMERROR
:
246 cp
= stpcpy (stpcpy (cp
, " - "),
247 __strerror_r (rpc_createerr
.cf_error
.re_errno
,
259 clnt_pcreateerror (const char *msg
)
261 (void) fputs (clnt_spcreateerror (msg
), stderr
);
266 enum auth_stat status
;
270 static const struct auth_errtab auth_errlist
[] =
273 N_("Authentication OK")},
275 N_("Invalid client credential")},
277 N_("Server rejected credential")},
279 N_("Invalid client verifier")},
281 N_("Server rejected verifier")},
283 N_("Client credential too weak")},
285 N_("Invalid server verifier")},
287 N_("Failed (unspecified error)")},
292 auth_errmsg (enum auth_stat stat
)
296 for (i
= 0; i
< sizeof (auth_errlist
) / sizeof (struct auth_errtab
); i
++)
298 if (auth_errlist
[i
].status
== stat
)
300 return _(auth_errlist
[i
].message
);