1 /* 2 * Copyright (c) 1983 Eric P. Allman 3 * Copyright (c) 1988 Regents of the University of California. 4 * All rights reserved. 5 * 6 * %sccs.include.redist.c% 7 */ 8 9 #ifndef lint 10 static char sccsid[] = "@(#)err.c 6.14 (Berkeley) 04/30/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(char *fmt, ...) 53 #else 54 syserr(fmt, va_alist) 55 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(char *fmt, ...) 124 #else 125 usrerr(fmt, va_alist) 126 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(char *msg, ...) 171 #else 172 message(msg, va_alist) 173 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 putmsg(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(char *msg, ...) 207 #else 208 nmessage(msg, va_alist) 209 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 putmsg(MsgBuf, FALSE); 220 } 221 /* 222 ** PUTMSG -- 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 putmsg(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 { 249 (void) fflush(stdout); 250 if (OpMode == MD_SMTP) 251 fprintf(OutChannel, "%s\r\n", msg); 252 else 253 fprintf(OutChannel, "%s\n", &msg[4]); 254 (void) fflush(OutChannel); 255 if (ferror(OutChannel)) 256 { 257 HoldErrs = TRUE; 258 syserr("putmsg: error on output channel"); 259 } 260 } 261 } 262 /* 263 ** PUTERRMSG -- like putmsg, but does special processing for error messages 264 ** 265 ** Parameters: 266 ** msg -- the message to output. 267 ** 268 ** Returns: 269 ** none. 270 ** 271 ** Side Effects: 272 ** Sets the fatal error bit in the envelope as appropriate. 273 */ 274 275 puterrmsg(msg) 276 char *msg; 277 { 278 /* output the message as usual */ 279 putmsg(msg, HoldErrs); 280 281 /* signal the error */ 282 Errors++; 283 if (msg[0] == '5') 284 CurEnv->e_flags |= EF_FATALERRS; 285 } 286 /* 287 ** FMTMSG -- format a message into buffer. 288 ** 289 ** Parameters: 290 ** eb -- error buffer to get result. 291 ** to -- the recipient tag for this message. 292 ** num -- arpanet error number. 293 ** en -- the error number to display. 294 ** fmt -- format of string. 295 ** a, b, c, d, e -- arguments. 296 ** 297 ** Returns: 298 ** none. 299 ** 300 ** Side Effects: 301 ** none. 302 */ 303 304 static void 305 fmtmsg(eb, to, num, eno, fmt, ap) 306 register char *eb; 307 char *to; 308 char *num; 309 int eno; 310 char *fmt; 311 va_list ap; 312 { 313 char del; 314 315 /* output the reply code */ 316 if (isdigit(fmt[0]) && isdigit(fmt[1]) && isdigit(fmt[2])) 317 { 318 num = fmt; 319 fmt += 4; 320 } 321 if (num[3] == '-') 322 del = '-'; 323 else 324 del = ' '; 325 (void) sprintf(eb, "%3.3s%c", num, del); 326 eb += 4; 327 328 /* output the file name and line number */ 329 if (FileName != NULL) 330 { 331 (void) sprintf(eb, "%s: line %d: ", FileName, LineNumber); 332 eb += strlen(eb); 333 } 334 335 /* output the "to" person */ 336 if (to != NULL && to[0] != '\0') 337 { 338 (void) sprintf(eb, "%s... ", to); 339 while (*eb != '\0') 340 *eb++ &= 0177; 341 } 342 343 /* output the message */ 344 (void) vsprintf(eb, fmt, ap); 345 while (*eb != '\0') 346 *eb++ &= 0177; 347 348 /* output the error code, if any */ 349 if (eno != 0) 350 { 351 extern char *errstring(); 352 353 (void) sprintf(eb, ": %s", errstring(eno)); 354 eb += strlen(eb); 355 } 356 } 357 /* 358 ** ERRSTRING -- return string description of error code 359 ** 360 ** Parameters: 361 ** errno -- the error number to translate 362 ** 363 ** Returns: 364 ** A string description of errno. 365 ** 366 ** Side Effects: 367 ** none. 368 */ 369 370 char * 371 errstring(errno) 372 int errno; 373 { 374 extern char *sys_errlist[]; 375 extern int sys_nerr; 376 static char buf[MAXLINE]; 377 # ifdef SMTP 378 extern char *SmtpPhase; 379 # endif /* SMTP */ 380 381 # ifdef DAEMON 382 # ifdef ETIMEDOUT 383 /* 384 ** Handle special network error codes. 385 ** 386 ** These are 4.2/4.3bsd specific; they should be in daemon.c. 387 */ 388 389 switch (errno) 390 { 391 case ETIMEDOUT: 392 case ECONNRESET: 393 (void) strcpy(buf, sys_errlist[errno]); 394 if (SmtpPhase != NULL) 395 { 396 (void) strcat(buf, " during "); 397 (void) strcat(buf, SmtpPhase); 398 } 399 if (CurHostName != NULL) 400 { 401 (void) strcat(buf, " with "); 402 (void) strcat(buf, CurHostName); 403 } 404 return (buf); 405 406 case EHOSTDOWN: 407 if (CurHostName == NULL) 408 break; 409 (void) sprintf(buf, "Host %s is down", CurHostName); 410 return (buf); 411 412 case ECONNREFUSED: 413 if (CurHostName == NULL) 414 break; 415 (void) sprintf(buf, "Connection refused by %s", CurHostName); 416 return (buf); 417 418 # ifdef NAMED_BIND 419 case HOST_NOT_FOUND + MAX_ERRNO: 420 return ("Name server: host not found"); 421 422 case TRY_AGAIN + MAX_ERRNO: 423 return ("Name server: host name lookup failure"); 424 425 case NO_RECOVERY + MAX_ERRNO: 426 return ("Name server: non-recoverable error"); 427 428 case NO_DATA + MAX_ERRNO: 429 return ("Name server: no data known for name"); 430 # endif 431 } 432 # endif 433 # endif 434 435 if (errno > 0 && errno < sys_nerr) 436 return (sys_errlist[errno]); 437 438 (void) sprintf(buf, "Error %d", errno); 439 return (buf); 440 } 441