xref: /original-bsd/usr.sbin/sendmail/src/err.c (revision 3705696b)
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.6 (Berkeley) 07/22/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 char	MsgBuf[BUFSIZ*2];	/* text of most recent message */
42 
43 static void	fmtmsg();
44 
45 #if defined(NAMED_BIND) && !defined(NO_DATA)
46 # define NO_DATA	NO_ADDRESS
47 #endif
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 && strchr("456", msg[0]) != NULL)
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 	/* map warnings to something SMTP can handle */
251 	if (msg[0] == '6')
252 		msg[0] = '5';
253 
254 	(void) fflush(stdout);
255 	if (OpMode == MD_SMTP)
256 		fprintf(OutChannel, "%s\r\n", msg);
257 	else
258 		fprintf(OutChannel, "%s\n", &msg[4]);
259 	if (TrafficLogFile != NULL)
260 		fprintf(TrafficLogFile, "%05d >>> %s\n", getpid(),
261 			OpMode == MD_SMTP ? msg : &msg[4]);
262 	if (msg[3] == ' ')
263 		(void) fflush(OutChannel);
264 	if (!ferror(OutChannel))
265 		return;
266 
267 	/* error on output -- if reporting lost channel, just ignore it */
268 	if (feof(InChannel) || ferror(InChannel))
269 		return;
270 
271 	/* can't call syserr, 'cause we are using MsgBuf */
272 	HoldErrs = TRUE;
273 #ifdef LOG
274 	if (LogLevel > 0)
275 		syslog(LOG_CRIT,
276 			"%s: SYSERR: putoutmsg (%s): error on output channel sending \"%s\"",
277 			CurEnv->e_id == NULL ? "NOQUEUE" : CurEnv->e_id,
278 			CurHostName, msg);
279 #endif
280 }
281 /*
282 **  PUTERRMSG -- like putoutmsg, but does special processing for error messages
283 **
284 **	Parameters:
285 **		msg -- the message to output.
286 **
287 **	Returns:
288 **		none.
289 **
290 **	Side Effects:
291 **		Sets the fatal error bit in the envelope as appropriate.
292 */
293 
294 puterrmsg(msg)
295 	char *msg;
296 {
297 	char msgcode = msg[0];
298 
299 	/* output the message as usual */
300 	putoutmsg(msg, HoldErrs);
301 
302 	/* signal the error */
303 	if (msgcode == '6')
304 	{
305 		/* notify the postmaster */
306 		CurEnv->e_flags |= EF_PM_NOTIFY;
307 	}
308 	else
309 	{
310 		Errors++;
311 		if (msgcode == '5' && bitset(EF_GLOBALERRS, CurEnv->e_flags))
312 			CurEnv->e_flags |= EF_FATALERRS;
313 	}
314 }
315 /*
316 **  FMTMSG -- format a message into buffer.
317 **
318 **	Parameters:
319 **		eb -- error buffer to get result.
320 **		to -- the recipient tag for this message.
321 **		num -- arpanet error number.
322 **		en -- the error number to display.
323 **		fmt -- format of string.
324 **		a, b, c, d, e -- arguments.
325 **
326 **	Returns:
327 **		none.
328 **
329 **	Side Effects:
330 **		none.
331 */
332 
333 static void
334 fmtmsg(eb, to, num, eno, fmt, ap)
335 	register char *eb;
336 	char *to;
337 	char *num;
338 	int eno;
339 	char *fmt;
340 	va_list ap;
341 {
342 	char del;
343 	char *meb;
344 
345 	/* output the reply code */
346 	if (isdigit(fmt[0]) && isdigit(fmt[1]) && isdigit(fmt[2]))
347 	{
348 		num = fmt;
349 		fmt += 4;
350 	}
351 	if (num[3] == '-')
352 		del = '-';
353 	else
354 		del = ' ';
355 	(void) sprintf(eb, "%3.3s%c", num, del);
356 	eb += 4;
357 
358 	/* output the file name and line number */
359 	if (FileName != NULL)
360 	{
361 		(void) sprintf(eb, "%s: line %d: ", FileName, LineNumber);
362 		eb += strlen(eb);
363 	}
364 
365 	/* output the "to" person */
366 	if (to != NULL && to[0] != '\0')
367 	{
368 		(void) sprintf(eb, "%s... ", to);
369 		while (*eb != '\0')
370 			*eb++ &= 0177;
371 	}
372 
373 	meb = eb;
374 
375 	/* output the message */
376 	(void) vsprintf(eb, fmt, ap);
377 	while (*eb != '\0')
378 		*eb++ &= 0177;
379 
380 	/* output the error code, if any */
381 	if (eno != 0)
382 	{
383 		(void) sprintf(eb, ": %s", errstring(eno));
384 		eb += strlen(eb);
385 	}
386 
387 	if (CurEnv->e_message == NULL && strchr("45", num[0]) != NULL)
388 		CurEnv->e_message = newstr(meb);
389 }
390 /*
391 **  ERRSTRING -- return string description of error code
392 **
393 **	Parameters:
394 **		errno -- the error number to translate
395 **
396 **	Returns:
397 **		A string description of errno.
398 **
399 **	Side Effects:
400 **		none.
401 */
402 
403 const char *
404 errstring(errno)
405 	int errno;
406 {
407 	static char buf[MAXLINE];
408 # ifndef ERRLIST_PREDEFINED
409 	extern char *sys_errlist[];
410 	extern int sys_nerr;
411 # endif
412 # ifdef SMTP
413 	extern char *SmtpPhase;
414 # endif /* SMTP */
415 
416 # ifdef DAEMON
417 # ifdef ETIMEDOUT
418 	/*
419 	**  Handle special network error codes.
420 	**
421 	**	These are 4.2/4.3bsd specific; they should be in daemon.c.
422 	*/
423 
424 	switch (errno)
425 	{
426 	  case ETIMEDOUT:
427 	  case ECONNRESET:
428 		(void) strcpy(buf, sys_errlist[errno]);
429 		if (SmtpPhase != NULL)
430 		{
431 			(void) strcat(buf, " during ");
432 			(void) strcat(buf, SmtpPhase);
433 		}
434 		if (CurHostName != NULL)
435 		{
436 			(void) strcat(buf, " with ");
437 			(void) strcat(buf, CurHostName);
438 		}
439 		return (buf);
440 
441 	  case EHOSTDOWN:
442 		if (CurHostName == NULL)
443 			break;
444 		(void) sprintf(buf, "Host %s is down", CurHostName);
445 		return (buf);
446 
447 	  case ECONNREFUSED:
448 		if (CurHostName == NULL)
449 			break;
450 		(void) sprintf(buf, "Connection refused by %s", CurHostName);
451 		return (buf);
452 
453 	  case EOPENTIMEOUT:
454 		return "Timeout on file open";
455 
456 # ifdef NAMED_BIND
457 	  case HOST_NOT_FOUND + E_DNSBASE:
458 		return ("Name server: host not found");
459 
460 	  case TRY_AGAIN + E_DNSBASE:
461 		return ("Name server: host name lookup failure");
462 
463 	  case NO_RECOVERY + E_DNSBASE:
464 		return ("Name server: non-recoverable error");
465 
466 	  case NO_DATA + E_DNSBASE:
467 		return ("Name server: no data known for name");
468 # endif
469 	}
470 # endif
471 # endif
472 
473 	if (errno > 0 && errno < sys_nerr)
474 		return (sys_errlist[errno]);
475 
476 	(void) sprintf(buf, "Error %d", errno);
477 	return (buf);
478 }
479