1 /* 2 * Copyright (c) 1983 Eric P. Allman 3 * Copyright (c) 1988, 1993 4 * The Regents of the University of California. All rights reserved. 5 * 6 * %sccs.include.redist.c% 7 */ 8 9 #ifndef lint 10 static char sccsid[] = "@(#)err.c 8.2 (Berkeley) 07/11/93"; 11 #endif /* not lint */ 12 13 # include "sendmail.h" 14 # include <errno.h> 15 # include <netdb.h> 16 17 /* 18 ** SYSERR -- Print error message. 19 ** 20 ** Prints an error message via printf to the diagnostic 21 ** output. If LOG is defined, it logs it also. 22 ** 23 ** If the first character of the syserr message is `!' it will 24 ** log this as an ALERT message and exit immediately. This can 25 ** leave queue files in an indeterminate state, so it should not 26 ** be used lightly. 27 ** 28 ** Parameters: 29 ** f -- the format string 30 ** a, b, c, d, e -- parameters 31 ** 32 ** Returns: 33 ** none 34 ** Through TopFrame if QuickAbort is set. 35 ** 36 ** Side Effects: 37 ** increments Errors. 38 ** sets ExitStat. 39 */ 40 41 # ifdef lint 42 int sys_nerr; 43 char *sys_errlist[]; 44 # endif lint 45 char MsgBuf[BUFSIZ*2]; /* text of most recent message */ 46 47 static void fmtmsg(); 48 49 void 50 /*VARARGS1*/ 51 #ifdef __STDC__ 52 syserr(const char *fmt, ...) 53 #else 54 syserr(fmt, va_alist) 55 const char *fmt; 56 va_dcl 57 #endif 58 { 59 register char *p; 60 int olderrno = errno; 61 bool panic; 62 VA_LOCAL_DECL 63 64 panic = *fmt == '!'; 65 if (panic) 66 fmt++; 67 68 /* format and output the error message */ 69 if (olderrno == 0) 70 p = "554"; 71 else 72 p = "451"; 73 VA_START(fmt); 74 fmtmsg(MsgBuf, (char *) NULL, p, olderrno, fmt, ap); 75 VA_END; 76 puterrmsg(MsgBuf); 77 78 /* determine exit status if not already set */ 79 if (ExitStat == EX_OK) 80 { 81 if (olderrno == 0) 82 ExitStat = EX_SOFTWARE; 83 else 84 ExitStat = EX_OSERR; 85 } 86 87 # ifdef LOG 88 if (LogLevel > 0) 89 syslog(panic ? LOG_ALERT : LOG_CRIT, "%s: SYSERR: %s", 90 CurEnv->e_id == NULL ? "NOQUEUE" : CurEnv->e_id, 91 &MsgBuf[4]); 92 # endif /* LOG */ 93 if (panic) 94 { 95 #ifdef XLA 96 xla_all_end(); 97 #endif 98 exit(EX_OSERR); 99 } 100 errno = 0; 101 if (QuickAbort) 102 longjmp(TopFrame, 2); 103 } 104 /* 105 ** USRERR -- Signal user error. 106 ** 107 ** This is much like syserr except it is for user errors. 108 ** 109 ** Parameters: 110 ** fmt, a, b, c, d -- printf strings 111 ** 112 ** Returns: 113 ** none 114 ** Through TopFrame if QuickAbort is set. 115 ** 116 ** Side Effects: 117 ** increments Errors. 118 */ 119 120 /*VARARGS1*/ 121 void 122 #ifdef __STDC__ 123 usrerr(const char *fmt, ...) 124 #else 125 usrerr(fmt, va_alist) 126 const char *fmt; 127 va_dcl 128 #endif 129 { 130 VA_LOCAL_DECL 131 extern char SuprErrs; 132 extern int errno; 133 134 if (SuprErrs) 135 return; 136 137 VA_START(fmt); 138 fmtmsg(MsgBuf, CurEnv->e_to, "501", 0, fmt, ap); 139 VA_END; 140 puterrmsg(MsgBuf); 141 142 # ifdef LOG 143 if (LogLevel > 3 && LogUsrErrs) 144 syslog(LOG_NOTICE, "%s: %s", 145 CurEnv->e_id == NULL ? "NOQUEUE" : CurEnv->e_id, 146 &MsgBuf[4]); 147 # endif /* LOG */ 148 149 if (QuickAbort) 150 longjmp(TopFrame, 1); 151 } 152 /* 153 ** MESSAGE -- print message (not necessarily an error) 154 ** 155 ** Parameters: 156 ** msg -- the message (printf fmt) -- it can begin with 157 ** an SMTP reply code. If not, 050 is assumed. 158 ** a, b, c, d, e -- printf arguments 159 ** 160 ** Returns: 161 ** none 162 ** 163 ** Side Effects: 164 ** none. 165 */ 166 167 /*VARARGS2*/ 168 void 169 #ifdef __STDC__ 170 message(const char *msg, ...) 171 #else 172 message(msg, va_alist) 173 const char *msg; 174 va_dcl 175 #endif 176 { 177 VA_LOCAL_DECL 178 179 errno = 0; 180 VA_START(msg); 181 fmtmsg(MsgBuf, CurEnv->e_to, "050", 0, msg, ap); 182 VA_END; 183 putoutmsg(MsgBuf, FALSE); 184 } 185 /* 186 ** NMESSAGE -- print message (not necessarily an error) 187 ** 188 ** Just like "message" except it never puts the to... tag on. 189 ** 190 ** Parameters: 191 ** num -- the default ARPANET error number (in ascii) 192 ** msg -- the message (printf fmt) -- if it begins 193 ** with three digits, this number overrides num. 194 ** a, b, c, d, e -- printf arguments 195 ** 196 ** Returns: 197 ** none 198 ** 199 ** Side Effects: 200 ** none. 201 */ 202 203 /*VARARGS2*/ 204 void 205 #ifdef __STDC__ 206 nmessage(const char *msg, ...) 207 #else 208 nmessage(msg, va_alist) 209 const char *msg; 210 va_dcl 211 #endif 212 { 213 VA_LOCAL_DECL 214 215 errno = 0; 216 VA_START(msg); 217 fmtmsg(MsgBuf, (char *) NULL, "050", 0, msg, ap); 218 VA_END; 219 putoutmsg(MsgBuf, FALSE); 220 } 221 /* 222 ** PUTOUTMSG -- output error message to transcript and channel 223 ** 224 ** Parameters: 225 ** msg -- message to output (in SMTP format). 226 ** holdmsg -- if TRUE, don't output a copy of the message to 227 ** our output channel. 228 ** 229 ** Returns: 230 ** none. 231 ** 232 ** Side Effects: 233 ** Outputs msg to the transcript. 234 ** If appropriate, outputs it to the channel. 235 ** Deletes SMTP reply code number as appropriate. 236 */ 237 238 putoutmsg(msg, holdmsg) 239 char *msg; 240 bool holdmsg; 241 { 242 /* output to transcript if serious */ 243 if (CurEnv->e_xfp != NULL && (msg[0] == '4' || msg[0] == '5')) 244 fprintf(CurEnv->e_xfp, "%s\n", msg); 245 246 /* output to channel if appropriate */ 247 if (holdmsg || (!Verbose && msg[0] == '0')) 248 return; 249 250 (void) fflush(stdout); 251 if (OpMode == MD_SMTP) 252 fprintf(OutChannel, "%s\r\n", msg); 253 else 254 fprintf(OutChannel, "%s\n", &msg[4]); 255 if (TrafficLogFile != NULL) 256 fprintf(TrafficLogFile, "%05d >>> %s\n", getpid(), 257 OpMode == MD_SMTP ? msg : &msg[4]); 258 if (msg[3] == ' ') 259 (void) fflush(OutChannel); 260 if (!ferror(OutChannel)) 261 return; 262 263 /* error on output -- if reporting lost channel, just ignore it */ 264 if (feof(InChannel) || ferror(InChannel)) 265 return; 266 267 /* can't call syserr, 'cause we are using MsgBuf */ 268 HoldErrs = TRUE; 269 #ifdef LOG 270 if (LogLevel > 0) 271 syslog(LOG_CRIT, 272 "%s: SYSERR: putoutmsg (%s): error on output channel sending \"%s\"", 273 CurEnv->e_id == NULL ? "NOQUEUE" : CurEnv->e_id, 274 CurHostName, msg); 275 #endif 276 } 277 /* 278 ** PUTERRMSG -- like putoutmsg, but does special processing for error messages 279 ** 280 ** Parameters: 281 ** msg -- the message to output. 282 ** 283 ** Returns: 284 ** none. 285 ** 286 ** Side Effects: 287 ** Sets the fatal error bit in the envelope as appropriate. 288 */ 289 290 puterrmsg(msg) 291 char *msg; 292 { 293 /* output the message as usual */ 294 putoutmsg(msg, HoldErrs); 295 296 /* signal the error */ 297 Errors++; 298 if (msg[0] == '5') 299 CurEnv->e_flags |= EF_FATALERRS; 300 } 301 /* 302 ** FMTMSG -- format a message into buffer. 303 ** 304 ** Parameters: 305 ** eb -- error buffer to get result. 306 ** to -- the recipient tag for this message. 307 ** num -- arpanet error number. 308 ** en -- the error number to display. 309 ** fmt -- format of string. 310 ** a, b, c, d, e -- arguments. 311 ** 312 ** Returns: 313 ** none. 314 ** 315 ** Side Effects: 316 ** none. 317 */ 318 319 static void 320 fmtmsg(eb, to, num, eno, fmt, ap) 321 register char *eb; 322 char *to; 323 char *num; 324 int eno; 325 char *fmt; 326 va_list ap; 327 { 328 char del; 329 char *meb; 330 331 /* output the reply code */ 332 if (isdigit(fmt[0]) && isdigit(fmt[1]) && isdigit(fmt[2])) 333 { 334 num = fmt; 335 fmt += 4; 336 } 337 if (num[3] == '-') 338 del = '-'; 339 else 340 del = ' '; 341 (void) sprintf(eb, "%3.3s%c", num, del); 342 eb += 4; 343 344 /* output the file name and line number */ 345 if (FileName != NULL) 346 { 347 (void) sprintf(eb, "%s: line %d: ", FileName, LineNumber); 348 eb += strlen(eb); 349 } 350 351 /* output the "to" person */ 352 if (to != NULL && to[0] != '\0') 353 { 354 (void) sprintf(eb, "%s... ", to); 355 while (*eb != '\0') 356 *eb++ &= 0177; 357 } 358 359 meb = eb; 360 361 /* output the message */ 362 (void) vsprintf(eb, fmt, ap); 363 while (*eb != '\0') 364 *eb++ &= 0177; 365 366 /* output the error code, if any */ 367 if (eno != 0) 368 { 369 (void) sprintf(eb, ": %s", errstring(eno)); 370 eb += strlen(eb); 371 } 372 373 if (CurEnv->e_message == NULL && strchr("45", num[0]) != NULL) 374 CurEnv->e_message = newstr(meb); 375 } 376 /* 377 ** ERRSTRING -- return string description of error code 378 ** 379 ** Parameters: 380 ** errno -- the error number to translate 381 ** 382 ** Returns: 383 ** A string description of errno. 384 ** 385 ** Side Effects: 386 ** none. 387 */ 388 389 const char * 390 errstring(errno) 391 int errno; 392 { 393 extern const char *const sys_errlist[]; 394 extern int sys_nerr; 395 static char buf[MAXLINE]; 396 # ifdef SMTP 397 extern char *SmtpPhase; 398 # endif /* SMTP */ 399 400 # ifdef DAEMON 401 # ifdef ETIMEDOUT 402 /* 403 ** Handle special network error codes. 404 ** 405 ** These are 4.2/4.3bsd specific; they should be in daemon.c. 406 */ 407 408 switch (errno) 409 { 410 case ETIMEDOUT: 411 case ECONNRESET: 412 (void) strcpy(buf, sys_errlist[errno]); 413 if (SmtpPhase != NULL) 414 { 415 (void) strcat(buf, " during "); 416 (void) strcat(buf, SmtpPhase); 417 } 418 if (CurHostName != NULL) 419 { 420 (void) strcat(buf, " with "); 421 (void) strcat(buf, CurHostName); 422 } 423 return (buf); 424 425 case EHOSTDOWN: 426 if (CurHostName == NULL) 427 break; 428 (void) sprintf(buf, "Host %s is down", CurHostName); 429 return (buf); 430 431 case ECONNREFUSED: 432 if (CurHostName == NULL) 433 break; 434 (void) sprintf(buf, "Connection refused by %s", CurHostName); 435 return (buf); 436 437 # ifdef NAMED_BIND 438 case HOST_NOT_FOUND + MAX_ERRNO: 439 return ("Name server: host not found"); 440 441 case TRY_AGAIN + MAX_ERRNO: 442 return ("Name server: host name lookup failure"); 443 444 case NO_RECOVERY + MAX_ERRNO: 445 return ("Name server: non-recoverable error"); 446 447 case NO_DATA + MAX_ERRNO: 448 return ("Name server: no data known for name"); 449 # endif 450 } 451 # endif 452 # endif 453 454 if (errno > 0 && errno < sys_nerr) 455 return (sys_errlist[errno]); 456 457 (void) sprintf(buf, "Error %d", errno); 458 return (buf); 459 } 460