xref: /illumos-gate/usr/src/cmd/sendmail/src/sendmail.h (revision 058561cb)
1 /*
2  * Copyright (c) 1998-2006 Sendmail, Inc. and its suppliers.
3  *	All rights reserved.
4  * Copyright (c) 1983, 1995-1997 Eric P. Allman.  All rights reserved.
5  * Copyright (c) 1988, 1993
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * By using this file, you agree to the terms and conditions set
9  * forth in the LICENSE file which can be found at the top level of
10  * the sendmail distribution.
11  */
12 
13 /*
14 **  SENDMAIL.H -- MTA-specific definitions for sendmail.
15 */
16 
17 #ifndef _SENDMAIL_H
18 # define _SENDMAIL_H 1
19 
20 #pragma ident	"%Z%%M%	%I%	%E% SMI"
21 
22 #ifndef MILTER
23 # define MILTER	1	/* turn on MILTER by default */
24 #endif /* MILTER */
25 
26 #ifdef _DEFINE
27 # define EXTERN
28 #else /* _DEFINE */
29 # define EXTERN extern
30 #endif /* _DEFINE */
31 
32 
33 #include <unistd.h>
34 
35 #include <stddef.h>
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include <ctype.h>
39 #include <setjmp.h>
40 #include <string.h>
41 #include <time.h>
42 # ifdef EX_OK
43 #  undef EX_OK			/* for SVr4.2 SMP */
44 # endif /* EX_OK */
45 
46 #include "sendmail/sendmail.h"
47 
48 /* profiling? */
49 #if MONCONTROL
50 # define SM_PROF(x)	moncontrol(x)
51 #else /* MONCONTROL */
52 # define SM_PROF(x)
53 #endif /* MONCONTROL */
54 
55 #ifdef _DEFINE
56 # ifndef lint
57 SM_UNUSED(static char SmailId[]) = "@(#)$Id: sendmail.h,v 8.1040 2006/12/19 19:47:38 ca Exp $";
58 # endif /* ! lint */
59 #endif /* _DEFINE */
60 
61 #include "bf.h"
62 #include "timers.h"
63 #include <sm/exc.h>
64 #include <sm/heap.h>
65 #include <sm/debug.h>
66 #include <sm/rpool.h>
67 #include <sm/io.h>
68 #include <sm/path.h>
69 #include <sm/signal.h>
70 #include <sm/clock.h>
71 #include <sm/mbdb.h>
72 #include <sm/errstring.h>
73 #include <sm/sysexits.h>
74 #include <sm/shm.h>
75 #include <sm/misc.h>
76 
77 #ifdef LOG
78 # include <syslog.h>
79 #endif /* LOG */
80 
81 
82 
83 # if NETINET || NETINET6 || NETUNIX || NETISO || NETNS || NETX25
84 #  include <sys/socket.h>
85 # endif /* NETINET || NETINET6 || NETUNIX || NETISO || NETNS || NETX25 */
86 # if NETUNIX
87 #  include <sys/un.h>
88 # endif /* NETUNIX */
89 # if NETINET || NETINET6
90 #  include <netinet/in.h>
91 # endif /* NETINET || NETINET6 */
92 # if NETINET6
93 /*
94 **  There is no standard yet for IPv6 includes.
95 **  Specify OS specific implementation in conf.h
96 */
97 # endif /* NETINET6 */
98 # if NETISO
99 #  include <netiso/iso.h>
100 # endif /* NETISO */
101 # if NETNS
102 #  include <netns/ns.h>
103 # endif /* NETNS */
104 # if NETX25
105 #  include <netccitt/x25.h>
106 # endif /* NETX25 */
107 
108 # if NAMED_BIND
109 #  include <arpa/nameser.h>
110 #  ifdef NOERROR
111 #   undef NOERROR		/* avoid <sys/streams.h> conflict */
112 #  endif /* NOERROR */
113 #  include <resolv.h>
114 # else /* NAMED_BIND */
115 #   undef SM_SET_H_ERRNO
116 #   define SM_SET_H_ERRNO(err)
117 # endif /* NAMED_BIND */
118 
119 # if HESIOD
120 #  include <hesiod.h>
121 #  if !defined(HES_ER_OK) || defined(HESIOD_INTERFACES)
122 #   define HESIOD_INIT		/* support for the new interface */
123 #  endif /* !defined(HES_ER_OK) || defined(HESIOD_INTERFACES) */
124 # endif /* HESIOD */
125 
126 #if STARTTLS
127 #  include <openssl/ssl.h>
128 # if !TLS_NO_RSA
129 #  define RSA_KEYLENGTH	512
130 # endif /* !TLS_NO_RSA */
131 #endif /* STARTTLS */
132 
133 #if SASL  /* include the sasl include files if we have them */
134 
135 
136 # if SASL == 2 || SASL >= 20000
137 #  include <sasl/sasl.h>
138 #  include <sasl/saslutil.h>
139 # else /* SASL == 2 || SASL >= 20000 */
140 #  include <sasl.h>
141 #  include <saslutil.h>
142 # endif /* SASL == 2 || SASL >= 20000 */
143 # if defined(SASL_VERSION_MAJOR) && defined(SASL_VERSION_MINOR) && defined(SASL_VERSION_STEP)
144 #  define SASL_VERSION (SASL_VERSION_MAJOR * 10000)  + (SASL_VERSION_MINOR * 100) + SASL_VERSION_STEP
145 #  if SASL == 1 || SASL == 2
146 #   undef SASL
147 #   define SASL SASL_VERSION
148 #  else /* SASL == 1 || SASL == 2 */
149 #   if SASL != SASL_VERSION
150   ERROR README: -DSASL (SASL) does not agree with the version of the CYRUS_SASL library (SASL_VERSION)
151   ERROR README: see README!
152 #   endif /* SASL != SASL_VERSION */
153 #  endif /* SASL == 1 || SASL == 2 */
154 # else /* defined(SASL_VERSION_MAJOR) && defined(SASL_VERSION_MINOR) && defined(SASL_VERSION_STEP) */
155 #  if SASL == 1
156   ERROR README: please set -DSASL to the version of the CYRUS_SASL library
157   ERROR README: see README!
158 #  endif /* SASL == 1 */
159 # endif /* defined(SASL_VERSION_MAJOR) && defined(SASL_VERSION_MINOR) && defined(SASL_VERSION_STEP) */
160 #endif /* SASL */
161 
162 /*
163 **  Following are "sort of" configuration constants, but they should
164 **  be pretty solid on most architectures today.  They have to be
165 **  defined after <arpa/nameser.h> because some versions of that
166 **  file also define them.  In all cases, we can't use sizeof because
167 **  some systems (e.g., Crays) always treat everything as being at
168 **  least 64 bits.
169 */
170 
171 #ifndef INADDRSZ
172 # define INADDRSZ	4		/* size of an IPv4 address in bytes */
173 #endif /* ! INADDRSZ */
174 #ifndef IN6ADDRSZ
175 # define IN6ADDRSZ	16		/* size of an IPv6 address in bytes */
176 #endif /* ! IN6ADDRSZ */
177 #ifndef INT16SZ
178 # define INT16SZ	2		/* size of a 16 bit integer in bytes */
179 #endif /* ! INT16SZ */
180 #ifndef INT32SZ
181 # define INT32SZ	4		/* size of a 32 bit integer in bytes */
182 #endif /* ! INT32SZ */
183 #ifndef INADDR_LOOPBACK
184 # define INADDR_LOOPBACK	0x7f000001	/* loopback address */
185 #endif /* ! INADDR_LOOPBACK */
186 
187 /*
188 **  Error return from inet_addr(3), in case not defined in /usr/include.
189 */
190 
191 #ifndef INADDR_NONE
192 # define INADDR_NONE	0xffffffff
193 #endif /* ! INADDR_NONE */
194 
195 
196 /* (f)open() modes for queue files */
197 # define QF_O_EXTRA	0
198 
199 
200 /*
201 **  An 'argument class' describes the storage allocation status
202 **  of an object pointed to by an argument to a function.
203 */
204 
205 typedef enum
206 {
207 	A_HEAP,	/* the storage was allocated by malloc, and the
208 		 * ownership of the storage is ceded by the caller
209 		 * to the called function. */
210 	A_TEMP, /* The storage is temporary, and is only guaranteed
211 		 * to be valid for the duration of the function call. */
212 	A_PERM	/* The storage is 'permanent': this might mean static
213 		 * storage, or rpool storage. */
214 } ARGCLASS_T;
215 
216 /* forward references for prototypes */
217 typedef struct envelope	ENVELOPE;
218 typedef struct mailer	MAILER;
219 typedef struct queuegrp	QUEUEGRP;
220 
221 /*
222 **  Address structure.
223 **	Addresses are stored internally in this structure.
224 */
225 
226 struct address
227 {
228 	char		*q_paddr;	/* the printname for the address */
229 	char		*q_user;	/* user name */
230 	char		*q_ruser;	/* real user name, or NULL if q_user */
231 	char		*q_host;	/* host name */
232 	struct mailer	*q_mailer;	/* mailer to use */
233 	unsigned long	q_flags;	/* status flags, see below */
234 	uid_t		q_uid;		/* user-id of receiver (if known) */
235 	gid_t		q_gid;		/* group-id of receiver (if known) */
236 	char		*q_home;	/* home dir (local mailer only) */
237 	char		*q_fullname;	/* full name if known */
238 	struct address	*q_next;	/* chain */
239 	struct address	*q_alias;	/* address this results from */
240 	char		*q_owner;	/* owner of q_alias */
241 	struct address	*q_tchain;	/* temporary use chain */
242 #if PIPELINING
243 	struct address	*q_pchain;	/* chain for pipelining */
244 #endif /* PIPELINING */
245 	char		*q_finalrcpt;	/* Final-Recipient: DSN header */
246 	char		*q_orcpt;	/* ORCPT parameter from RCPT TO: line */
247 	char		*q_status;	/* status code for DSNs */
248 	char		*q_rstatus;	/* remote status message for DSNs */
249 	time_t		q_statdate;	/* date of status messages */
250 	char		*q_statmta;	/* MTA generating q_rstatus */
251 	short		q_state;	/* address state, see below */
252 	char		*q_signature;	/* MX-based sorting value */
253 	int		q_qgrp;		/* index into queue groups */
254 	int		q_qdir;		/* queue directory inside group */
255 	char		*q_message;	/* error message */
256 };
257 
258 typedef struct address ADDRESS;
259 
260 /* bit values for q_flags */
261 #define QGOODUID	0x00000001	/* the q_uid q_gid fields are good */
262 #define QPRIMARY	0x00000002	/* set from RCPT or argv */
263 #define QNOTREMOTE	0x00000004	/* address not for remote forwarding */
264 #define QSELFREF	0x00000008	/* this address references itself */
265 #define QBOGUSSHELL	0x00000010	/* user has no valid shell listed */
266 #define QUNSAFEADDR	0x00000020	/* address acquired via unsafe path */
267 #define QPINGONSUCCESS	0x00000040	/* give return on successful delivery */
268 #define QPINGONFAILURE	0x00000080	/* give return on failure */
269 #define QPINGONDELAY	0x00000100	/* give return on message delay */
270 #define QHASNOTIFY	0x00000200	/* propagate notify parameter */
271 #define QRELAYED	0x00000400	/* DSN: relayed to non-DSN aware sys */
272 #define QEXPANDED	0x00000800	/* DSN: undergone list expansion */
273 #define QDELIVERED	0x00001000	/* DSN: successful final delivery */
274 #define QDELAYED	0x00002000	/* DSN: message delayed */
275 #define QALIAS		0x00004000	/* expanded alias */
276 #define QBYTRACE	0x00008000	/* DeliverBy: trace */
277 #define QBYNDELAY	0x00010000	/* DeliverBy: notify, delay */
278 #define QBYNRELAY	0x00020000	/* DeliverBy: notify, relayed */
279 #define QTHISPASS	0x40000000	/* temp: address set this pass */
280 #define QRCPTOK		0x80000000	/* recipient() processed address */
281 
282 #define Q_PINGFLAGS	(QPINGONSUCCESS|QPINGONFAILURE|QPINGONDELAY)
283 
284 /* values for q_state */
285 #define QS_OK		0		/* address ok (for now)/not yet tried */
286 #define QS_SENT		1		/* good address, delivery complete */
287 #define QS_BADADDR	2		/* illegal address */
288 #define QS_QUEUEUP	3		/* save address in queue */
289 #define QS_RETRY	4		/* retry delivery for next MX */
290 #define QS_VERIFIED	5		/* verified, but not expanded */
291 
292 /*
293 **  Notice: all of the following values are variations of QS_DONTSEND.
294 **	If new states are added, they must be inserted in the proper place!
295 **	See the macro definition of QS_IS_DEAD() down below.
296 */
297 
298 #define QS_DONTSEND	6		/* don't send to this address */
299 #define QS_EXPANDED	7		/* expanded */
300 #define QS_SENDER	8		/* message sender (MeToo) */
301 #define QS_CLONED	9		/* addr cloned to split envelope */
302 #define QS_DISCARDED	10		/* rcpt discarded (EF_DISCARD) */
303 #define QS_REPLACED	11		/* maplocaluser()/UserDB replaced */
304 #define QS_REMOVED	12		/* removed (removefromlist()) */
305 #define QS_DUPLICATE	13		/* duplicate suppressed */
306 #define QS_INCLUDED	14		/* :include: delivery */
307 #define QS_FATALERR	15		/* fatal error, don't deliver */
308 
309 /* address state testing primitives */
310 #define QS_IS_OK(s)		((s) == QS_OK)
311 #define QS_IS_SENT(s)		((s) == QS_SENT)
312 #define QS_IS_BADADDR(s)	((s) == QS_BADADDR)
313 #define QS_IS_QUEUEUP(s)	((s) == QS_QUEUEUP)
314 #define QS_IS_RETRY(s)		((s) == QS_RETRY)
315 #define QS_IS_VERIFIED(s)	((s) == QS_VERIFIED)
316 #define QS_IS_EXPANDED(s)	((s) == QS_EXPANDED)
317 #define QS_IS_REMOVED(s)	((s) == QS_REMOVED)
318 #define QS_IS_UNDELIVERED(s)	((s) == QS_OK || \
319 				 (s) == QS_QUEUEUP || \
320 				 (s) == QS_RETRY || \
321 				 (s) == QS_VERIFIED)
322 #define QS_IS_UNMARKED(s)	((s) == QS_OK || \
323 				 (s) == QS_RETRY)
324 #define QS_IS_SENDABLE(s)	((s) == QS_OK || \
325 				 (s) == QS_QUEUEUP || \
326 				 (s) == QS_RETRY)
327 #define QS_IS_ATTEMPTED(s)	((s) == QS_QUEUEUP || \
328 				 (s) == QS_RETRY || \
329 				 (s) == QS_SENT)
330 #define QS_IS_DEAD(s)		((s) >= QS_DONTSEND)
331 
332 
333 #define NULLADDR	((ADDRESS *) NULL)
334 
335 extern ADDRESS	NullAddress;	/* a null (template) address [main.c] */
336 
337 /* functions */
338 extern void	cataddr __P((char **, char **, char *, int, int, bool));
339 extern char	*crackaddr __P((char *, ENVELOPE *));
340 extern bool	emptyaddr __P((ADDRESS *));
341 extern ADDRESS	*getctladdr __P((ADDRESS *));
342 extern int	include __P((char *, bool, ADDRESS *, ADDRESS **, int, ENVELOPE *));
343 extern bool	invalidaddr __P((char *, char *, bool));
344 extern ADDRESS	*parseaddr __P((char *, ADDRESS *, int, int, char **,
345 				ENVELOPE *, bool));
346 extern char	**prescan __P((char *, int, char[], int, char **, unsigned char *, bool));
347 extern void	printaddr __P((SM_FILE_T *, ADDRESS *, bool));
348 extern ADDRESS	*recipient __P((ADDRESS *, ADDRESS **, int, ENVELOPE *));
349 extern char	*remotename __P((char *, MAILER *, int, int *, ENVELOPE *));
350 extern int	rewrite __P((char **, int, int, ENVELOPE *, int));
351 extern bool	sameaddr __P((ADDRESS *, ADDRESS *));
352 extern int	sendtolist __P((char *, ADDRESS *, ADDRESS **, int, ENVELOPE *));
353 #if MILTER
354 extern int	removefromlist __P((char *, ADDRESS **, ENVELOPE *));
355 #endif /* MILTER */
356 extern void	setsender __P((char *, ENVELOPE *, char **, int, bool));
357 typedef void esmtp_args_F __P((ADDRESS *, char *, char *, ENVELOPE *));
358 extern void	parse_esmtp_args __P((ENVELOPE *, ADDRESS *, char *, char *,
359 			char *, char *args[], esmtp_args_F));
360 extern esmtp_args_F mail_esmtp_args;
361 extern esmtp_args_F rcpt_esmtp_args;
362 extern void	reset_mail_esmtp_args __P((ENVELOPE *));
363 
364 /* macro to simplify the common call to rewrite() */
365 #define REWRITE(pvp, rs, env)	rewrite(pvp, rs, 0, env, MAXATOM)
366 
367 /*
368 **  Token Tables for prescan
369 */
370 
371 extern unsigned char	ExtTokenTab[256];	/* external strings */
372 extern unsigned char	IntTokenTab[256];	/* internal strings */
373 
374 
375 /*
376 **  Mailer definition structure.
377 **	Every mailer known to the system is declared in this
378 **	structure.  It defines the pathname of the mailer, some
379 **	flags associated with it, and the argument vector to
380 **	pass to it.  The flags are defined in conf.c
381 **
382 **	The argument vector is expanded before actual use.  All
383 **	words except the first are passed through the macro
384 **	processor.
385 */
386 
387 struct mailer
388 {
389 	char	*m_name;	/* symbolic name of this mailer */
390 	char	*m_mailer;	/* pathname of the mailer to use */
391 	char	*m_mtatype;	/* type of this MTA */
392 	char	*m_addrtype;	/* type for addresses */
393 	char	*m_diagtype;	/* type for diagnostics */
394 	BITMAP256 m_flags;	/* status flags, see below */
395 	short	m_mno;		/* mailer number internally */
396 	short	m_nice;		/* niceness to run at (mostly for prog) */
397 	char	**m_argv;	/* template argument vector */
398 	short	m_sh_rwset;	/* rewrite set: sender header addresses */
399 	short	m_se_rwset;	/* rewrite set: sender envelope addresses */
400 	short	m_rh_rwset;	/* rewrite set: recipient header addresses */
401 	short	m_re_rwset;	/* rewrite set: recipient envelope addresses */
402 	char	*m_eol;		/* end of line string */
403 	long	m_maxsize;	/* size limit on message to this mailer */
404 	int	m_linelimit;	/* max # characters per line */
405 	int	m_maxdeliveries; /* max deliveries per mailer connection */
406 	char	*m_execdir;	/* directory to chdir to before execv */
407 	char	*m_rootdir;	/* directory to chroot to before execv */
408 	uid_t	m_uid;		/* UID to run as */
409 	gid_t	m_gid;		/* GID to run as */
410 	char	*m_defcharset;	/* default character set */
411 	time_t	m_wait;		/* timeout to wait for end */
412 	int	m_maxrcpt;	/* max recipients per envelope client-side */
413 	short	m_qgrp;		/* queue group for this mailer */
414 };
415 
416 /* bits for m_flags */
417 #define M_ESMTP		'a'	/* run Extended SMTP */
418 #define M_ALIASABLE	'A'	/* user can be LHS of an alias */
419 #define M_BLANKEND	'b'	/* ensure blank line at end of message */
420 #define M_STRIPBACKSL	'B'	/* strip all leading backslashes from user */
421 #define M_NOCOMMENT	'c'	/* don't include comment part of address */
422 #define M_CANONICAL	'C'	/* make addresses canonical "u@dom" */
423 #define M_NOBRACKET	'd'	/* never angle bracket envelope route-addrs */
424 		/*	'D'	   CF: include Date: */
425 #define M_EXPENSIVE	'e'	/* it costs to use this mailer.... */
426 #define M_ESCFROM	'E'	/* escape From lines to >From */
427 #define M_FOPT		'f'	/* mailer takes picky -f flag */
428 		/*	'F'	   CF: include From: or Resent-From: */
429 #define M_NO_NULL_FROM	'g'	/* sender of errors should be $g */
430 #define M_HST_UPPER	'h'	/* preserve host case distinction */
431 #define M_PREHEAD	'H'	/* MAIL11V3: preview headers */
432 #define M_UDBENVELOPE	'i'	/* do udbsender rewriting on envelope */
433 #define M_INTERNAL	'I'	/* SMTP to another sendmail site */
434 #define M_UDBRECIPIENT	'j'	/* do udbsender rewriting on recipient lines */
435 #define M_NOLOOPCHECK	'k'	/* don't check for loops in HELO command */
436 #define M_CHUNKING	'K'	/* CHUNKING: reserved for future use */
437 #define M_LOCALMAILER	'l'	/* delivery is to this host */
438 #define M_LIMITS	'L'	/* must enforce SMTP line limits */
439 #define M_MUSER		'm'	/* can handle multiple users at once */
440 		/*	'M'	   CF: include Message-Id: */
441 #define M_NHDR		'n'	/* don't insert From line */
442 #define M_MANYSTATUS	'N'	/* MAIL11V3: DATA returns multi-status */
443 #define M_RUNASRCPT	'o'	/* always run mailer as recipient */
444 #define M_FROMPATH	'p'	/* use reverse-path in MAIL FROM: */
445 		/*	'P'	   CF: include Return-Path: */
446 #define M_VRFY250	'q'	/* VRFY command returns 250 instead of 252 */
447 #define M_ROPT		'r'	/* mailer takes picky -r flag */
448 #define M_SECURE_PORT	'R'	/* try to send on a reserved TCP port */
449 #define M_STRIPQ	's'	/* strip quote chars from user/host */
450 #define M_SPECIFIC_UID	'S'	/* run as specific uid/gid */
451 #define M_USR_UPPER	'u'	/* preserve user case distinction */
452 #define M_UGLYUUCP	'U'	/* this wants an ugly UUCP from line */
453 #define M_CONTENT_LEN	'v'	/* add Content-Length: header (SVr4) */
454 		/*	'V'	   UIUC: !-relativize all addresses */
455 #define M_HASPWENT	'w'	/* check for /etc/passwd entry */
456 #define M_NOHOSTSTAT	'W'	/* ignore long term host status information */
457 		/*	'x'	   CF: include Full-Name: */
458 #define M_XDOT		'X'	/* use hidden-dot algorithm */
459 #define M_LMTP		'z'	/* run Local Mail Transport Protocol */
460 #define M_DIALDELAY	'Z'	/* apply dial delay sleeptime */
461 #define M_NOMX		'0'	/* turn off MX lookups */
462 #define M_NONULLS	'1'	/* don't send null bytes */
463 #define M_FSMTP		'2'	/* force SMTP (no ESMTP even if offered) */
464 #define M_EBCDIC	'3'	/* extend Q-P encoding for EBCDIC */
465 #define M_TRYRULESET5	'5'	/* use ruleset 5 after local aliasing */
466 #define M_7BITHDRS	'6'	/* strip headers to 7 bits even in 8 bit path */
467 #define M_7BITS		'7'	/* use 7-bit path */
468 #define M_8BITS		'8'	/* force "just send 8" behaviour */
469 #define M_MAKE8BIT	'9'	/* convert 7 -> 8 bit if appropriate */
470 #define M_CHECKINCLUDE	':'	/* check for :include: files */
471 #define M_CHECKPROG	'|'	/* check for |program addresses */
472 #define M_CHECKFILE	'/'	/* check for /file addresses */
473 #define M_CHECKUDB	'@'	/* user can be user database key */
474 #define M_CHECKHDIR	'~'	/* SGI: check for valid home directory */
475 #define M_HOLD		'%'	/* Hold delivery until ETRN/-qI/-qR/-qS */
476 #define M_PLUS		'+'	/* Reserved: Used in mc for adding new flags */
477 #define M_MINUS		'-'	/* Reserved: Used in mc for removing flags */
478 
479 /* functions */
480 extern void	initerrmailers __P((void));
481 extern void	makemailer __P((char *));
482 extern void	makequeue __P((char *, bool));
483 extern void	runqueueevent __P((int));
484 #if _FFR_QUEUE_RUN_PARANOIA
485 extern bool	checkqueuerunner __P((void));
486 #endif /* _FFR_QUEUE_RUN_PARANOIA */
487 
488 EXTERN MAILER	*FileMailer;	/* ptr to *file* mailer */
489 EXTERN MAILER	*InclMailer;	/* ptr to *include* mailer */
490 EXTERN MAILER	*LocalMailer;	/* ptr to local mailer */
491 EXTERN MAILER	*ProgMailer;	/* ptr to program mailer */
492 EXTERN MAILER	*Mailer[MAXMAILERS + 1];
493 
494 /*
495 **  Queue group definition structure.
496 **	Every queue group known to the system is declared in this structure.
497 **	It defines the basic pathname of the queue group, some flags
498 **	associated with it, and the argument vector to pass to it.
499 */
500 
501 struct qpaths_s
502 {
503 	char	*qp_name;	/* name of queue dir, relative path */
504 	short	qp_subdirs;	/* use subdirs? */
505 	short	qp_fsysidx;	/* file system index of this directory */
506 # if SM_CONF_SHM
507 	int	qp_idx;		/* index into array for queue information */
508 # endif /* SM_CONF_SHM */
509 };
510 
511 typedef struct qpaths_s QPATHS;
512 
513 struct queuegrp
514 {
515 	char	*qg_name;	/* symbolic name of this queue group */
516 
517 	/*
518 	**  For now this is the same across all queue groups.
519 	**  Otherwise we have to play around with chdir().
520 	*/
521 
522 	char	*qg_qdir;	/* common component of queue directory */
523 	short	qg_index;	/* queue number internally, index in Queue[] */
524 	int	qg_maxqrun;	/* max # of jobs in 1 queuerun */
525 	int	qg_numqueues;	/* number of queues in this queue */
526 
527 	/*
528 	**  qg_queueintvl == 0 denotes that no individual value is used.
529 	**  Whatever accesses this must deal with "<= 0" as
530 	**  "not set, use appropriate default".
531 	*/
532 
533 	time_t	qg_queueintvl;	/* interval for queue runs */
534 	QPATHS	*qg_qpaths;	/* list of queue directories */
535 	BITMAP256 qg_flags;	/* status flags, see below */
536 	short	qg_nice;	/* niceness for queue run */
537 	int	qg_wgrp;	/* Assigned to this work group */
538 	int     qg_maxlist;	/* max items in work queue for this group */
539 	int     qg_curnum;	/* current number of queue for queue runs */
540 	int	qg_maxrcpt;	/* max recipients per envelope, 0==no limit */
541 
542 	time_t	qg_nextrun;	/* time for next queue runs */
543 #if _FFR_QUEUE_GROUP_SORTORDER
544 	short	qg_sortorder;	/* how do we sort this queuerun */
545 #endif /* _FFR_QUEUE_GROUP_SORTORDER */
546 #if 0
547 	long	qg_wkrcptfact;	/* multiplier for # recipients -> priority */
548 	long	qg_qfactor;	/* slope of queue function */
549 	bool	qg_doqueuerun;	/* XXX flag is it time to do a queuerun */
550 #endif /* 0 */
551 };
552 
553 /* bits for qg_flags (XXX: unused as of now) */
554 #define QD_DEFINED	((char) 1)	/* queue group has been defined */
555 #define QD_FORK		'f'	/* fork queue runs */
556 
557 extern void	filesys_update __P((void));
558 #if _FFR_ANY_FREE_FS
559 extern bool	filesys_free __P((long));
560 #endif /* _FFR_ANY_FREE_FS */
561 
562 #if SASL
563 /*
564 **  SASL
565 */
566 
567 /* lines in authinfo file or index into SASL_AI_T */
568 # define SASL_WRONG	(-1)
569 # define SASL_USER	0	/* authorization id (user) */
570 # define SASL_AUTHID	1	/* authentication id */
571 # define SASL_PASSWORD	2	/* password fuer authid */
572 # define SASL_DEFREALM	3	/* realm to use */
573 # define SASL_MECHLIST	4	/* list of mechanisms to try */
574 # define SASL_ID_REALM	5	/* authid@defrealm */
575 
576 /*
577 **  Current mechanism; this is just used to convey information between
578 **  invocation of SASL callback functions.
579 **  It must be last in the list, because it's not allocated by us
580 **  and hence we don't free() it.
581 */
582 # define SASL_MECH	6
583 # define SASL_ENTRIES	7	/* number of entries in array */
584 
585 # define SASL_USER_BIT		(1 << SASL_USER)
586 # define SASL_AUTHID_BIT	(1 << SASL_AUTHID)
587 # define SASL_PASSWORD_BIT	(1 << SASL_PASSWORD)
588 # define SASL_DEFREALM_BIT	(1 << SASL_DEFREALM)
589 # define SASL_MECHLIST_BIT	(1 << SASL_MECHLIST)
590 
591 /* authenticated? */
592 # define SASL_NOT_AUTH	0		/* not authenticated */
593 # define SASL_PROC_AUTH	1		/* in process of authenticating */
594 # define SASL_IS_AUTH	2		/* authenticated */
595 
596 /* SASL options */
597 # define SASL_AUTH_AUTH	0x1000		/* use auth= only if authenticated */
598 # if SASL >= 20101
599 #  define SASL_SEC_MASK	SASL_SEC_MAXIMUM /* mask for SASL_SEC_* values: sasl.h */
600 # else /* SASL >= 20101 */
601 #  define SASL_SEC_MASK	0x0fff		/* mask for SASL_SEC_* values: sasl.h */
602 #  if (SASL_SEC_NOPLAINTEXT & SASL_SEC_MASK) == 0 || \
603 	(SASL_SEC_NOACTIVE & SASL_SEC_MASK) == 0 || \
604 	(SASL_SEC_NODICTIONARY & SASL_SEC_MASK) == 0 || \
605 	(SASL_SEC_FORWARD_SECRECY & SASL_SEC_MASK) == 0 || \
606 	(SASL_SEC_NOANONYMOUS & SASL_SEC_MASK) == 0 || \
607 	(SASL_SEC_PASS_CREDENTIALS & SASL_SEC_MASK) == 0
608 ERROR: change SASL_SEC_MASK_ notify sendmail.org!
609 #  endif /* SASL_SEC_NOPLAINTEXT & SASL_SEC_MASK) == 0 ... */
610 # endif /* SASL >= 20101 */
611 # define MAXOUTLEN 8192			/* length of output buffer */
612 
613 /* functions */
614 extern char	*intersect __P((char *, char *, SM_RPOOL_T *));
615 extern char	*iteminlist __P((char *, char *, char *));
616 # if SASL >= 20000
617 extern int	proxy_policy __P((sasl_conn_t *, void *, const char *, unsigned, const char *, unsigned, const char *, unsigned, struct propctx *));
618 extern int	safesaslfile __P((void *, const char *, sasl_verify_type_t));
619 # else /* SASL >= 20000 */
620 extern int	proxy_policy __P((void *, const char *, const char *, const char **, const char **));
621 #  if SASL > 10515
622 extern int	safesaslfile __P((void *, char *, int));
623 #  else /* SASL > 10515 */
624 extern int	safesaslfile __P((void *, char *));
625 #  endif /* SASL > 10515 */
626 # endif /* SASL >= 20000 */
627 extern void	stop_sasl_client __P((void));
628 
629 /* structure to store authinfo */
630 typedef char *SASL_AI_T[SASL_ENTRIES];
631 
632 EXTERN char	*AuthMechanisms;	/* AUTH mechanisms */
633 EXTERN char	*AuthRealm;	/* AUTH realm */
634 EXTERN char	*SASLInfo;	/* file with AUTH info */
635 EXTERN int	SASLOpts;	/* options for SASL */
636 EXTERN int	MaxSLBits;	/* max. encryption bits for SASL */
637 #endif /* SASL */
638 
639 /*
640 **  Structure to store macros.
641 */
642 typedef struct
643 {
644 	SM_RPOOL_T	*mac_rpool;		/* resource pool */
645 	BITMAP256	mac_allocated;		/* storage has been alloc()? */
646 	char		*mac_table[MAXMACROID + 1];	/* macros */
647 } MACROS_T;
648 
649 EXTERN MACROS_T		GlobalMacros;
650 
651 /*
652 **  Information about currently open connections to mailers, or to
653 **  hosts that we have looked up recently.
654 */
655 
656 #define MCI		struct mailer_con_info
657 
658 MCI
659 {
660 	unsigned long	mci_flags;	/* flag bits, see below */
661 	short		mci_errno;	/* error number on last connection */
662 	short		mci_herrno;	/* h_errno from last DNS lookup */
663 	short		mci_exitstat;	/* exit status from last connection */
664 	short		mci_state;	/* SMTP state */
665 	int		mci_deliveries;	/* delivery attempts for connection */
666 	long		mci_maxsize;	/* max size this server will accept */
667 	SM_FILE_T	*mci_in;	/* input side of connection */
668 	SM_FILE_T	*mci_out;	/* output side of connection */
669 	pid_t		mci_pid;	/* process id of subordinate proc */
670 	char		*mci_phase;	/* SMTP phase string */
671 	struct mailer	*mci_mailer;	/* ptr to the mailer for this conn */
672 	char		*mci_host;	/* host name */
673 	char		*mci_status;	/* DSN status to be copied to addrs */
674 	char		*mci_rstatus;	/* SMTP status to be copied to addrs */
675 	time_t		mci_lastuse;	/* last usage time */
676 	SM_FILE_T	*mci_statfile;	/* long term status file */
677 	char		*mci_heloname;	/* name to use as HELO arg */
678 	long		mci_min_by;	/* minimum DELIVERBY */
679 	bool		mci_retryrcpt;	/* tempfail for at least one rcpt */
680 	char		*mci_tolist;	/* list of valid recipients */
681 	SM_RPOOL_T	*mci_rpool;	/* resource pool */
682 #if PIPELINING
683 	int		mci_okrcpts;	/* number of valid recipients */
684 	ADDRESS		*mci_nextaddr;	/* next address for pipelined status */
685 #endif /* PIPELINING */
686 #if SASL
687 	SASL_AI_T	mci_sai;	/* authentication info */
688 	bool		mci_sasl_auth;	/* authenticated? */
689 	int		mci_sasl_string_len;
690 	char		*mci_sasl_string;	/* sasl reply string */
691 	char		*mci_saslcap;	/* SASL list of mechanisms */
692 	sasl_conn_t	*mci_conn;	/* SASL connection */
693 #endif /* SASL */
694 #if STARTTLS
695 	SSL		*mci_ssl;	/* SSL connection */
696 #endif /* STARTTLS */
697 	MACROS_T	mci_macro;	/* macro definitions */
698 };
699 
700 
701 /* flag bits */
702 #define MCIF_VALID	0x00000001	/* this entry is valid */
703 /* 0x00000002 unused, was MCIF_TEMP */
704 #define MCIF_CACHED	0x00000004	/* currently in open cache */
705 #define MCIF_ESMTP	0x00000008	/* this host speaks ESMTP */
706 #define MCIF_EXPN	0x00000010	/* EXPN command supported */
707 #define MCIF_SIZE	0x00000020	/* SIZE option supported */
708 #define MCIF_8BITMIME	0x00000040	/* BODY=8BITMIME supported */
709 #define MCIF_7BIT	0x00000080	/* strip this message to 7 bits */
710 /* 0x00000100 unused, was MCIF_MULTSTAT: MAIL11V3: handles MULT status */
711 #define MCIF_INHEADER	0x00000200	/* currently outputing header */
712 #define MCIF_CVT8TO7	0x00000400	/* convert from 8 to 7 bits */
713 #define MCIF_DSN	0x00000800	/* DSN extension supported */
714 #define MCIF_8BITOK	0x00001000	/* OK to send 8 bit characters */
715 #define MCIF_CVT7TO8	0x00002000	/* convert from 7 to 8 bits */
716 #define MCIF_INMIME	0x00004000	/* currently reading MIME header */
717 #define MCIF_AUTH	0x00008000	/* AUTH= supported */
718 #define MCIF_AUTHACT	0x00010000	/* SASL (AUTH) active */
719 #define MCIF_ENHSTAT	0x00020000	/* ENHANCEDSTATUSCODES supported */
720 #define MCIF_PIPELINED	0x00040000	/* PIPELINING supported */
721 #define MCIF_VERB	0x00080000	/* VERB supported */
722 #if STARTTLS
723 #define MCIF_TLS	0x00100000	/* STARTTLS supported */
724 #define MCIF_TLSACT	0x00200000	/* STARTTLS active */
725 #define MCIF_EXTENS	(MCIF_EXPN | MCIF_SIZE | MCIF_8BITMIME | MCIF_DSN | MCIF_8BITOK | MCIF_AUTH | MCIF_ENHSTAT | MCIF_TLS)
726 #else /* STARTTLS */
727 #define MCIF_EXTENS	(MCIF_EXPN | MCIF_SIZE | MCIF_8BITMIME | MCIF_DSN | MCIF_8BITOK | MCIF_AUTH | MCIF_ENHSTAT)
728 #endif /* STARTTLS */
729 #define MCIF_DLVR_BY	0x00400000	/* DELIVERBY */
730 #if _FFR_IGNORE_EXT_ON_HELO
731 # define MCIF_HELO	0x00800000	/* we used HELO: ignore extensions */
732 #endif /* _FFR_IGNORE_EXT_ON_HELO */
733 #define MCIF_ONLY_EHLO	0x10000000	/* use only EHLO in smtpinit */
734 
735 /* states */
736 #define MCIS_CLOSED	0		/* no traffic on this connection */
737 #define MCIS_OPENING	1		/* sending initial protocol */
738 #define MCIS_OPEN	2		/* open, initial protocol sent */
739 #define MCIS_MAIL	3		/* MAIL command sent */
740 #define MCIS_RCPT	4		/* RCPT commands being sent */
741 #define MCIS_DATA	5		/* DATA command sent */
742 #define MCIS_QUITING	6		/* running quit protocol */
743 #define MCIS_SSD	7		/* service shutting down */
744 #define MCIS_ERROR	8		/* I/O error on connection */
745 
746 /* functions */
747 extern void	mci_cache __P((MCI *));
748 extern void	mci_close __P((MCI *, char *where));
749 extern void	mci_dump __P((SM_FILE_T *, MCI *, bool));
750 extern void	mci_dump_all __P((SM_FILE_T *, bool));
751 extern void	mci_flush __P((bool, MCI *));
752 extern MCI	*mci_get __P((char *, MAILER *));
753 extern int	mci_lock_host __P((MCI *));
754 extern bool	mci_match __P((char *, MAILER *));
755 extern int	mci_print_persistent __P((char *, char *));
756 extern int	mci_purge_persistent __P((char *, char *));
757 extern MCI	**mci_scan __P((MCI *));
758 extern void	mci_setstat __P((MCI *, int, char *, char *));
759 extern void	mci_store_persistent __P((MCI *));
760 extern int	mci_traverse_persistent __P((int (*)(char *, char *), char *));
761 extern void	mci_unlock_host __P((MCI *));
762 
763 EXTERN int	MaxMciCache;		/* maximum entries in MCI cache */
764 EXTERN time_t	MciCacheTimeout;	/* maximum idle time on connections */
765 EXTERN time_t	MciInfoTimeout;		/* how long 'til we retry down hosts */
766 
767 /*
768 **  Header structure.
769 **	This structure is used internally to store header items.
770 */
771 
772 struct header
773 {
774 	char		*h_field;	/* the name of the field */
775 	char		*h_value;	/* the value of that field */
776 	struct header	*h_link;	/* the next header */
777 	unsigned char	h_macro;	/* include header if macro defined */
778 	unsigned long	h_flags;	/* status bits, see below */
779 	BITMAP256	h_mflags;	/* m_flags bits needed */
780 };
781 
782 typedef struct header	HDR;
783 
784 /*
785 **  Header information structure.
786 **	Defined in conf.c, this struct declares the header fields
787 **	that have some magic meaning.
788 */
789 
790 struct hdrinfo
791 {
792 	char		*hi_field;	/* the name of the field */
793 	unsigned long	hi_flags;	/* status bits, see below */
794 	char		*hi_ruleset;	/* validity check ruleset */
795 };
796 
797 extern struct hdrinfo	HdrInfo[];
798 
799 /* bits for h_flags and hi_flags */
800 #define H_EOH		0x00000001	/* field terminates header */
801 #define H_RCPT		0x00000002	/* contains recipient addresses */
802 #define H_DEFAULT	0x00000004	/* if another value is found, drop this */
803 #define H_RESENT	0x00000008	/* this address is a "Resent-..." address */
804 #define H_CHECK		0x00000010	/* check h_mflags against m_flags */
805 #define H_ACHECK	0x00000020	/* ditto, but always (not just default) */
806 #define H_FORCE		0x00000040	/* force this field, even if default */
807 #define H_TRACE		0x00000080	/* this field contains trace information */
808 #define H_FROM		0x00000100	/* this is a from-type field */
809 #define H_VALID		0x00000200	/* this field has a validated value */
810 #define H_RECEIPTTO	0x00000400	/* field has return receipt info */
811 #define H_ERRORSTO	0x00000800	/* field has error address info */
812 #define H_CTE		0x00001000	/* field is a content-transfer-encoding */
813 #define H_CTYPE		0x00002000	/* this is a content-type field */
814 #define H_BCC		0x00004000	/* Bcc: header: strip value or delete */
815 #define H_ENCODABLE	0x00008000	/* field can be RFC 1522 encoded */
816 #define H_STRIPCOMM	0x00010000	/* header check: strip comments */
817 #define H_BINDLATE	0x00020000	/* only expand macros at deliver */
818 #define H_USER		0x00040000	/* header came from the user/SMTP */
819 
820 /* bits for chompheader() */
821 #define CHHDR_DEF	0x0001	/* default header */
822 #define CHHDR_CHECK	0x0002	/* call ruleset for header */
823 #define CHHDR_USER	0x0004	/* header from user */
824 #define CHHDR_QUEUE	0x0008	/* header from queue file */
825 
826 /* functions */
827 extern void	addheader __P((char *, char *, int, ENVELOPE *, bool));
828 extern unsigned long	chompheader __P((char *, int, HDR **, ENVELOPE *));
829 extern bool	commaize __P((HDR *, char *, bool, MCI *, ENVELOPE *));
830 extern HDR	*copyheader __P((HDR *, SM_RPOOL_T *));
831 extern void	eatheader __P((ENVELOPE *, bool, bool));
832 extern char	*hvalue __P((char *, HDR *));
833 extern void	insheader __P((int, char *, char *, int, ENVELOPE *, bool));
834 extern bool	isheader __P((char *));
835 extern bool	putfromline __P((MCI *, ENVELOPE *));
836 extern void	setupheaders __P((void));
837 
838 /*
839 **  Performance monitoring
840 */
841 
842 #define TIMERS		struct sm_timers
843 
844 TIMERS
845 {
846 	TIMER	ti_overall;	/* the whole process */
847 };
848 
849 
850 #define PUSHTIMER(l, t)	{ if (tTd(98, l)) pushtimer(&t); }
851 #define POPTIMER(l, t)	{ if (tTd(98, l)) poptimer(&t); }
852 
853 /*
854 **  Envelope structure.
855 **	This structure defines the message itself.  There is usually
856 **	only one of these -- for the message that we originally read
857 **	and which is our primary interest -- but other envelopes can
858 **	be generated during processing.  For example, error messages
859 **	will have their own envelope.
860 */
861 
862 struct envelope
863 {
864 	HDR		*e_header;	/* head of header list */
865 	long		e_msgpriority;	/* adjusted priority of this message */
866 	time_t		e_ctime;	/* time message appeared in the queue */
867 	char		*e_to;		/* (list of) target person(s) */
868 	ADDRESS		e_from;		/* the person it is from */
869 	char		*e_sender;	/* e_from.q_paddr w comments stripped */
870 	char		**e_fromdomain;	/* the domain part of the sender */
871 	ADDRESS		*e_sendqueue;	/* list of message recipients */
872 	ADDRESS		*e_errorqueue;	/* the queue for error responses */
873 
874 	/*
875 	**  Overflow detection is based on < 0, so don't change this
876 	**  to unsigned.  We don't use unsigned and == ULONG_MAX because
877 	**  some libc's don't have strtoul(), see mail_esmtp_args().
878 	*/
879 
880 	long		e_msgsize;	/* size of the message in bytes */
881 	char		*e_msgid;	/* message id (for logging) */
882 	unsigned long	e_flags;	/* flags, see below */
883 	int		e_nrcpts;	/* number of recipients */
884 	short		e_class;	/* msg class (priority, junk, etc.) */
885 	short		e_hopcount;	/* number of times processed */
886 	short		e_nsent;	/* number of sends since checkpoint */
887 	short		e_sendmode;	/* message send mode */
888 	short		e_errormode;	/* error return mode */
889 	short		e_timeoutclass;	/* message timeout class */
890 	bool		(*e_puthdr)__P((MCI *, HDR *, ENVELOPE *, int));
891 					/* function to put header of message */
892 	bool		(*e_putbody)__P((MCI *, ENVELOPE *, char *));
893 					/* function to put body of message */
894 	ENVELOPE	*e_parent;	/* the message this one encloses */
895 	ENVELOPE	*e_sibling;	/* the next envelope of interest */
896 	char		*e_bodytype;	/* type of message body */
897 	SM_FILE_T	*e_dfp;		/* data file */
898 	char		*e_id;		/* code for this entry in queue */
899 	int		e_qgrp;		/* queue group (index into queues) */
900 	int		e_qdir;		/* index into queue directories */
901 	int		e_dfqgrp;	/* data file queue group index */
902 	int		e_dfqdir;	/* data file queue directory index */
903 	int		e_xfqgrp;	/* queue group (index into queues) */
904 	int		e_xfqdir;	/* index into queue directories (xf) */
905 	SM_FILE_T	*e_xfp;		/* transcript file */
906 	SM_FILE_T	*e_lockfp;	/* the lock file for this message */
907 	char		*e_message;	/* error message; readonly; NULL,
908 					 * or allocated from e_rpool */
909 	char		*e_statmsg;	/* stat msg (changes per delivery).
910 					 * readonly. NULL or allocated from
911 					 * e_rpool. */
912 	char		*e_quarmsg;	/* why envelope is quarantined */
913 	char		e_qfletter;	/* queue file letter on disk */
914 	char		*e_msgboundary;	/* MIME-style message part boundary */
915 	char		*e_origrcpt;	/* original recipient (one only) */
916 	char		*e_envid;	/* envelope id from MAIL FROM: line */
917 	char		*e_status;	/* DSN status for this message */
918 	time_t		e_dtime;	/* time of last delivery attempt */
919 	int		e_ntries;	/* number of delivery attempts */
920 	dev_t		e_dfdev;	/* data file device (crash recovery) */
921 	ino_t		e_dfino;	/* data file inode (crash recovery) */
922 	MACROS_T	e_macro;	/* macro definitions */
923 	MCI		*e_mci;		/* connection info */
924 	char		*e_auth_param;	/* readonly; NULL or static storage or
925 					 * allocated from e_rpool */
926 	TIMERS		e_timers;	/* per job timers */
927 	long		e_deliver_by;	/* deliver by */
928 	int		e_dlvr_flag;	/* deliver by flag */
929 	SM_RPOOL_T	*e_rpool;	/* resource pool for this envelope */
930 	unsigned int	e_features;	/* server features */
931 };
932 
933 /* values for e_flags */
934 #define EF_OLDSTYLE	0x00000001L	/* use spaces (not commas) in hdrs */
935 #define EF_INQUEUE	0x00000002L	/* this message is fully queued */
936 #define EF_NO_BODY_RETN	0x00000004L	/* omit message body on error */
937 #define EF_CLRQUEUE	0x00000008L	/* disk copy is no longer needed */
938 #define EF_SENDRECEIPT	0x00000010L	/* send a return receipt */
939 #define EF_FATALERRS	0x00000020L	/* fatal errors occurred */
940 #define EF_DELETE_BCC	0x00000040L	/* delete Bcc: headers entirely */
941 #define EF_RESPONSE	0x00000080L	/* this is an error or return receipt */
942 #define EF_RESENT	0x00000100L	/* this message is being forwarded */
943 #define EF_VRFYONLY	0x00000200L	/* verify only (don't expand aliases) */
944 #define EF_WARNING	0x00000400L	/* warning message has been sent */
945 #define EF_QUEUERUN	0x00000800L	/* this envelope is from queue */
946 #define EF_GLOBALERRS	0x00001000L	/* treat errors as global */
947 #define EF_PM_NOTIFY	0x00002000L	/* send return mail to postmaster */
948 #define EF_METOO	0x00004000L	/* send to me too */
949 #define EF_LOGSENDER	0x00008000L	/* need to log the sender */
950 #define EF_NORECEIPT	0x00010000L	/* suppress all return-receipts */
951 #define EF_HAS8BIT	0x00020000L	/* at least one 8-bit char in body */
952 #define EF_NL_NOT_EOL	0x00040000L	/* don't accept raw NL as EOLine */
953 #define EF_CRLF_NOT_EOL	0x00080000L	/* don't accept CR-LF as EOLine */
954 #define EF_RET_PARAM	0x00100000L	/* RCPT command had RET argument */
955 #define EF_HAS_DF	0x00200000L	/* set when data file is instantiated */
956 #define EF_IS_MIME	0x00400000L	/* really is a MIME message */
957 #define EF_DONT_MIME	0x00800000L	/* never MIME this message */
958 #define EF_DISCARD	0x01000000L	/* discard the message */
959 #define EF_TOOBIG	0x02000000L	/* message is too big */
960 #define EF_SPLIT	0x04000000L	/* envelope has been split */
961 #define EF_UNSAFE	0x08000000L	/* unsafe: read from untrusted source */
962 #define EF_TOODEEP	0x10000000L	/* message is nested too deep */
963 
964 #define DLVR_NOTIFY	0x01
965 #define DLVR_RETURN	0x02
966 #define DLVR_TRACE	0x10
967 #define IS_DLVR_NOTIFY(e)	(((e)->e_dlvr_flag & DLVR_NOTIFY) != 0)
968 #define IS_DLVR_RETURN(e)	(((e)->e_dlvr_flag & DLVR_RETURN) != 0)
969 #define IS_DLVR_TRACE(e)	(((e)->e_dlvr_flag & DLVR_TRACE) != 0)
970 #define IS_DLVR_BY(e)		((e)->e_dlvr_flag != 0)
971 
972 #define BODYTYPE_NONE	(0)
973 #define BODYTYPE_7BIT	(1)
974 #define BODYTYPE_8BITMIME	(2)
975 #define BODYTYPE_ILLEGAL	(-1)
976 #define BODYTYPE_VALID(b) ((b) == BODYTYPE_7BIT || (b) == BODYTYPE_8BITMIME)
977 
978 extern ENVELOPE	BlankEnvelope;
979 
980 /* functions */
981 extern void	clearenvelope __P((ENVELOPE *, bool, SM_RPOOL_T *));
982 extern void	dropenvelope __P((ENVELOPE *, bool, bool));
983 extern ENVELOPE	*newenvelope __P((ENVELOPE *, ENVELOPE *, SM_RPOOL_T *));
984 extern void	clrsessenvelope __P((ENVELOPE *));
985 extern void	printenvflags __P((ENVELOPE *));
986 extern bool	putbody __P((MCI *, ENVELOPE *, char *));
987 extern bool	putheader __P((MCI *, HDR *, ENVELOPE *, int));
988 
989 /*
990 **  Message priority classes.
991 **
992 **	The message class is read directly from the Priority: header
993 **	field in the message.
994 **
995 **	CurEnv->e_msgpriority is the number of bytes in the message plus
996 **	the creation time (so that jobs ``tend'' to be ordered correctly),
997 **	adjusted by the message class, the number of recipients, and the
998 **	amount of time the message has been sitting around.  This number
999 **	is used to order the queue.  Higher values mean LOWER priority.
1000 **
1001 **	Each priority class point is worth WkClassFact priority points;
1002 **	each recipient is worth WkRecipFact priority points.  Each time
1003 **	we reprocess a message the priority is adjusted by WkTimeFact.
1004 **	WkTimeFact should normally decrease the priority so that jobs
1005 **	that have historically failed will be run later; thanks go to
1006 **	Jay Lepreau at Utah for pointing out the error in my thinking.
1007 **
1008 **	The "class" is this number, unadjusted by the age or size of
1009 **	this message.  Classes with negative representations will have
1010 **	error messages thrown away if they are not local.
1011 */
1012 
1013 struct priority
1014 {
1015 	char	*pri_name;	/* external name of priority */
1016 	int	pri_val;	/* internal value for same */
1017 };
1018 
1019 EXTERN int	NumPriorities;	/* pointer into Priorities */
1020 EXTERN struct priority	Priorities[MAXPRIORITIES];
1021 
1022 /*
1023 **  Rewrite rules.
1024 */
1025 
1026 struct rewrite
1027 {
1028 	char	**r_lhs;	/* pattern match */
1029 	char	**r_rhs;	/* substitution value */
1030 	struct rewrite	*r_next;/* next in chain */
1031 	int	r_line;		/* rule line in sendmail.cf */
1032 };
1033 
1034 /*
1035 **  Special characters in rewriting rules.
1036 **	These are used internally only.
1037 **	The COND* rules are actually used in macros rather than in
1038 **		rewriting rules, but are given here because they
1039 **		cannot conflict.
1040 */
1041 
1042 /* "out of band" indicator */
1043 /* sm/sendmail.h #define METAQUOTE ((unsigned char)0377) quotes the next octet */
1044 
1045 /* left hand side items */
1046 #define MATCHZANY	((unsigned char)0220)	/* match zero or more tokens */
1047 #define MATCHANY	((unsigned char)0221)	/* match one or more tokens */
1048 #define MATCHONE	((unsigned char)0222)	/* match exactly one token */
1049 #define MATCHCLASS	((unsigned char)0223)	/* match one token in a class */
1050 #define MATCHNCLASS	((unsigned char)0224)	/* match tokens not in class */
1051 
1052 /* right hand side items */
1053 #define MATCHREPL	((unsigned char)0225)	/* RHS replacement for above */
1054 #define CANONNET	((unsigned char)0226)	/* canonical net, next token */
1055 #define CANONHOST	((unsigned char)0227)	/* canonical host, next token */
1056 #define CANONUSER	((unsigned char)0230)	/* canonical user, next N tokens */
1057 #define CALLSUBR	((unsigned char)0231)	/* call another rewriting set */
1058 
1059 /* conditionals in macros (anywhere) */
1060 #define CONDIF		((unsigned char)0232)	/* conditional if-then */
1061 #define CONDELSE	((unsigned char)0233)	/* conditional else */
1062 #define CONDFI		((unsigned char)0234)	/* conditional fi */
1063 
1064 /* bracket characters for RHS host name lookup */
1065 #define HOSTBEGIN	((unsigned char)0235)	/* hostname lookup begin */
1066 #define HOSTEND		((unsigned char)0236)	/* hostname lookup end */
1067 
1068 /* bracket characters for RHS generalized lookup */
1069 #define LOOKUPBEGIN	((unsigned char)0205)	/* generalized lookup begin */
1070 #define LOOKUPEND	((unsigned char)0206)	/* generalized lookup end */
1071 
1072 /* macro substitution characters (anywhere) */
1073 #define MACROEXPAND	((unsigned char)0201)	/* macro expansion */
1074 #define MACRODEXPAND	((unsigned char)0202)	/* deferred macro expansion */
1075 
1076 /* to make the code clearer */
1077 #define MATCHZERO	CANONHOST
1078 
1079 #define MAXMATCH	9	/* max params per rewrite */
1080 #define MAX_MAP_ARGS	10	/* max arguments for map */
1081 
1082 /* external <==> internal mapping table */
1083 struct metamac
1084 {
1085 	char		metaname;	/* external code (after $) */
1086 	unsigned char	metaval;	/* internal code (as above) */
1087 };
1088 
1089 /* values for macros with external names only */
1090 #define MID_OPMODE	0202	/* operation mode */
1091 
1092 /* functions */
1093 #if SM_HEAP_CHECK
1094 extern void
1095 macdefine_tagged __P((
1096 	MACROS_T *_mac,
1097 	ARGCLASS_T _vclass,
1098 	int _id,
1099 	char *_value,
1100 	char *_file,
1101 	int _line,
1102 	int _group));
1103 # define macdefine(mac,c,id,v) \
1104 	macdefine_tagged(mac,c,id,v,__FILE__,__LINE__,sm_heap_group())
1105 #else /* SM_HEAP_CHECK */
1106 extern void
1107 macdefine __P((
1108 	MACROS_T *_mac,
1109 	ARGCLASS_T _vclass,
1110 	int _id,
1111 	char *_value));
1112 # define macdefine_tagged(mac,c,id,v,file,line,grp) macdefine(mac,c,id,v)
1113 #endif /* SM_HEAP_CHECK */
1114 extern void	macset __P((MACROS_T *, int, char *));
1115 #define macget(mac, i) (mac)->mac_table[i]
1116 extern void	expand __P((char *, char *, size_t, ENVELOPE *));
1117 extern int	macid_parse __P((char *, char **));
1118 #define macid(name)  macid_parse(name, NULL)
1119 extern char	*macname __P((int));
1120 extern char	*macvalue __P((int, ENVELOPE *));
1121 extern int	rscheck __P((char *, char *, char *, ENVELOPE *, int, int, char *, char *, ADDRESS *));
1122 extern int	rscap __P((char *, char *, char *, ENVELOPE *, char ***, char *, int));
1123 extern void	setclass __P((int, char *));
1124 extern int	strtorwset __P((char *, char **, int));
1125 extern char	*translate_dollars __P((char *, char *, int *));
1126 extern bool	wordinclass __P((char *, int));
1127 
1128 /*
1129 **  Name canonification short circuit.
1130 **
1131 **	If the name server for a host is down, the process of trying to
1132 **	canonify the name can hang.  This is similar to (but alas, not
1133 **	identical to) looking up the name for delivery.  This stab type
1134 **	caches the result of the name server lookup so we don't hang
1135 **	multiple times.
1136 */
1137 
1138 #define NAMECANON	struct _namecanon
1139 
1140 NAMECANON
1141 {
1142 	short		nc_errno;	/* cached errno */
1143 	short		nc_herrno;	/* cached h_errno */
1144 	short		nc_stat;	/* cached exit status code */
1145 	short		nc_flags;	/* flag bits */
1146 	char		*nc_cname;	/* the canonical name */
1147 	time_t		nc_exp;		/* entry expires at */
1148 };
1149 
1150 /* values for nc_flags */
1151 #define NCF_VALID	0x0001	/* entry valid */
1152 
1153 /* hostsignature structure */
1154 
1155 struct hostsig_t
1156 {
1157 	char		*hs_sig;	/* hostsignature */
1158 	time_t		hs_exp;		/* entry expires at */
1159 };
1160 
1161 typedef struct hostsig_t HOSTSIG_T;
1162 
1163 /* functions */
1164 extern bool	getcanonname __P((char *, int, bool, int *));
1165 extern int	getmxrr __P((char *, char **, unsigned short *, bool, int *, bool, int *));
1166 extern char	*hostsignature __P((MAILER *, char *));
1167 extern int	getfallbackmxrr __P((char *));
1168 
1169 /*
1170 **  Mapping functions
1171 **
1172 **	These allow arbitrary mappings in the config file.  The idea
1173 **	(albeit not the implementation) comes from IDA sendmail.
1174 */
1175 
1176 #define MAPCLASS	struct _mapclass
1177 #define MAP		struct _map
1178 #define MAXMAPACTIONS	5		/* size of map_actions array */
1179 
1180 
1181 /*
1182 **  An actual map.
1183 */
1184 
1185 MAP
1186 {
1187 	MAPCLASS	*map_class;	/* the class of this map */
1188 	MAPCLASS	*map_orgclass;	/* the original class of this map */
1189 	char		*map_mname;	/* name of this map */
1190 	long		map_mflags;	/* flags, see below */
1191 	char		*map_file;	/* the (nominal) filename */
1192 	ARBPTR_T	map_db1;	/* the open database ptr */
1193 	ARBPTR_T	map_db2;	/* an "extra" database pointer */
1194 	char		*map_keycolnm;	/* key column name */
1195 	char		*map_valcolnm;	/* value column name */
1196 	unsigned char	map_keycolno;	/* key column number */
1197 	unsigned char	map_valcolno;	/* value column number */
1198 	char		map_coldelim;	/* column delimiter */
1199 	char		map_spacesub;	/* spacesub */
1200 	char		*map_app;	/* to append to successful matches */
1201 	char		*map_tapp;	/* to append to "tempfail" matches */
1202 	char		*map_domain;	/* the (nominal) NIS domain */
1203 	char		*map_rebuild;	/* program to run to do auto-rebuild */
1204 	time_t		map_mtime;	/* last database modification time */
1205 	time_t		map_timeout;	/* timeout for map accesses */
1206 	int		map_retry;	/* # of retries for map accesses */
1207 	pid_t		map_pid;	/* PID of process which opened map */
1208 	int		map_lockfd;	/* auxiliary lock file descriptor */
1209 	short		map_specificity;	/* specificity of aliases */
1210 	MAP		*map_stack[MAXMAPSTACK];   /* list for stacked maps */
1211 	short		map_return[MAXMAPACTIONS]; /* return bitmaps for stacked maps */
1212 };
1213 
1214 
1215 /* bit values for map_mflags */
1216 #define MF_VALID	0x00000001	/* this entry is valid */
1217 #define MF_INCLNULL	0x00000002	/* include null byte in key */
1218 #define MF_OPTIONAL	0x00000004	/* don't complain if map not found */
1219 #define MF_NOFOLDCASE	0x00000008	/* don't fold case in keys */
1220 #define MF_MATCHONLY	0x00000010	/* don't use the map value */
1221 #define MF_OPEN		0x00000020	/* this entry is open */
1222 #define MF_WRITABLE	0x00000040	/* open for writing */
1223 #define MF_ALIAS	0x00000080	/* this is an alias file */
1224 #define MF_TRY0NULL	0x00000100	/* try with no null byte */
1225 #define MF_TRY1NULL	0x00000200	/* try with the null byte */
1226 #define MF_LOCKED	0x00000400	/* this map is currently locked */
1227 #define MF_ALIASWAIT	0x00000800	/* alias map in aliaswait state */
1228 #define MF_IMPL_HASH	0x00001000	/* implicit: underlying hash database */
1229 #define MF_IMPL_NDBM	0x00002000	/* implicit: underlying NDBM database */
1230 /* 0x00004000	*/
1231 #define MF_APPEND	0x00008000	/* append new entry on rebuild */
1232 #define MF_KEEPQUOTES	0x00010000	/* don't dequote key before lookup */
1233 #define MF_NODEFER	0x00020000	/* don't defer if map lookup fails */
1234 #define MF_REGEX_NOT	0x00040000	/* regular expression negation */
1235 #define MF_DEFER	0x00080000	/* don't lookup map in defer mode */
1236 #define MF_SINGLEMATCH	0x00100000	/* successful only if match one key */
1237 #define MF_SINGLEDN	0x00200000	/* only one match, but multi values */
1238 #define MF_FILECLASS	0x00400000	/* this is a file class map */
1239 #define MF_OPENBOGUS	0x00800000	/* open failed, don't call map_close */
1240 #define MF_CLOSING	0x01000000	/* map is being closed */
1241 
1242 #define DYNOPENMAP(map) if (!bitset(MF_OPEN, (map)->map_mflags)) \
1243 	{	\
1244 		if (!openmap(map))	\
1245 			return NULL;	\
1246 	}
1247 
1248 
1249 /* indices for map_actions */
1250 #define MA_NOTFOUND	0		/* member map returned "not found" */
1251 #define MA_UNAVAIL	1		/* member map is not available */
1252 #define MA_TRYAGAIN	2		/* member map returns temp failure */
1253 
1254 /* macros to handle MapTempFail */
1255 #define BIT_IS_MTP	0x01	/* temp.failure occurred */
1256 #define BIT_ASK_MTP	0x02	/* do we care about MapTempFail? */
1257 #define RESET_MAPTEMPFAIL	MapTempFail = 0
1258 #define INIT_MAPTEMPFAIL	MapTempFail = BIT_ASK_MTP
1259 #define SET_MAPTEMPFAIL		MapTempFail |= BIT_IS_MTP
1260 #define IS_MAPTEMPFAIL		bitset(BIT_IS_MTP, MapTempFail)
1261 #define ASK_MAPTEMPFAIL		bitset(BIT_ASK_MTP, MapTempFail)
1262 
1263 /*
1264 **  The class of a map -- essentially the functions to call
1265 */
1266 
1267 MAPCLASS
1268 {
1269 	char	*map_cname;		/* name of this map class */
1270 	char	*map_ext;		/* extension for database file */
1271 	short	map_cflags;		/* flag bits, see below */
1272 	bool	(*map_parse)__P((MAP *, char *));
1273 					/* argument parsing function */
1274 	char	*(*map_lookup)__P((MAP *, char *, char **, int *));
1275 					/* lookup function */
1276 	void	(*map_store)__P((MAP *, char *, char *));
1277 					/* store function */
1278 	bool	(*map_open)__P((MAP *, int));
1279 					/* open function */
1280 	void	(*map_close)__P((MAP *));
1281 					/* close function */
1282 };
1283 
1284 /* bit values for map_cflags */
1285 #define MCF_ALIASOK	0x0001		/* can be used for aliases */
1286 #define MCF_ALIASONLY	0x0002		/* usable only for aliases */
1287 #define MCF_REBUILDABLE	0x0004		/* can rebuild alias files */
1288 #define MCF_OPTFILE	0x0008		/* file name is optional */
1289 #define MCF_NOTPERSIST	0x0010		/* don't keep map open all the time */
1290 
1291 /* functions */
1292 extern void	closemaps __P((bool));
1293 extern bool	impl_map_open __P((MAP *, int));
1294 extern void	initmaps __P((void));
1295 extern MAP	*makemapentry __P((char *));
1296 extern void	maplocaluser __P((ADDRESS *, ADDRESS **, int, ENVELOPE *));
1297 extern char	*map_rewrite __P((MAP *, const char *, size_t, char **));
1298 #if NETINFO
1299 extern char	*ni_propval __P((char *, char *, char *, char *, int));
1300 #endif /* NETINFO */
1301 extern bool	openmap __P((MAP *));
1302 extern int	udbexpand __P((ADDRESS *, ADDRESS **, int, ENVELOPE *));
1303 #if USERDB
1304 extern void	_udbx_close __P((void));
1305 extern char	*udbsender __P((char *, SM_RPOOL_T *));
1306 #endif /* USERDB */
1307 
1308 /*
1309 **  LDAP related items
1310 */
1311 #if LDAPMAP
1312 /* struct defining LDAP Auth Methods */
1313 struct lamvalues
1314 {
1315 	char	*lam_name;	/* name of LDAP auth method */
1316 	int	lam_code;	/* numeric code */
1317 };
1318 
1319 /* struct defining LDAP Alias Dereferencing */
1320 struct ladvalues
1321 {
1322 	char	*lad_name;	/* name of LDAP alias dereferencing method */
1323 	int	lad_code;	/* numeric code */
1324 };
1325 
1326 /* struct defining LDAP Search Scope */
1327 struct lssvalues
1328 {
1329 	char	*lss_name;	/* name of LDAP search scope */
1330 	int	lss_code;	/* numeric code */
1331 };
1332 
1333 /* functions */
1334 extern bool	ldapmap_parseargs __P((MAP *, char *));
1335 extern void	ldapmap_set_defaults __P((char *));
1336 #endif /* LDAPMAP */
1337 
1338 /*
1339 **  PH related items
1340 */
1341 
1342 #if PH_MAP
1343 
1344 # include <phclient.h>
1345 
1346 struct ph_map_struct
1347 {
1348 	char	*ph_servers;	 /* list of ph servers */
1349 	char	*ph_field_list;	 /* list of fields to search for match */
1350 	PH	*ph;		 /* PH server handle */
1351 	int	ph_fastclose;	 /* send "quit" command on close */
1352 	time_t	ph_timeout;	 /* timeout interval */
1353 };
1354 typedef struct ph_map_struct	PH_MAP_STRUCT;
1355 
1356 #endif /* PH_MAP */
1357 
1358 /*
1359 **  Regular UNIX sockaddrs are too small to handle ISO addresses, so
1360 **  we are forced to declare a supertype here.
1361 */
1362 
1363 #if NETINET || NETINET6 || NETUNIX || NETISO || NETNS || NETX25
1364 union bigsockaddr
1365 {
1366 	struct sockaddr		sa;	/* general version */
1367 # if NETUNIX
1368 	struct sockaddr_un	sunix;	/* UNIX family */
1369 # endif /* NETUNIX */
1370 # if NETINET
1371 	struct sockaddr_in	sin;	/* INET family */
1372 # endif /* NETINET */
1373 # if NETINET6
1374 	struct sockaddr_in6	sin6;	/* INET/IPv6 */
1375 # endif /* NETINET6 */
1376 # if NETISO
1377 	struct sockaddr_iso	siso;	/* ISO family */
1378 # endif /* NETISO */
1379 # if NETNS
1380 	struct sockaddr_ns	sns;	/* XNS family */
1381 # endif /* NETNS */
1382 # if NETX25
1383 	struct sockaddr_x25	sx25;	/* X.25 family */
1384 # endif /* NETX25 */
1385 };
1386 
1387 # define SOCKADDR	union bigsockaddr
1388 
1389 /* functions */
1390 extern char	*anynet_ntoa __P((SOCKADDR *));
1391 # if NETINET6
1392 extern char	*anynet_ntop __P((struct in6_addr *, char *, size_t));
1393 extern int	anynet_pton __P((int, const char *, void *));
1394 # endif /* NETINET6 */
1395 extern char	*hostnamebyanyaddr __P((SOCKADDR *));
1396 extern char	*validate_connection __P((SOCKADDR *, char *, ENVELOPE *));
1397 # if SASL >= 20000
1398 extern bool	iptostring __P((SOCKADDR *, SOCKADDR_LEN_T, char *, unsigned));
1399 # endif /* SASL >= 20000 */
1400 
1401 #endif /* NETINET || NETINET6 || NETUNIX || NETISO || NETNS || NETX25 */
1402 
1403 /*
1404 **  Process List (proclist)
1405 */
1406 
1407 #define NO_PID		((pid_t) 0)
1408 #ifndef PROC_LIST_SEG
1409 # define PROC_LIST_SEG	32		/* number of pids to alloc at a time */
1410 #endif /* ! PROC_LIST_SEG */
1411 
1412 /* process types */
1413 #define PROC_NONE		0
1414 #define PROC_DAEMON		1
1415 #define PROC_DAEMON_CHILD	2
1416 #define PROC_QUEUE		3
1417 #define PROC_QUEUE_CHILD	3
1418 #define PROC_CONTROL		4
1419 #define PROC_CONTROL_CHILD	5
1420 
1421 /* functions */
1422 extern void	proc_list_add __P((pid_t, char *, int, int, int, SOCKADDR *));
1423 extern void	proc_list_clear __P((void));
1424 extern void	proc_list_display __P((SM_FILE_T *, char *));
1425 extern void	proc_list_drop __P((pid_t, int, int *));
1426 extern void	proc_list_probe __P((void));
1427 extern void	proc_list_set __P((pid_t, char *));
1428 extern void	proc_list_signal __P((int, int));
1429 
1430 /*
1431 **  Symbol table definitions
1432 */
1433 
1434 struct symtab
1435 {
1436 	char		*s_name;	/* name to be entered */
1437 	short		s_symtype;	/* general type (see below) */
1438 	struct symtab	*s_next;	/* pointer to next in chain */
1439 	union
1440 	{
1441 		BITMAP256	sv_class;	/* bit-map of word classes */
1442 		ADDRESS		*sv_addr;	/* pointer to address header */
1443 		MAILER		*sv_mailer;	/* pointer to mailer */
1444 		char		*sv_alias;	/* alias */
1445 		MAPCLASS	sv_mapclass;	/* mapping function class */
1446 		MAP		sv_map;		/* mapping function */
1447 		HOSTSIG_T	sv_hostsig;	/* host signature */
1448 		MCI		sv_mci;		/* mailer connection info */
1449 		NAMECANON	sv_namecanon;	/* canonical name cache */
1450 		int		sv_macro;	/* macro name => id mapping */
1451 		int		sv_ruleset;	/* ruleset index */
1452 		struct hdrinfo	sv_header;	/* header metainfo */
1453 		char		*sv_service[MAXMAPSTACK]; /* service switch */
1454 #if LDAPMAP
1455 		MAP		*sv_lmap;	/* Maps for LDAP connection */
1456 #endif /* LDAPMAP */
1457 #if SOCKETMAP
1458 		MAP		*sv_socketmap;	/* Maps for SOCKET connection */
1459 #endif /* SOCKETMAP */
1460 #if MILTER
1461 		struct milter	*sv_milter;	/* milter filter name */
1462 #endif /* MILTER */
1463 		QUEUEGRP	*sv_queue;	/* pointer to queue */
1464 	}	s_value;
1465 };
1466 
1467 typedef struct symtab	STAB;
1468 
1469 /* symbol types */
1470 #define ST_UNDEF	0	/* undefined type */
1471 #define ST_CLASS	1	/* class map */
1472 #define ST_ADDRESS	2	/* an address in parsed format */
1473 #define ST_MAILER	3	/* a mailer header */
1474 #define ST_ALIAS	4	/* an alias */
1475 #define ST_MAPCLASS	5	/* mapping function class */
1476 #define ST_MAP		6	/* mapping function */
1477 #define ST_HOSTSIG	7	/* host signature */
1478 #define ST_NAMECANON	8	/* cached canonical name */
1479 #define ST_MACRO	9	/* macro name to id mapping */
1480 #define ST_RULESET	10	/* ruleset index */
1481 #define ST_SERVICE	11	/* service switch entry */
1482 #define ST_HEADER	12	/* special header flags */
1483 #if LDAPMAP
1484 # define ST_LMAP	13	/* List head of maps for LDAP connection */
1485 #endif /* LDAPMAP */
1486 #if MILTER
1487 # define ST_MILTER	14	/* milter filter */
1488 #endif /* MILTER */
1489 #define ST_QUEUE	15	/* a queue entry */
1490 
1491 #if SOCKETMAP
1492 # define ST_SOCKETMAP   16      /* List head of maps for SOCKET connection */
1493 #endif /* SOCKETMAP */
1494 
1495 /* This entry must be last */
1496 #define ST_MCI		17	/* mailer connection info (offset) */
1497 
1498 #define s_class		s_value.sv_class
1499 #define s_address	s_value.sv_addr
1500 #define s_mailer	s_value.sv_mailer
1501 #define s_alias		s_value.sv_alias
1502 #define s_mci		s_value.sv_mci
1503 #define s_mapclass	s_value.sv_mapclass
1504 #define s_hostsig	s_value.sv_hostsig
1505 #define s_map		s_value.sv_map
1506 #define s_namecanon	s_value.sv_namecanon
1507 #define s_macro		s_value.sv_macro
1508 #define s_ruleset	s_value.sv_ruleset
1509 #define s_service	s_value.sv_service
1510 #define s_header	s_value.sv_header
1511 #if LDAPMAP
1512 # define s_lmap		s_value.sv_lmap
1513 #endif /* LDAPMAP */
1514 #if SOCKETMAP
1515 # define s_socketmap    s_value.sv_socketmap
1516 #endif /* SOCKETMAP */
1517 #if MILTER
1518 # define s_milter	s_value.sv_milter
1519 #endif /* MILTER */
1520 #define s_quegrp	s_value.sv_queue
1521 
1522 /* opcodes to stab */
1523 #define ST_FIND		0	/* find entry */
1524 #define ST_ENTER	1	/* enter if not there */
1525 
1526 /* functions */
1527 extern STAB	*stab __P((char *, int, int));
1528 extern void	stabapply __P((void (*)(STAB *, int), int));
1529 
1530 /*
1531 **  Operation, send, error, and MIME modes
1532 **
1533 **	The operation mode describes the basic operation of sendmail.
1534 **	This can be set from the command line, and is "send mail" by
1535 **	default.
1536 **
1537 **	The send mode tells how to send mail.  It can be set in the
1538 **	configuration file.  Its setting determines how quickly the
1539 **	mail will be delivered versus the load on your system.  If the
1540 **	-v (verbose) flag is given, it will be forced to SM_DELIVER
1541 **	mode.
1542 **
1543 **	The error mode tells how to return errors.
1544 */
1545 
1546 #define MD_DELIVER	'm'		/* be a mail sender */
1547 #define MD_SMTP		's'		/* run SMTP on standard input */
1548 #define MD_ARPAFTP	'a'		/* obsolete ARPANET mode (Grey Book) */
1549 #define MD_DAEMON	'd'		/* run as a daemon */
1550 #define MD_FGDAEMON	'D'		/* run daemon in foreground */
1551 #define MD_VERIFY	'v'		/* verify: don't collect or deliver */
1552 #define MD_TEST		't'		/* test mode: resolve addrs only */
1553 #define MD_INITALIAS	'i'		/* initialize alias database */
1554 #define MD_PRINT	'p'		/* print the queue */
1555 #define MD_PRINTNQE	'P'		/* print number of entries in queue */
1556 #define MD_FREEZE	'z'		/* freeze the configuration file */
1557 #define MD_HOSTSTAT	'h'		/* print persistent host stat info */
1558 #define MD_PURGESTAT	'H'		/* purge persistent host stat info */
1559 #define MD_QUEUERUN	'q'		/* queue run */
1560 
1561 /* Note: see also include/sendmail/pathnames.h: GET_CLIENT_CF */
1562 
1563 /* values for e_sendmode -- send modes */
1564 #define SM_DELIVER	'i'		/* interactive delivery */
1565 #define SM_FORK		'b'		/* deliver in background */
1566 #if _FFR_DM_ONE
1567 #define SM_DM_ONE	'o' /* deliver first TA in background, then queue */
1568 #endif /* _FFR_DM_ONE */
1569 #define SM_QUEUE	'q'		/* queue, don't deliver */
1570 #define SM_DEFER	'd'		/* defer map lookups as well as queue */
1571 #define SM_VERIFY	'v'		/* verify only (used internally) */
1572 #define DM_NOTSET	(-1)	/* DeliveryMode (per daemon) option not set */
1573 
1574 #define WILL_BE_QUEUED(m)	((m) == SM_QUEUE || (m) == SM_DEFER)
1575 
1576 /* used only as a parameter to sendall */
1577 #define SM_DEFAULT	'\0'		/* unspecified, use SendMode */
1578 
1579 /* functions */
1580 extern void	set_delivery_mode __P((int, ENVELOPE *));
1581 
1582 /* values for e_errormode -- error handling modes */
1583 #define EM_PRINT	'p'		/* print errors */
1584 #define EM_MAIL		'm'		/* mail back errors */
1585 #define EM_WRITE	'w'		/* write back errors */
1586 #define EM_BERKNET	'e'		/* special berknet processing */
1587 #define EM_QUIET	'q'		/* don't print messages (stat only) */
1588 
1589 
1590 /* bit values for MimeMode */
1591 #define MM_CVTMIME	0x0001		/* convert 8 to 7 bit MIME */
1592 #define MM_PASS8BIT	0x0002		/* just send 8 bit data blind */
1593 #define MM_MIME8BIT	0x0004		/* convert 8-bit data to MIME */
1594 
1595 
1596 /* how to handle messages without any recipient addresses */
1597 #define NRA_NO_ACTION		0	/* just leave it as is */
1598 #define NRA_ADD_TO		1	/* add To: header */
1599 #define NRA_ADD_APPARENTLY_TO	2	/* add Apparently-To: header */
1600 #define NRA_ADD_BCC		3	/* add empty Bcc: header */
1601 #define NRA_ADD_TO_UNDISCLOSED	4	/* add To: undisclosed:; header */
1602 
1603 
1604 /* flags to putxline */
1605 #define PXLF_NOTHINGSPECIAL	0	/* no special mapping */
1606 #define PXLF_MAPFROM		0x0001	/* map From_ to >From_ */
1607 #define PXLF_STRIP8BIT		0x0002	/* strip 8th bit */
1608 #define PXLF_HEADER		0x0004	/* map newlines in headers */
1609 #define PXLF_NOADDEOL		0x0008	/* if EOL not present, don't add one */
1610 #define PXLF_STRIPMQUOTE	0x0010	/* strip METAQUOTEs */
1611 
1612 /*
1613 **  Privacy flags
1614 **	These are bit values for the PrivacyFlags word.
1615 */
1616 
1617 #define PRIV_PUBLIC		0		/* what have I got to hide? */
1618 #define PRIV_NEEDMAILHELO	0x00000001	/* insist on HELO for MAIL */
1619 #define PRIV_NEEDEXPNHELO	0x00000002	/* insist on HELO for EXPN */
1620 #define PRIV_NEEDVRFYHELO	0x00000004	/* insist on HELO for VRFY */
1621 #define PRIV_NOEXPN		0x00000008	/* disallow EXPN command */
1622 #define PRIV_NOVRFY		0x00000010	/* disallow VRFY command */
1623 #define PRIV_AUTHWARNINGS	0x00000020	/* flag possible auth probs */
1624 #define PRIV_NOVERB		0x00000040	/* disallow VERB command */
1625 #define PRIV_RESTRICTMAILQ	0x00010000	/* restrict mailq command */
1626 #define PRIV_RESTRICTQRUN	0x00020000	/* restrict queue run */
1627 #define PRIV_RESTRICTEXPAND	0x00040000	/* restrict alias/forward expansion */
1628 #define PRIV_NOETRN		0x00080000	/* disallow ETRN command */
1629 #define PRIV_NOBODYRETN		0x00100000	/* do not return bodies on bounces */
1630 #define PRIV_NORECEIPTS		0x00200000	/* disallow return receipts */
1631 #define PRIV_NOACTUALRECIPIENT	0x00400000 /* no X-Actual-Recipient in DSNs */
1632 
1633 /* don't give no info, anyway, anyhow */
1634 #define PRIV_GOAWAY		0x0000ffff
1635 
1636 /* struct defining such things */
1637 struct prival
1638 {
1639 	char		*pv_name;	/* name of privacy flag */
1640 	unsigned long	pv_flag;	/* numeric level */
1641 };
1642 
1643 EXTERN unsigned long	PrivacyFlags;	/* privacy flags */
1644 
1645 
1646 /*
1647 **  Flags passed to remotename, parseaddr, allocaddr, and buildaddr.
1648 */
1649 
1650 #define RF_SENDERADDR		0x001	/* this is a sender address */
1651 #define RF_HEADERADDR		0x002	/* this is a header address */
1652 #define RF_CANONICAL		0x004	/* strip comment information */
1653 #define RF_ADDDOMAIN		0x008	/* OK to do domain extension */
1654 #define RF_COPYPARSE		0x010	/* copy parsed user & host */
1655 #define RF_COPYPADDR		0x020	/* copy print address */
1656 #define RF_COPYALL		(RF_COPYPARSE|RF_COPYPADDR)
1657 #define RF_COPYNONE		0
1658 #define RF_RM_ADDR		0x040	/* address to be removed */
1659 
1660 /*
1661 **  Flags passed to rscheck
1662 */
1663 
1664 #define RSF_RMCOMM		0x0001	/* strip comments */
1665 #define RSF_UNSTRUCTURED	0x0002	/* unstructured, ignore syntax errors */
1666 #define RSF_COUNT		0x0004	/* count rejections (statistics)? */
1667 
1668 /*
1669 **  Flags passed to mime8to7 and putheader.
1670 */
1671 
1672 #define M87F_OUTER		0	/* outer context */
1673 #define M87F_NO8BIT		0x0001	/* can't have 8-bit in this section */
1674 #define M87F_DIGEST		0x0002	/* processing multipart/digest */
1675 #define M87F_NO8TO7		0x0004	/* don't do 8->7 bit conversions */
1676 
1677 /* functions */
1678 extern bool	mime7to8 __P((MCI *, HDR *, ENVELOPE *));
1679 extern int	mime8to7 __P((MCI *, HDR *, ENVELOPE *, char **, int, int));
1680 
1681 /*
1682 **  Flags passed to returntosender.
1683 */
1684 
1685 #define RTSF_NO_BODY		0	/* send headers only */
1686 #define RTSF_SEND_BODY		0x0001	/* include body of message in return */
1687 #define RTSF_PM_BOUNCE		0x0002	/* this is a postmaster bounce */
1688 
1689 /* functions */
1690 extern int	returntosender __P((char *, ADDRESS *, int, ENVELOPE *));
1691 
1692 /*
1693 **  Mail Filters (milter)
1694 */
1695 
1696 /*
1697 **  32-bit type used by milter
1698 **  (needed by libmilter even if MILTER isn't defined)
1699 */
1700 
1701 typedef SM_INT32	mi_int32;
1702 
1703 #if MILTER
1704 # define SMFTO_WRITE	0		/* Timeout for sending information */
1705 # define SMFTO_READ	1		/* Timeout waiting for a response */
1706 # define SMFTO_EOM	2		/* Timeout for ACK/NAK to EOM */
1707 # define SMFTO_CONNECT	3		/* Timeout for connect() */
1708 
1709 # define SMFTO_NUM_TO	4		/* Total number of timeouts */
1710 
1711 struct milter
1712 {
1713 	char		*mf_name;	/* filter name */
1714 	BITMAP256	mf_flags;	/* MTA flags */
1715 	mi_int32	mf_fvers;	/* filter version */
1716 	mi_int32	mf_fflags;	/* filter flags */
1717 	mi_int32	mf_pflags;	/* protocol flags */
1718 	char		*mf_conn;	/* connection info */
1719 	int		mf_sock;	/* connected socket */
1720 	char		mf_state;	/* state of filter */
1721 	time_t		mf_timeout[SMFTO_NUM_TO]; /* timeouts */
1722 #if MILTER_CHECK
1723 	/* for testing only */
1724 	mi_int32	mf_mta_prot_version;
1725 	mi_int32	mf_mta_prot_flags;
1726 	mi_int32	mf_mta_actions;
1727 #endif /* MILTER_CHECK */
1728 };
1729 
1730 /* MTA flags */
1731 # define SMF_REJECT		'R'	/* Reject connection on filter fail */
1732 # define SMF_TEMPFAIL		'T'	/* tempfail connection on failure */
1733 # define SMF_TEMPDROP		'4'	/* 421 connection on failure */
1734 
1735 EXTERN struct milter	*InputFilters[MAXFILTERS];
1736 EXTERN char		*InputFilterList;
1737 EXTERN int		MilterLogLevel;
1738 
1739 /* functions */
1740 extern void	setup_daemon_milters __P((void));
1741 #endif /* MILTER */
1742 
1743 /*
1744 **  Vendor codes
1745 **
1746 **	Vendors can customize sendmail to add special behaviour,
1747 **	generally for back compatibility.  Ideally, this should
1748 **	be set up in the .cf file using the "V" command.  However,
1749 **	it's quite reasonable for some vendors to want the default
1750 **	be their old version; this can be set using
1751 **		-DVENDOR_DEFAULT=VENDOR_xxx
1752 **	in the Makefile.
1753 **
1754 **	Vendors should apply to sendmail@sendmail.org for
1755 **	unique vendor codes.
1756 */
1757 
1758 #define VENDOR_BERKELEY	1	/* Berkeley-native configuration file */
1759 #define VENDOR_SUN	2	/* Sun-native configuration file */
1760 #define VENDOR_HP	3	/* Hewlett-Packard specific config syntax */
1761 #define VENDOR_IBM	4	/* IBM specific config syntax */
1762 #define VENDOR_SENDMAIL	5	/* Sendmail, Inc. specific config syntax */
1763 #define VENDOR_DEC	6	/* Compaq, DEC, Digital */
1764 
1765 /* prototypes for vendor-specific hook routines */
1766 extern void	vendor_daemon_setup __P((ENVELOPE *));
1767 extern void	vendor_set_uid __P((UID_T));
1768 
1769 
1770 /*
1771 **  Terminal escape codes.
1772 **
1773 **	To make debugging output clearer.
1774 */
1775 
1776 struct termescape
1777 {
1778 	char	*te_rv_on;	/* turn reverse-video on */
1779 	char	*te_under_on;	/* turn underlining on */
1780 	char	*te_normal;	/* revert to normal output */
1781 };
1782 
1783 /*
1784 **  Additional definitions
1785 */
1786 
1787 /*
1788 **  d_flags, see daemon.c
1789 **  general rule: lower case: required, upper case: No
1790 */
1791 
1792 #define D_AUTHREQ	'a'	/* authentication required */
1793 #define D_BINDIF	'b'	/* use if_addr for outgoing connection */
1794 #define D_CANONREQ	'c'	/* canonification required (cf) */
1795 #define D_IFNHELO	'h'	/* use if name for HELO */
1796 #define D_FQMAIL	'f'	/* fq sender address required (cf) */
1797 #define D_FQRCPT	'r'	/* fq recipient address required (cf) */
1798 #define D_SMTPS		's'	/* SMTP over SSL (smtps) */
1799 #define D_UNQUALOK	'u'	/* unqualified address is ok (cf) */
1800 #define D_NOAUTH	'A'	/* no AUTH */
1801 #define D_NOCANON	'C'	/* no canonification (cf) */
1802 #define D_NOETRN	'E'	/* no ETRN (MSA) */
1803 #define D_NOTLS		'S'	/* don't use STARTTLS */
1804 #define D_ETRNONLY	((char)0x01)	/* allow only ETRN (disk low) */
1805 #define D_OPTIONAL	'O'	/* optional socket */
1806 #define D_DISABLE	((char)0x02)	/* optional socket disabled */
1807 #define D_ISSET		((char)0x03)	/* this client struct is set */
1808 
1809 #if STARTTLS
1810 /*
1811 **  TLS
1812 */
1813 
1814 /* what to do in the TLS initialization */
1815 #define TLS_I_NONE	0x00000000	/* no requirements... */
1816 #define TLS_I_CERT_EX	0x00000001	/* cert must exist */
1817 #define TLS_I_CERT_UNR	0x00000002	/* cert must be g/o unreadable */
1818 #define TLS_I_KEY_EX	0x00000004	/* key must exist */
1819 #define TLS_I_KEY_UNR	0x00000008	/* key must be g/o unreadable */
1820 #define TLS_I_CERTP_EX	0x00000010	/* CA cert path must exist */
1821 #define TLS_I_CERTP_UNR	0x00000020	/* CA cert path must be g/o unreadable */
1822 #define TLS_I_CERTF_EX	0x00000040	/* CA cert file must exist */
1823 #define TLS_I_CERTF_UNR	0x00000080	/* CA cert file must be g/o unreadable */
1824 #define TLS_I_RSA_TMP	0x00000100	/* RSA TMP must be generated */
1825 #define TLS_I_USE_KEY	0x00000200	/* private key must usable */
1826 #define TLS_I_USE_CERT	0x00000400	/* certificate must be usable */
1827 #define TLS_I_VRFY_PATH	0x00000800	/* load verify path must succeed */
1828 #define TLS_I_VRFY_LOC	0x00001000	/* load verify default must succeed */
1829 #define TLS_I_CACHE	0x00002000	/* require cache */
1830 #define TLS_I_TRY_DH	0x00004000	/* try DH certificate */
1831 #define TLS_I_REQ_DH	0x00008000	/* require DH certificate */
1832 #define TLS_I_DHPAR_EX	0x00010000	/* require DH parameters */
1833 #define TLS_I_DHPAR_UNR	0x00020000	/* DH param. must be g/o unreadable */
1834 #define TLS_I_DH512	0x00040000	/* generate 512bit DH param */
1835 #define TLS_I_DH1024	0x00080000	/* generate 1024bit DH param */
1836 #define TLS_I_DH2048	0x00100000	/* generate 2048bit DH param */
1837 #define TLS_I_NO_VRFY	0x00200000	/* do not require authentication */
1838 #define TLS_I_KEY_OUNR	0x00400000	/* Key must be other unreadable */
1839 #define TLS_I_CRLF_EX	0x00800000	/* CRL file must exist */
1840 #define TLS_I_CRLF_UNR	0x01000000	/* CRL file must be g/o unreadable */
1841 
1842 /* require server cert */
1843 #define TLS_I_SRV_CERT	 (TLS_I_CERT_EX | TLS_I_KEY_EX | \
1844 			  TLS_I_KEY_UNR | TLS_I_KEY_OUNR | \
1845 			  TLS_I_CERTP_EX | TLS_I_CERTF_EX | \
1846 			  TLS_I_USE_KEY | TLS_I_USE_CERT | TLS_I_CACHE)
1847 
1848 /* server requirements */
1849 #define TLS_I_SRV	(TLS_I_SRV_CERT | TLS_I_RSA_TMP | TLS_I_VRFY_PATH | \
1850 			 TLS_I_VRFY_LOC | TLS_I_TRY_DH | TLS_I_DH512 | \
1851 			 TLS_I_CACHE)
1852 
1853 /* client requirements */
1854 #define TLS_I_CLT	(TLS_I_KEY_UNR | TLS_I_KEY_OUNR)
1855 
1856 #define TLS_AUTH_OK	0
1857 #define TLS_AUTH_NO	1
1858 #define TLS_AUTH_FAIL	(-1)
1859 
1860 /* functions */
1861 extern bool	init_tls_library __P((void));
1862 extern bool	inittls __P((SSL_CTX **, unsigned long, bool, char *, char *, char *, char *, char *));
1863 extern bool	initclttls __P((bool));
1864 extern void	setclttls __P((bool));
1865 extern bool	initsrvtls __P((bool));
1866 extern int	tls_get_info __P((SSL *, bool, char *, MACROS_T *, bool));
1867 extern int	endtls __P((SSL *, char *));
1868 extern void	tlslogerr __P((const char *));
1869 
1870 
1871 EXTERN char	*CACertPath;	/* path to CA certificates (dir. with hashes) */
1872 EXTERN char	*CACertFile;	/* file with CA certificate */
1873 EXTERN char	*CltCertFile;	/* file with client certificate */
1874 EXTERN char	*CltKeyFile;	/* file with client private key */
1875 # if _FFR_TLS_1
1876 EXTERN char	*CipherList;	/* list of ciphers */
1877 EXTERN char	*DHParams5;	/* file with DH parameters (512) */
1878 # endif /* _FFR_TLS_1 */
1879 EXTERN char	*DHParams;	/* file with DH parameters */
1880 EXTERN char	*RandFile;	/* source of random data */
1881 EXTERN char	*SrvCertFile;	/* file with server certificate */
1882 EXTERN char	*SrvKeyFile;	/* file with server private key */
1883 EXTERN char	*CRLFile;	/* file CRLs */
1884 #if _FFR_CRLPATH
1885 EXTERN char	*CRLPath;	/* path to CRLs (dir. with hashes) */
1886 #endif /* _FFR_CRLPATH */
1887 EXTERN unsigned long	TLS_Srv_Opts;	/* TLS server options */
1888 #endif /* STARTTLS */
1889 
1890 /*
1891 **  Queue related items
1892 */
1893 
1894 /* queue file names */
1895 #define ANYQFL_LETTER '?'
1896 #define QUARQF_LETTER 'h'
1897 #define DATAFL_LETTER 'd'
1898 #define XSCRPT_LETTER 'x'
1899 #define NORMQF_LETTER 'q'
1900 #define NEWQFL_LETTER 't'
1901 
1902 # define TEMPQF_LETTER 'T'
1903 # define LOSEQF_LETTER 'Q'
1904 
1905 /* queue sort order */
1906 #define QSO_BYPRIORITY	0		/* sort by message priority */
1907 #define QSO_BYHOST	1		/* sort by first host name */
1908 #define QSO_BYTIME	2		/* sort by submission time */
1909 #define QSO_BYFILENAME	3		/* sort by file name only */
1910 #define QSO_RANDOM	4		/* sort in random order */
1911 #define QSO_BYMODTIME	5		/* sort by modification time */
1912 #define QSO_NONE	6		/* do not sort */
1913 #if _FFR_RHS
1914 # define QSO_BYSHUFFLE	7		/* sort by shuffled host name */
1915 #endif /* _FFR_RHS */
1916 
1917 #define NOQGRP	(-1)		/* no queue group (yet) */
1918 #define ENVQGRP	(-2)		/* use queue group of envelope */
1919 #define NOAQGRP	(-3)		/* no queue group in addr (yet) */
1920 #define ISVALIDQGRP(x)	((x) >= 0)	/* valid queue group? */
1921 #define NOQDIR	(-1)		/* no queue directory (yet) */
1922 #define ENVQDIR	(-2)		/* use queue directory of envelope */
1923 #define NOAQDIR	(-3)		/* no queue directory in addr (yet) */
1924 #define ISVALIDQDIR(x)	((x) >= 0)	/* valid queue directory? */
1925 #define RS_QUEUEGROUP	"queuegroup"	/* ruleset for queue group selection */
1926 
1927 #define NOW	((time_t) (-1))		/* queue return: now */
1928 
1929 /* SuperSafe values */
1930 #define SAFE_NO			0	/* no fsync(): don't use... */
1931 #define SAFE_INTERACTIVE	1	/* limit fsync() in -odi */
1932 #define SAFE_REALLY		2	/* always fsync() */
1933 #define SAFE_REALLY_POSTMILTER	3	/* fsync() if milter says OK */
1934 
1935 /* QueueMode bits */
1936 #define QM_NORMAL		' '
1937 #define QM_QUARANTINE		'Q'
1938 #define QM_LOST			'L'
1939 
1940 /* Queue Run Limitations */
1941 struct queue_char
1942 {
1943 	char			*queue_match;	/* string to match */
1944 	bool			queue_negate;	/* or not match, if set */
1945 	struct queue_char	*queue_next;
1946 };
1947 
1948 /* run_work_group() flags */
1949 #define RWG_NONE		0x0000
1950 #define RWG_FORK		0x0001
1951 #define RWG_VERBOSE		0x0002
1952 #define RWG_PERSISTENT		0x0004
1953 #define RWG_FORCE		0x0008
1954 #define RWG_RUNALL		0x0010
1955 
1956 typedef struct queue_char	QUEUE_CHAR;
1957 
1958 EXTERN int	volatile CurRunners;	/* current number of runner children */
1959 EXTERN int	MaxQueueRun;	/* maximum number of jobs in one queue run */
1960 EXTERN int	MaxQueueChildren;	/* max # of forked queue children */
1961 EXTERN int	MaxRunnersPerQueue;	/* max # proc's active in queue group */
1962 EXTERN int	NiceQueueRun;	/* nice queue runs to this value */
1963 EXTERN int	NumQueue;	/* number of queue groups */
1964 EXTERN int	QueueFileMode;	/* mode on files in mail queue */
1965 EXTERN int	QueueMode;	/* which queue items to act upon */
1966 EXTERN int	QueueSortOrder;	/* queue sorting order algorithm */
1967 EXTERN time_t	MinQueueAge;	/* min delivery interval */
1968 EXTERN time_t	QueueIntvl;	/* intervals between running the queue */
1969 EXTERN char	*QueueDir;	/* location of queue directory */
1970 EXTERN QUEUE_CHAR	*QueueLimitId;		/* limit queue run to id */
1971 EXTERN QUEUE_CHAR	*QueueLimitQuarantine;	/* limit queue run to quarantine reason */
1972 EXTERN QUEUE_CHAR	*QueueLimitRecipient;	/* limit queue run to rcpt */
1973 EXTERN QUEUE_CHAR	*QueueLimitSender;	/* limit queue run to sender */
1974 EXTERN QUEUEGRP	*Queue[MAXQUEUEGROUPS + 1];	/* queue groups */
1975 
1976 /* functions */
1977 extern void	assign_queueid __P((ENVELOPE *));
1978 extern ADDRESS	*copyqueue __P((ADDRESS *, SM_RPOOL_T *));
1979 extern void	cleanup_queues __P((void));
1980 extern bool	doqueuerun __P((void));
1981 extern void	initsys __P((ENVELOPE *));
1982 extern void	loseqfile __P((ENVELOPE *, char *));
1983 extern int	name2qid __P((char *));
1984 extern char	*qid_printname __P((ENVELOPE *));
1985 extern char	*qid_printqueue __P((int, int));
1986 extern void	quarantine_queue __P((char *, int));
1987 extern char	*queuename __P((ENVELOPE *, int));
1988 extern void	queueup __P((ENVELOPE *, bool, bool));
1989 extern bool	runqueue __P((bool, bool, bool, bool));
1990 extern bool	run_work_group __P((int, int));
1991 extern void	set_def_queueval __P((QUEUEGRP *, bool));
1992 extern void	setup_queues __P((bool));
1993 extern bool	setnewqueue __P((ENVELOPE *));
1994 extern bool	shouldqueue __P((long, time_t));
1995 extern void	sync_queue_time __P((void));
1996 extern void	init_qid_alg __P((void));
1997 extern int	print_single_queue __P((int, int));
1998 #if REQUIRES_DIR_FSYNC
1999 # define SYNC_DIR(path, panic) sync_dir(path, panic)
2000 extern void	sync_dir __P((char *, bool));
2001 #else /* REQUIRES_DIR_FSYNC */
2002 # define SYNC_DIR(path, panic) ((void) 0)
2003 #endif /* REQUIRES_DIR_FSYNC */
2004 
2005 /*
2006 **  Timeouts
2007 **
2008 **	Indicated values are the MINIMUM per RFC 1123 section 5.3.2.
2009 */
2010 
2011 EXTERN struct
2012 {
2013 			/* RFC 1123-specified timeouts [minimum value] */
2014 	time_t	to_initial;	/* initial greeting timeout [5m] */
2015 	time_t	to_mail;	/* MAIL command [5m] */
2016 	time_t	to_rcpt;	/* RCPT command [5m] */
2017 	time_t	to_datainit;	/* DATA initiation [2m] */
2018 	time_t	to_datablock;	/* DATA block [3m] */
2019 	time_t	to_datafinal;	/* DATA completion [10m] */
2020 	time_t	to_nextcommand;	/* next command [5m] */
2021 			/* following timeouts are not mentioned in RFC 1123 */
2022 	time_t	to_iconnect;	/* initial connection timeout (first try) */
2023 	time_t	to_connect;	/* initial connection timeout (later tries) */
2024 	time_t	to_aconnect;	/* all connections timeout (MX and A records) */
2025 	time_t	to_rset;	/* RSET command */
2026 	time_t	to_helo;	/* HELO command */
2027 	time_t	to_quit;	/* QUIT command */
2028 	time_t	to_miscshort;	/* misc short commands (NOOP, VERB, etc) */
2029 	time_t	to_ident;	/* IDENT protocol requests */
2030 	time_t	to_fileopen;	/* opening :include: and .forward files */
2031 	time_t	to_control;	/* process a control socket command */
2032 	time_t	to_lhlo;	/* LMTP: LHLO command */
2033 #if SASL
2034 	time_t	to_auth;	/* AUTH dialogue [10m] */
2035 #endif /* SASL */
2036 #if STARTTLS
2037 	time_t	to_starttls;	/* STARTTLS dialogue [10m] */
2038 #endif /* STARTTLS */
2039 			/* following are per message */
2040 	time_t	to_q_return[MAXTOCLASS];	/* queue return timeouts */
2041 	time_t	to_q_warning[MAXTOCLASS];	/* queue warning timeouts */
2042 	time_t	res_retrans[MAXRESTOTYPES];	/* resolver retransmit */
2043 	int	res_retry[MAXRESTOTYPES];	/* resolver retry */
2044 } TimeOuts;
2045 
2046 /* timeout classes for return and warning timeouts */
2047 #define TOC_NORMAL	0	/* normal delivery */
2048 #define TOC_URGENT	1	/* urgent delivery */
2049 #define TOC_NONURGENT	2	/* non-urgent delivery */
2050 #define TOC_DSN		3	/* DSN delivery */
2051 
2052 /* resolver timeout specifiers */
2053 #define RES_TO_FIRST	0	/* first attempt */
2054 #define RES_TO_NORMAL	1	/* subsequent attempts */
2055 #define RES_TO_DEFAULT	2	/* default value */
2056 
2057 /* functions */
2058 extern void	inittimeouts __P((char *, bool));
2059 
2060 /*
2061 **  Interface probing
2062 */
2063 
2064 #define DPI_PROBENONE		0	/* Don't probe any interfaces */
2065 #define DPI_PROBEALL		1	/* Probe all interfaces */
2066 #define DPI_SKIPLOOPBACK	2	/* Don't probe loopback interfaces */
2067 
2068 /*
2069 **  Trace information
2070 */
2071 
2072 /* macros for debugging flags */
2073 #define tTd(flag, level)	(tTdvect[flag] >= (unsigned char)level)
2074 #define tTdlevel(flag)		(tTdvect[flag])
2075 
2076 /* variables */
2077 extern unsigned char	tTdvect[100];	/* trace vector */
2078 
2079 /*
2080 **  Miscellaneous information.
2081 */
2082 
2083 /*
2084 **  The "no queue id" queue id for sm_syslog
2085 */
2086 
2087 #define NOQID		"*~*"
2088 
2089 /* use id or NOQID (to avoid NOQUEUE in logfile) */
2090 #define E_ID(id)	((id) == NULL ? NOQID : (id))
2091 
2092 #define CURHOSTNAME	(CurHostName == NULL ? "local" : CurHostName)
2093 
2094 /*
2095 **  Some in-line functions
2096 */
2097 
2098 /* set exit status */
2099 #define setstat(s)	{ \
2100 				if (ExitStat == EX_OK || ExitStat == EX_TEMPFAIL) \
2101 					ExitStat = s; \
2102 			}
2103 
2104 
2105 #define STRUCTCOPY(s, d)	d = s
2106 
2107 /* free a pointer if it isn't NULL and set it to NULL */
2108 #define SM_FREE_CLR(p)	\
2109 			if ((p) != NULL) \
2110 			{ \
2111 				sm_free(p); \
2112 				(p) = NULL; \
2113 			} \
2114 			else
2115 
2116 /*
2117 **  Update a permanent string variable with a new value.
2118 **  The old value is freed, the new value is strdup'ed.
2119 **
2120 **  We use sm_pstrdup_x to duplicate the string because it raises
2121 **  an exception on error, and because it allocates "permanent storage"
2122 **  which is not expected to be freed before process exit.
2123 **  The latter is important for memory leak analysis.
2124 **
2125 **  If an exception occurs while strdup'ing the new value,
2126 **  then the variable remains set to the old value.
2127 **  That's why the strdup must occur before we free the old value.
2128 **
2129 **  The macro uses a do loop so that this idiom will work:
2130 **	if (...)
2131 **		PSTRSET(var, val1);
2132 **	else
2133 **		PSTRSET(var, val2);
2134 */
2135 #define PSTRSET(var, val) \
2136 	do \
2137 	{ \
2138 		char *_newval = sm_pstrdup_x(val); \
2139 		if (var != NULL) \
2140 			sm_free(var); \
2141 		var = _newval; \
2142 	} while (0)
2143 
2144 #define _CHECK_RESTART \
2145 	do \
2146 	{ \
2147 		if (ShutdownRequest != NULL) \
2148 			shutdown_daemon(); \
2149 		else if (RestartRequest != NULL) \
2150 			restart_daemon(); \
2151 		else if (RestartWorkGroup) \
2152 			restart_marked_work_groups(); \
2153 	} while (0)
2154 
2155 # define CHECK_RESTART _CHECK_RESTART
2156 
2157 /* reply types (text in SmtpMsgBuffer) */
2158 #define XS_DEFAULT	0
2159 #define XS_STARTTLS	1
2160 #define XS_AUTH		2
2161 
2162 /*
2163 **  Global variables.
2164 */
2165 
2166 EXTERN bool	AllowBogusHELO;	/* allow syntax errors on HELO command */
2167 EXTERN bool	CheckAliases;	/* parse addresses during newaliases */
2168 #if _FFR_QUEUE_RUN_PARANOIA
2169 EXTERN int	CheckQueueRunners; /* check whether queue runners are OK */
2170 #endif /* _FFR_QUEUE_RUN_PARANOIA */
2171 EXTERN bool	ColonOkInAddr;	/* single colon legal in address */
2172 #if !defined(_USE_SUN_NSSWITCH_) && !defined(_USE_DEC_SVC_CONF_)
2173 EXTERN bool	ConfigFileRead;	/* configuration file has been read */
2174 #endif /* !defined(_USE_SUN_NSSWITCH_) && !defined(_USE_DEC_SVC_CONF_) */
2175 EXTERN bool	DisConnected;	/* running with OutChannel redirect to transcript file */
2176 EXTERN bool	DontExpandCnames;	/* do not $[...$] expand CNAMEs */
2177 EXTERN bool	DontInitGroups;	/* avoid initgroups() because of NIS cost */
2178 EXTERN bool	DontLockReadFiles;	/* don't read lock support files */
2179 EXTERN bool	DontPruneRoutes;	/* don't prune source routes */
2180 EXTERN bool	ForkQueueRuns;	/* fork for each job when running the queue */
2181 EXTERN bool	FromFlag;	/* if set, "From" person is explicit */
2182 EXTERN bool	GrabTo;		/* if set, get recipients from msg */
2183 EXTERN bool	EightBitAddrOK;	/* we'll let 8-bit addresses through */
2184 EXTERN bool	HasEightBits;	/* has at least one eight bit input byte */
2185 EXTERN bool	HasWildcardMX;	/* don't use MX records when canonifying */
2186 EXTERN bool	HoldErrs;	/* only output errors to transcript */
2187 EXTERN bool	IgnoreHostStatus;	/* ignore long term host status files */
2188 EXTERN bool	IgnrDot;	/* don't let dot end messages */
2189 EXTERN bool	LogUsrErrs;	/* syslog user errors (e.g., SMTP RCPT cmd) */
2190 EXTERN bool	MatchGecos;	/* look for user names in gecos field */
2191 EXTERN bool	MeToo;		/* send to the sender also */
2192 EXTERN bool	NoAlias;	/* suppress aliasing */
2193 EXTERN bool	NoConnect;	/* don't connect to non-local mailers */
2194 EXTERN bool	OnlyOneError;	/*  .... or only want to give one SMTP reply */
2195 EXTERN bool	QuickAbort;	/*  .... but only if we want a quick abort */
2196 #if REQUIRES_DIR_FSYNC
2197 EXTERN bool	RequiresDirfsync;	/* requires fsync() for directory */
2198 #endif /* REQUIRES_DIR_FSYNC */
2199 EXTERN bool	volatile RestartWorkGroup; /* daemon needs to restart some work groups */
2200 EXTERN bool	RrtImpliesDsn;	/* turn Return-Receipt-To: into DSN */
2201 EXTERN bool	SaveFrom;	/* save leading "From" lines */
2202 EXTERN bool	SendMIMEErrors;	/* send error messages in MIME format */
2203 EXTERN bool	SevenBitInput;	/* force 7-bit data on input */
2204 EXTERN bool	SingleLineFromHeader;	/* force From: header to be one line */
2205 EXTERN bool	SingleThreadDelivery;	/* single thread hosts on delivery */
2206 EXTERN bool	SoftBounce;	/* replace 5xy by 4xy (for testing) */
2207 EXTERN bool	volatile StopRequest;	/* stop sending output */
2208 EXTERN bool	SuprErrs;	/* set if we are suppressing errors */
2209 EXTERN bool	TryNullMXList;	/* if we are the best MX, try host directly */
2210 EXTERN bool	UseMSP;		/* mail submission: group writable queue ok? */
2211 EXTERN bool	WorkAroundBrokenAAAA;	/* some nameservers return SERVFAIL on AAAA queries */
2212 EXTERN bool	UseErrorsTo;	/* use Errors-To: header (back compat) */
2213 EXTERN bool	UseNameServer;	/* using DNS -- interpret h_errno & MX RRs */
2214 EXTERN char	InetMode;		/* default network for daemon mode */
2215 EXTERN char	OpMode;		/* operation mode, see below */
2216 EXTERN char	SpaceSub;	/* substitution for <lwsp> */
2217 EXTERN int	BadRcptThrottle; /* Throttle rejected RCPTs per SMTP message */
2218 EXTERN int	CheckpointInterval;	/* queue file checkpoint interval */
2219 EXTERN int	ConfigLevel;	/* config file level */
2220 EXTERN int	ConnRateThrottle;	/* throttle for SMTP connection rate */
2221 EXTERN int	volatile CurChildren;	/* current number of daemonic children */
2222 EXTERN int	CurrentLA;	/* current load average */
2223 EXTERN int	DefaultNotify;	/* default DSN notification flags */
2224 EXTERN int	DelayLA;	/* load average to delay connections */
2225 EXTERN int	DontProbeInterfaces;	/* don't probe interfaces for names */
2226 EXTERN int	Errors;		/* set if errors (local to single pass) */
2227 EXTERN int	ExitStat;	/* exit status code */
2228 EXTERN int	FastSplit;	/* fast initial splitting of envelopes */
2229 EXTERN int	FileMode;	/* mode on files */
2230 EXTERN int	LineNumber;	/* line number in current input */
2231 EXTERN int	LogLevel;	/* level of logging to perform */
2232 EXTERN int	MaxAliasRecursion;	/* maximum depth of alias recursion */
2233 EXTERN int	MaxChildren;	/* maximum number of daemonic children */
2234 EXTERN int	MaxForwardEntries;	/* maximum number of forward entries */
2235 EXTERN int	MaxHeadersLength;	/* max length of headers */
2236 EXTERN int	MaxHopCount;	/* max # of hops until bounce */
2237 EXTERN int	MaxMacroRecursion;	/* maximum depth of macro recursion */
2238 EXTERN int	MaxMimeFieldLength;	/* maximum MIME field length */
2239 EXTERN int	MaxMimeHeaderLength;	/* maximum MIME header length */
2240 EXTERN int	MaxNOOPCommands; /* max "noise" commands before slowdown */
2241 
2242 EXTERN int	MaxRcptPerMsg;	/* max recipients per SMTP message */
2243 EXTERN int	MaxRuleRecursion;	/* maximum depth of ruleset recursion */
2244 #if _FFR_MSG_ACCEPT
2245 EXTERN char	*MessageAccept; /* "Message accepted for delivery" reply text */
2246 #endif /* _FFR_MSG_ACCEPT */
2247 
2248 EXTERN int	MimeMode;	/* MIME processing mode */
2249 EXTERN int	NoRecipientAction;
2250 
2251 #if SM_CONF_SHM
2252 EXTERN int	Numfilesys;	/* number of queue file systems */
2253 EXTERN int	*PNumFileSys;
2254 # define NumFileSys	(*PNumFileSys)
2255 # else /* SM_CONF_SHM */
2256 EXTERN int	NumFileSys;	/* number of queue file systems */
2257 # endif /* SM_CONF_SHM */
2258 
2259 EXTERN int	QueueLA;	/* load average starting forced queueing */
2260 EXTERN int	RefuseLA;	/* load average refusing connections */
2261 EXTERN time_t	RejectLogInterval;	/* time btwn log msgs while refusing */
2262 #if _FFR_MEMSTAT
2263 EXTERN long	QueueLowMem;	/* low memory starting forced queueing */
2264 EXTERN long	RefuseLowMem;	/* low memory refusing connections */
2265 EXTERN char	*MemoryResource;/* memory resource to look up */
2266 #endif /* _FFR_MEMSTAT */
2267 EXTERN int	SuperSafe;	/* be extra careful, even if expensive */
2268 EXTERN int	VendorCode;	/* vendor-specific operation enhancements */
2269 EXTERN int	Verbose;	/* set if blow-by-blow desired */
2270 EXTERN gid_t	DefGid;		/* default gid to run as */
2271 EXTERN gid_t	RealGid;	/* real gid of caller */
2272 EXTERN gid_t	RunAsGid;	/* GID to become for bulk of run */
2273 EXTERN gid_t	EffGid;		/* effective gid */
2274 #if SM_CONF_SHM
2275 EXTERN key_t	ShmKey;		/* shared memory key */
2276 EXTERN char	*ShmKeyFile;	/* shared memory key file */
2277 #endif /* SM_CONF_SHM */
2278 EXTERN pid_t	CurrentPid;	/* current process id */
2279 EXTERN pid_t	DaemonPid;	/* process id of daemon */
2280 EXTERN pid_t	PidFilePid;	/* daemon/queue runner who wrote pid file */
2281 EXTERN uid_t	DefUid;		/* default uid to run as */
2282 EXTERN uid_t	RealUid;	/* real uid of caller */
2283 EXTERN uid_t	RunAsUid;	/* UID to become for bulk of run */
2284 EXTERN uid_t	TrustedUid;	/* uid of trusted user for files and startup */
2285 EXTERN size_t	DataFileBufferSize;	/* size of buf for in-core data file */
2286 EXTERN time_t	DeliverByMin;	/* deliver by minimum time */
2287 EXTERN time_t	DialDelay;	/* delay between dial-on-demand tries */
2288 EXTERN time_t	SafeAlias;	/* interval to wait until @:@ in alias file */
2289 EXTERN time_t	ServiceCacheMaxAge;	/* refresh interval for cache */
2290 EXTERN size_t	XscriptFileBufferSize;	/* size of buf for in-core transcript file */
2291 EXTERN MODE_T	OldUmask;	/* umask when sendmail starts up */
2292 EXTERN long	MaxMessageSize;	/* advertised max size we will accept */
2293 EXTERN long	MinBlocksFree;	/* min # of blocks free on queue fs */
2294 EXTERN long	QueueFactor;	/* slope of queue function */
2295 EXTERN long	WkClassFact;	/* multiplier for message class -> priority */
2296 EXTERN long	WkRecipFact;	/* multiplier for # of recipients -> priority */
2297 EXTERN long	WkTimeFact;	/* priority offset each time this job is run */
2298 EXTERN char	*ControlSocketName; /* control socket filename [control.c] */
2299 EXTERN char	*CurHostName;	/* current host we are dealing with */
2300 EXTERN char	*DeadLetterDrop;	/* path to dead letter office */
2301 EXTERN char	*DefUser;	/* default user to run as (from DefUid) */
2302 EXTERN char	*DefaultCharSet;	/* default character set for MIME */
2303 EXTERN char	*DoubleBounceAddr;	/* where to send double bounces */
2304 EXTERN char	*ErrMsgFile;	/* file to prepend to all error messages */
2305 EXTERN char	*FallbackMX;	/* fall back MX host */
2306 EXTERN char	*FallbackSmartHost;	/* fall back smart host */
2307 EXTERN char	*FileName;	/* name to print on error messages */
2308 EXTERN char	*ForwardPath;	/* path to search for .forward files */
2309 EXTERN char	*HeloName;	/* hostname to announce in HELO */
2310 EXTERN char	*HelpFile;	/* location of SMTP help file */
2311 EXTERN char	*HostStatDir;	/* location of host status information */
2312 EXTERN char	*HostsFile;	/* path to /etc/hosts file */
2313 extern char	*Mbdb;		/* mailbox database type */
2314 EXTERN char	*MustQuoteChars;	/* quote these characters in phrases */
2315 EXTERN char	*MyHostName;	/* name of this host for SMTP messages */
2316 EXTERN char	*OperatorChars;	/* operators (old $o macro) */
2317 EXTERN char	*PidFile;	/* location of proc id file [conf.c] */
2318 EXTERN char	*PostMasterCopy;	/* address to get errs cc's */
2319 EXTERN char	*ProcTitlePrefix; /* process title prefix */
2320 EXTERN char	*RealHostName;	/* name of host we are talking to */
2321 EXTERN char	*RealUserName;	/* real user name of caller */
2322 EXTERN char	*volatile RestartRequest;/* a sendmail restart has been requested */
2323 EXTERN char	*RunAsUserName;	/* user to become for bulk of run */
2324 EXTERN char	*SafeFileEnv;	/* chroot location for file delivery */
2325 EXTERN char	*ServiceSwitchFile;	/* backup service switch */
2326 EXTERN char	*volatile ShutdownRequest;/* a sendmail shutdown has been requested */
2327 EXTERN char	*SmtpGreeting;	/* SMTP greeting message (old $e macro) */
2328 EXTERN char	*SmtpPhase;	/* current phase in SMTP processing */
2329 EXTERN char	SmtpError[MAXLINE];	/* save failure error messages */
2330 EXTERN char	*StatFile;	/* location of statistics summary */
2331 EXTERN char	*TimeZoneSpec;	/* override time zone specification */
2332 EXTERN char	*UdbSpec;	/* user database source spec */
2333 EXTERN char	*UnixFromLine;	/* UNIX From_ line (old $l macro) */
2334 EXTERN char	**ExternalEnviron;	/* saved user (input) environment */
2335 EXTERN char	**SaveArgv;	/* argument vector for re-execing */
2336 EXTERN BITMAP256	DontBlameSendmail;	/* DontBlameSendmail bits */
2337 EXTERN SM_FILE_T	*InChannel;	/* input connection */
2338 EXTERN SM_FILE_T	*OutChannel;	/* output connection */
2339 EXTERN SM_FILE_T	*TrafficLogFile; /* file in which to log all traffic */
2340 #if HESIOD
2341 EXTERN void	*HesiodContext;
2342 #endif /* HESIOD */
2343 EXTERN ENVELOPE	*CurEnv;	/* envelope currently being processed */
2344 EXTERN char	*RuleSetNames[MAXRWSETS];	/* ruleset number to name */
2345 EXTERN char	*UserEnviron[MAXUSERENVIRON + 1];
2346 EXTERN struct rewrite	*RewriteRules[MAXRWSETS];
2347 EXTERN struct termescape	TermEscape;	/* terminal escape codes */
2348 EXTERN SOCKADDR	ConnectOnlyTo;	/* override connection address (for testing) */
2349 EXTERN SOCKADDR RealHostAddr;	/* address of host we are talking to */
2350 extern const SM_EXC_TYPE_T EtypeQuickAbort; /* type of a QuickAbort exception */
2351 
2352 
2353 EXTERN int ConnectionRateWindowSize;
2354 
2355 /*
2356 **  Declarations of useful functions
2357 */
2358 
2359 /* Transcript file */
2360 extern void	closexscript __P((ENVELOPE *));
2361 extern void	openxscript __P((ENVELOPE *));
2362 
2363 /* error related */
2364 extern void	buffer_errors __P((void));
2365 extern void	flush_errors __P((bool));
2366 extern void PRINTFLIKE(1, 2)	message __P((const char *, ...));
2367 extern void PRINTFLIKE(1, 2)	nmessage __P((const char *, ...));
2368 extern void PRINTFLIKE(1, 2)	syserr __P((const char *, ...));
2369 extern void PRINTFLIKE(2, 3)	usrerrenh __P((char *, const char *, ...));
2370 extern void PRINTFLIKE(1, 2)	usrerr __P((const char *, ...));
2371 extern int	isenhsc __P((const char *, int));
2372 extern int	extenhsc __P((const char *, int, char *));
2373 
2374 /* alias file */
2375 extern void	alias __P((ADDRESS *, ADDRESS **, int, ENVELOPE *));
2376 extern bool	aliaswait __P((MAP *, char *, bool));
2377 extern void	forward __P((ADDRESS *, ADDRESS **, int, ENVELOPE *));
2378 extern void	readaliases __P((MAP *, SM_FILE_T *, bool, bool));
2379 extern bool	rebuildaliases __P((MAP *, bool));
2380 extern void	setalias __P((char *));
2381 
2382 /* logging */
2383 extern void	logdelivery __P((MAILER *, MCI *, char *, const char *, ADDRESS *, time_t, ENVELOPE *));
2384 extern void	logsender __P((ENVELOPE *, char *));
2385 extern void PRINTFLIKE(3, 4) sm_syslog __P((int, const char *, const char *, ...));
2386 
2387 /* SMTP */
2388 extern void	giveresponse __P((int, char *, MAILER *, MCI *, ADDRESS *, time_t, ENVELOPE *, ADDRESS *));
2389 extern int	reply __P((MAILER *, MCI *, ENVELOPE *, time_t, void (*)__P((char *, bool, MAILER *, MCI *, ENVELOPE *)), char **, int));
2390 extern void	smtp __P((char *volatile, BITMAP256, ENVELOPE *volatile));
2391 #if SASL
2392 extern int	smtpauth __P((MAILER *, MCI *, ENVELOPE *));
2393 #endif /* SASL */
2394 extern int	smtpdata __P((MAILER *, MCI *, ENVELOPE *, ADDRESS *, time_t));
2395 extern int	smtpgetstat __P((MAILER *, MCI *, ENVELOPE *));
2396 extern int	smtpmailfrom __P((MAILER *, MCI *, ENVELOPE *));
2397 extern void	smtpmessage __P((char *, MAILER *, MCI *, ...));
2398 extern void	smtpinit __P((MAILER *, MCI *, ENVELOPE *, bool));
2399 extern char	*smtptodsn __P((int));
2400 extern int	smtpprobe __P((MCI *));
2401 extern void	smtpquit __P((MAILER *, MCI *, ENVELOPE *));
2402 extern int	smtprcpt __P((ADDRESS *, MAILER *, MCI *, ENVELOPE *, ADDRESS *, time_t));
2403 extern void	smtprset __P((MAILER *, MCI *, ENVELOPE *));
2404 
2405 #define REPLYTYPE(r)	((r) / 100)		/* first digit of reply code */
2406 #define ISSMTPCODE(c)	(isascii(c[0]) && isdigit(c[0]) && \
2407 		    isascii(c[1]) && isdigit(c[1]) && \
2408 		    isascii(c[2]) && isdigit(c[2]))
2409 #define ISSMTPREPLY(c)	(ISSMTPCODE(c) && \
2410 		    (c[3] == ' ' || c[3] == '-' || c[3] == '\0'))
2411 
2412 /* delivery */
2413 extern pid_t	dowork __P((int, int, char *, bool, bool, ENVELOPE *));
2414 extern pid_t	doworklist __P((ENVELOPE *, bool, bool));
2415 extern int	endmailer __P((MCI *, ENVELOPE *, char **));
2416 extern int	mailfile __P((char *volatile, MAILER *volatile, ADDRESS *, volatile long, ENVELOPE *));
2417 extern void	sendall __P((ENVELOPE *, int));
2418 
2419 /* stats */
2420 #define STATS_NORMAL		'n'
2421 #define STATS_QUARANTINE	'q'
2422 #define STATS_REJECT		'r'
2423 #define STATS_CONNECT		'c'
2424 
2425 extern void	markstats __P((ENVELOPE *, ADDRESS *, int));
2426 extern void	clearstats __P((void));
2427 extern void	poststats __P((char *));
2428 
2429 /* control socket */
2430 extern void	closecontrolsocket  __P((bool));
2431 extern void	clrcontrol  __P((void));
2432 extern void	control_command __P((int, ENVELOPE *));
2433 extern int	opencontrolsocket __P((void));
2434 
2435 #if MILTER
2436 /* milter functions */
2437 extern void	milter_config __P((char *, struct milter **, int));
2438 extern void	milter_setup __P((char *));
2439 extern void	milter_set_option __P((char *, char *, bool));
2440 extern bool	milter_can_delrcpts __P((void));
2441 extern bool	milter_init __P((ENVELOPE *, char *));
2442 extern void	milter_quit __P((ENVELOPE *));
2443 extern void	milter_abort __P((ENVELOPE *));
2444 extern char	*milter_connect __P((char *, SOCKADDR, ENVELOPE *, char *));
2445 extern char	*milter_helo __P((char *, ENVELOPE *, char *));
2446 extern char	*milter_envfrom __P((char **, ENVELOPE *, char *));
2447 extern char	*milter_data_cmd __P((ENVELOPE *, char *));
2448 extern char	*milter_envrcpt __P((char **, ENVELOPE *, char *, bool));
2449 extern char	*milter_data __P((ENVELOPE *, char *));
2450 extern char	*milter_unknown __P((char *, ENVELOPE *, char *));
2451 #endif /* MILTER */
2452 
2453 extern char	*addquotes __P((char *, SM_RPOOL_T *));
2454 extern char	*arpadate __P((char *));
2455 extern bool	atobool __P((char *));
2456 extern int	atooct __P((char *));
2457 extern void	auth_warning __P((ENVELOPE *, const char *, ...));
2458 extern int	blocksignal __P((int));
2459 extern bool	bitintersect __P((BITMAP256, BITMAP256));
2460 extern bool	bitzerop __P((BITMAP256));
2461 extern int	check_bodytype __P((char *));
2462 extern void	buildfname __P((char *, char *, char *, int));
2463 extern bool	chkclientmodifiers __P((int));
2464 extern bool	chkdaemonmodifiers __P((int));
2465 extern int	checkcompat __P((ADDRESS *, ENVELOPE *));
2466 #ifdef XDEBUG
2467 extern void	checkfd012 __P((char *));
2468 extern void	checkfdopen __P((int, char *));
2469 #endif /* XDEBUG */
2470 extern void	checkfds __P((char *));
2471 extern bool	chownsafe __P((int, bool));
2472 extern void	cleanstrcpy __P((char *, char *, int));
2473 #if SM_CONF_SHM
2474 extern void	cleanup_shm __P((bool));
2475 #endif /* SM_CONF_SHM */
2476 extern void	close_sendmail_pid __P((void));
2477 extern void	clrdaemon __P((void));
2478 extern void	collect __P((SM_FILE_T *, bool, HDR **, ENVELOPE *, bool));
2479 extern bool	connection_rate_check __P((SOCKADDR *, ENVELOPE *));
2480 extern time_t	convtime __P((char *, int));
2481 extern char	**copyplist __P((char **, bool, SM_RPOOL_T *));
2482 extern void	copy_class __P((int, int));
2483 extern int	count_open_connections __P((SOCKADDR *));
2484 extern time_t	curtime __P((void));
2485 extern char	*defcharset __P((ENVELOPE *));
2486 extern char	*denlstring __P((char *, bool, bool));
2487 extern void	dferror __P((SM_FILE_T *volatile, char *, ENVELOPE *));
2488 extern void	disconnect __P((int, ENVELOPE *));
2489 extern void	disk_status __P((SM_FILE_T *, char *));
2490 extern bool	dns_getcanonname __P((char *, int, bool, int *, int *));
2491 extern pid_t	dofork __P((void));
2492 extern int	drop_privileges __P((bool));
2493 extern int	dsntoexitstat __P((char *));
2494 extern void	dumpfd __P((int, bool, bool));
2495 #if SM_HEAP_CHECK
2496 extern void	dumpstab __P((void));
2497 #endif /* SM_HEAP_CHECK */
2498 extern void	dumpstate __P((char *));
2499 extern bool	enoughdiskspace __P((long, ENVELOPE *));
2500 extern char	*exitstat __P((char *));
2501 extern void	fatal_error __P((SM_EXC_T *));
2502 extern char	*fgetfolded __P((char *, int *, SM_FILE_T *));
2503 extern void	fill_fd __P((int, char *));
2504 extern char	*find_character __P((char *, int));
2505 extern int	finduser __P((char *, bool *, SM_MBDB_T *));
2506 extern void	finis __P((bool, bool, volatile int));
2507 extern void	fixcrlf __P((char *, bool));
2508 extern long	freediskspace __P((const char *, long *));
2509 #if NETINET6 && NEEDSGETIPNODE
2510 extern void	freehostent __P((struct hostent *));
2511 #endif /* NETINET6 && NEEDSGETIPNODE */
2512 extern char	*get_column __P((char *, int, int, char *, int));
2513 extern char	*getauthinfo __P((int, bool *));
2514 extern int	getdtsize __P((void));
2515 extern int	getla __P((void));
2516 extern char	*getmodifiers __P((char *, BITMAP256));
2517 extern BITMAP256	*getrequests __P((ENVELOPE *));
2518 extern char	*getvendor __P((int));
2519 extern void	help __P((char *, ENVELOPE *));
2520 extern void	init_md __P((int, char **));
2521 extern void	initdaemon __P((void));
2522 extern void	inithostmaps __P((void));
2523 extern void	initmacros __P((ENVELOPE *));
2524 extern void	initsetproctitle __P((int, char **, char **));
2525 extern void	init_vendor_macros __P((ENVELOPE *));
2526 extern SIGFUNC_DECL	intsig __P((int));
2527 extern bool	isloopback __P((SOCKADDR sa));
2528 extern void	load_if_names __P((void));
2529 extern bool	lockfile __P((int, char *, char *, int));
2530 extern void	log_sendmail_pid __P((ENVELOPE *));
2531 extern void	logundelrcpts __P((ENVELOPE *, char *, int, bool));
2532 extern char	lower __P((int));
2533 extern void	makelower __P((char *));
2534 extern int	makeconnection_ds __P((char *, MCI *));
2535 extern int	makeconnection __P((char *, volatile unsigned int, MCI *, ENVELOPE *, time_t));
2536 extern void	makeworkgroups __P((void));
2537 extern void	markfailure __P((ENVELOPE *, ADDRESS *, MCI *, int, bool));
2538 extern void	mark_work_group_restart __P((int, int));
2539 extern MCI	*mci_new __P((SM_RPOOL_T *));
2540 extern char	*munchstring __P((char *, char **, int));
2541 extern struct hostent	*myhostname __P((char *, int));
2542 extern char	*newstr __P((const char *));
2543 #if NISPLUS
2544 extern char	*nisplus_default_domain __P((void));	/* extern for Sun */
2545 #endif /* NISPLUS */
2546 extern bool	path_is_dir __P((char *, bool));
2547 extern int	pickqdir __P((QUEUEGRP *qg, long fsize, ENVELOPE *e));
2548 extern char	*pintvl __P((time_t, bool));
2549 extern void	printav __P((SM_FILE_T *, char **));
2550 extern void	printmailer __P((SM_FILE_T *, MAILER *));
2551 extern void	printnqe __P((SM_FILE_T *, char *));
2552 extern void	printopenfds __P((bool));
2553 extern void	printqueue __P((void));
2554 extern void	printrules __P((void));
2555 extern pid_t	prog_open __P((char **, int *, ENVELOPE *));
2556 extern bool	putline __P((char *, MCI *));
2557 extern bool	putxline __P((char *, size_t, MCI *, int));
2558 extern void	queueup_macros __P((int, SM_FILE_T *, ENVELOPE *));
2559 extern void	readcf __P((char *, bool, ENVELOPE *));
2560 extern SIGFUNC_DECL	reapchild __P((int));
2561 extern int	releasesignal __P((int));
2562 extern void	resetlimits __P((void));
2563 extern void	restart_daemon __P((void));
2564 extern void	restart_marked_work_groups __P((void));
2565 extern bool	rfc822_string __P((char *));
2566 extern void	rmexpstab __P((void));
2567 extern bool	savemail __P((ENVELOPE *, bool));
2568 extern void	seed_random __P((void));
2569 extern void	sendtoargv __P((char **, ENVELOPE *));
2570 extern void	setclientoptions __P((char *));
2571 extern bool	setdaemonoptions __P((char *));
2572 extern void	setdefaults __P((ENVELOPE *));
2573 extern void	setdefuser __P((void));
2574 extern bool	setvendor __P((char *));
2575 extern void	set_op_mode __P((int));
2576 extern void	setoption __P((int, char *, bool, bool, ENVELOPE *));
2577 extern sigfunc_t	setsignal __P((int, sigfunc_t));
2578 extern void	sm_setuserenv __P((const char *, const char *));
2579 extern void	settime __P((ENVELOPE *));
2580 extern char	*sfgets __P((char *, int, SM_FILE_T *, time_t, char *));
2581 extern char	*shortenstring __P((const char *, size_t));
2582 extern char	*shorten_hostname __P((char []));
2583 extern bool	shorten_rfc822_string __P((char *, size_t));
2584 extern void	shutdown_daemon __P((void));
2585 extern void	sm_closefrom __P((int lowest, int highest));
2586 extern void	sm_close_on_exec __P((int lowest, int highest));
2587 extern struct hostent	*sm_gethostbyname __P((char *, int));
2588 extern struct hostent	*sm_gethostbyaddr __P((char *, int, int));
2589 extern void	sm_getla __P((void));
2590 extern struct passwd	*sm_getpwnam __P((char *));
2591 extern struct passwd	*sm_getpwuid __P((UID_T));
2592 extern void	sm_setproctitle __P((bool, ENVELOPE *, const char *, ...));
2593 extern pid_t	sm_wait __P((int *));
2594 extern bool	split_by_recipient __P((ENVELOPE *e));
2595 extern void	stop_sendmail __P((void));
2596 extern void	stripbackslash __P((char *));
2597 extern bool	strreplnonprt __P((char *, int));
2598 extern bool	strcontainedin __P((bool, char *, char *));
2599 extern int	switch_map_find __P((char *, char *[], short []));
2600 #if STARTTLS
2601 extern void	tls_set_verify __P((SSL_CTX *, SSL *, bool));
2602 #endif /* STARTTLS */
2603 extern bool	transienterror __P((int));
2604 extern void	truncate_at_delim __P((char *, size_t, int));
2605 extern void	tTflag __P((char *));
2606 extern void	tTsetup __P((unsigned char *, unsigned int, char *));
2607 extern SIGFUNC_DECL	tick __P((int));
2608 extern char	*ttypath __P((void));
2609 extern void	unlockqueue __P((ENVELOPE *));
2610 #if !HASUNSETENV
2611 extern void	unsetenv __P((char *));
2612 #endif /* !HASUNSETENV */
2613 
2614 /* update file system information: +/- some blocks */
2615 #if SM_CONF_SHM
2616 extern void	upd_qs __P((ENVELOPE *, bool, bool, char *));
2617 # define updfs(e, count, space, where) upd_qs(e, count, space, where)
2618 #else /* SM_CONF_SHM */
2619 # define updfs(e, count, space, where)
2620 # define upd_qs(e, count, space, where)
2621 #endif /* SM_CONF_SHM */
2622 
2623 extern char	*username __P((void));
2624 extern bool	usershellok __P((char *, char *));
2625 extern void	vendor_post_defaults __P((ENVELOPE *));
2626 extern void	vendor_pre_defaults __P((ENVELOPE *));
2627 extern int	waitfor __P((pid_t));
2628 extern bool	writable __P((char *, ADDRESS *, long));
2629 #if SM_HEAP_CHECK
2630 # define xalloc(size)	xalloc_tagged(size, __FILE__, __LINE__)
2631 extern char *xalloc_tagged __P((int, char*, int));
2632 #else /* SM_HEAP_CHECK */
2633 extern char *xalloc __P((int));
2634 #endif /* SM_HEAP_CHECK */
2635 extern void	xputs __P((SM_FILE_T *, const char *));
2636 extern char	*xtextify __P((char *, char *));
2637 extern bool	xtextok __P((char *));
2638 extern int	xunlink __P((char *));
2639 extern char	*xuntextify __P((char *));
2640 
2641 
2642 #undef EXTERN
2643 #endif /* ! _SENDMAIL_H */
2644