1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
/* Error Report Module
** ===================
**
** This is the implementaion of an error message reporting system that
** reports errors occured either in a stream module (structured streams
** inclusive) or in a protocol module. A list of errors are put into the
** request structure and freed together with this.
**
** History:
** 05 May 94 Written by Henrik Frystyk, frystyk@dxcern.cern.ch
*/
/* Library include files */
#include "HTTCP.h"
#include "HTUtils.h"
#include "HTError.h" /* Implemented here */
/* Globals */
PUBLIC unsigned int HTErrorShowMask = HT_ERR_SHOW_DEFAULT;
PRIVATE char *HTErrorPrefix = NULL;
/* Type definitions and global variables etc. local to this module */
/* All errors that are not strictly HTTP errors but originates from, e.g.,
the FTP protocol all have element numbers > HTERR_HTTP_CODES_END, i.e.,
they should be placed after the blank line
NOTE: codes marked `HTTP' should be future HTTP error codes.
*/
PUBLIC HTErrorMsgInfo error_info[HTERR_ELEMENTS] = {
{ 200, "OK", "ok.multi" },
{ 201, "Created", "created.multi" },
{ 202, "Accepted", "accepted.multi" },
{ 203, "Partial Information", "partial.multi" },
{ 204, "No Response", "no_response.multi" },
{ 301, "Moved", "moved.multi" },
{ 302, "Found", "found.multi" },
{ 303, "Method", "method.multi" },
{ 304, "Not Modified Since", "not_modified.multi" },
{ 400, "Invalid Request", "bad_request.multi" },
{ 401, "Unauthorized Access Denied", "unauthorized.multi" },
{ 402, "Payment Required", "payment.multi" },
{ 403, "Access forbidden", "forbidden.multi" },
{ 404, "No Match Found for", "not_found.multi" },
{ 500, "Can't Access Document", "internal.multi" },
{ 501, "Command not Implemented", "not_implem.multi" },
{ 0, "-------------------------", "----------------------------------" },
{ 0, "Can't locate remote host", "host.multi" },
{ 0, "No host name found", "host.multi" },
{ 0, "FTP-server replies", "ftp.multi" },
{ 0, "FTP-server doesn't reply", "no_server.multi" },
{ 0, "Server timed out", "time_out.multi" },
{ 0, "Gopher-server replies", "gopher.multi" },
{ 0, "Data transfer interrupted", "interrupt.multi" },
{ 0, "Connection establishment interrupted", "interrupt.multi" },
{ 0, "CSO-server replies", "cso.multi" },
{ 0, "Bad, Incomplete, or Unknown Response", "bad_reply.multi" },
{ 0, "News-server replies", "news.multi" },
{ 0, "Trying `ftp://' instead of `file://'. ANY OLD URL STILL USING WRONG ACCESS METHOD WILL BE OBSOLETE IN THE NEXT MAJOR RELEASE!",
"ftpfile.multi" },
{ 0, "Too many redirections", "redirections.multi" },
{ 0, "Response from WAIS Server too Large - Extra lines ignored",
"wais.multi" },
{ 0, "WAIS-server doesn't return any data", "wais.multi" },
{ 0, "Can't connect to WAIS-server", "wais.multi" },
{ 0, "System call `%s' failed: ", "system.multi" }
};
/* ------------------------------------------------------------------------- */
/* HTErrorAdd
**
** Add an error message to the error list in HTRequest. `par' and `where'
** might be set to NULL. If par is a string, it is sufficient to let
** par_length be unspecified, i.e., 0. If only a part of the string is
** wanted then specify a par_length inferior to strlen((char *) par).
** The string is '\0' terminated automaticly.
**
** NOTE: See also HTErrorSysAdd for system errors
**
** Returns always < 0
*/
PUBLIC int HTErrorAdd ARGS7(HTRequest *, request,
HTErrSeverity, severity,
BOOL, ignore,
int, element,
void *, par,
unsigned int, par_length,
char *, where)
{
HTErrorInfo *newError;
if (!request) {
if (TRACE) fprintf(stderr, "HTErrorAdd.. Bad argument!\n");
return -1;
}
if ((newError = (HTErrorInfo *) calloc(1, sizeof(HTErrorInfo))) == NULL)
outofmem(__FILE__, "HTErrorAdd");
newError->element = element;
newError->severity = severity;
newError->ignore = ignore;
if (par) {
if (!par_length)
par_length = (int) strlen((char *) par);
if ((newError->par = malloc(par_length+1)) == NULL)
outofmem(__FILE__, "HTErrorError");
memcpy(newError->par, par, par_length);
*(((char *) newError->par)+par_length) = '\0';
newError->par_length = par_length;
}
newError->where = where;
/* Add to the stack in the request structure */
if (!request->error_stack)
request->error_stack = HTList_new();
else { /* Get last object in order to find a handle */
HTList *cur = request->error_stack;
HTErrorInfo *pres = (HTErrorInfo *) HTList_nextObject(cur);
if (pres != NULL)
newError->handle = pres->handle+1;
}
if (TRACE) {
fprintf(stderr, "Message..... Handle: %d\tCode: %3d\tMessage: `%s\'\tSeverity: %d\tParameter: `%s\'\tWhere: `%s\'\n",
newError->handle,
error_info[newError->element].code,
error_info[newError->element].msg,
newError->severity,
newError->par ? (char *) newError->par : "Unspecified",
newError->where ? newError->where : "Unspecified");
}
HTList_addObject(request->error_stack, (void *) newError);
return (-element);
}
/* HTErrorSysAdd
**
** Add a system error message to the error list in HTRequest. syscall
** is the name of the system call, e.g. "close". The message put to the
** list is that corresponds to the errno. This function also replaces
** HTInetStatus, which is called from within.
**
** See also HTErrorAdd.
**
** Returns always < 0
*/
PUBLIC int HTErrorSysAdd ARGS4(HTRequest *, request,
HTErrSeverity, severity,
BOOL, ignore,
char *, syscall)
{
if (!request) {
if (TRACE) fprintf(stderr, "HTErrorSys.. Bad argument!\n");
return -1;
}
if (syscall) {
HTInetStatus(syscall);
} else
HTInetStatus("Unspecified System Call");
{
char temp[100];
char *errmsg = NULL;
sprintf(temp, error_info[HTERR_SYSTEM].msg, syscall);
StrAllocCopy(errmsg, temp);
StrAllocCat(errmsg, HTErrnoString());
HTErrorAdd(request, severity, ignore, HTERR_SYSTEM, (void *) errmsg,
(int) strlen(errmsg), syscall);
free(errmsg);
}
return (-HTERR_SYSTEM);
}
/* HTErrorFree
**
** Free the whole error stack from the HTRequest structure.
*/
PUBLIC void HTErrorFree ARGS1(HTRequest *, request)
{
HTList *cur = request->error_stack;
HTErrorInfo *pres;
if (!request || !request->error_stack)
return;
while ((pres = (HTErrorInfo *) HTList_nextObject(cur))) {
FREE(pres->par);
free(pres);
}
HTList_delete(request->error_stack);
request->error_stack = NULL;
return;
}
/* HTErrorIgnore
**
** Turns on the `ignore' flag for the error with the current handle in
** the error list. If the list is empty, nothing is done.
*/
PUBLIC void HTErrorIgnore ARGS2(HTRequest *, request, int, handle)
{
BOOL found = NO;
HTList *cur;
HTErrorInfo *pres;
if (!request) {
if (TRACE) fprintf(stderr, "HTErrorIgnore Bad argument!\n");
return;
}
cur = request->error_stack;
while ((pres = (HTErrorInfo *) HTList_nextObject(cur))) {
if (pres->handle == handle) {
pres->ignore = YES;
found = YES;
break;
}
}
if (TRACE) {
if (found) {
fprintf(stderr, "Error Ignore Handle: %d\tCode: %3d\tMessage: `%s\tSeverity: %d\tParameter: `%s\'\tWhere: `%s\'\n",
pres->handle,
error_info[pres->element].code,
error_info[pres->element].msg,
pres->severity,
pres->par ? (char *) pres->par : "Unspecified",
pres->where ? pres->where : "Unspecified");
} else {
fprintf(stderr, "Error Ignore Bad handle\n");
}
}
return;
}
/* HTErrorIgnoreLast
**
** Turns on the `ignore' flag for the most recent error entered the
** error list. If the list is empty, nothing is done.
*/
PUBLIC void HTErrorIgnoreLast ARGS1(HTRequest *, request)
{
HTList *cur;
HTErrorInfo *pres;
if (!request) {
if (TRACE) fprintf(stderr, "HTErrorIgnore Bad argument!\n");
return;
}
cur = request->error_stack;
if (cur && (pres = (HTErrorInfo *) HTList_nextObject(cur)) != NULL) {
if (TRACE)
fprintf(stderr, "Error Ignore Code: %3d\tMessage: `%s\tSeverity: %d\tParameter: `%s\'\tWhere: `%s\'\n",
error_info[pres->element].code,
error_info[pres->element].msg,
pres->severity,
pres->par ? (char *) pres->par : "Unspecified",
pres->where ? pres->where : "Unspecified");
pres->ignore = YES;
}
return;
}
/* HTErrorSetPrefix
**
** Sets the prefix for error URLs in the error message
*/
PUBLIC void HTErrorSetPrefix ARGS1(char *, path)
{
if (path && *path)
StrAllocCopy(HTErrorPrefix, path);
}
/* HTErrorGetPrefix
**
** Gets the prefix for error URLs in the error message
*/
PUBLIC CONST char *HTErrorGetPrefix NOARGS
{
return HTErrorPrefix;
}
/* HTErrorMsg
**
** Creates an error message on standard error containing the
** error_stack messages.
*/
/* *** LOOK IN HTErrorMsg.c FOR ACTUAL IMPLEMENTATION OF THIS FUNCTION *** */
/* END OF MODULE */
|