1 /*
2 **  SENDMAIL.H -- Global definitions for sendmail.
3 */
4 
5 
6 
7 # ifdef _DEFINE
8 # define EXTERN
9 # ifndef lint
10 static char SmailSccsId[] =	"@(#)sendmail.h	3.102		11/28/82";
11 # endif lint
12 # else  _DEFINE
13 # define EXTERN extern
14 # endif _DEFINE
15 
16 # include <stdio.h>
17 # include <ctype.h>
18 # include <setjmp.h>
19 # include "conf.h"
20 # include "useful.h"
21 
22 # ifdef LOG
23 # include <syslog.h>
24 # endif LOG
25 /*
26 **  Address structure.
27 **	Addresses are stored internally in this structure.
28 */
29 
30 struct address
31 {
32 	char		*q_paddr;	/* the printname for the address */
33 	char		*q_user;	/* user name */
34 	char		*q_host;	/* host name */
35 	struct mailer	*q_mailer;	/* mailer to use */
36 	u_short		q_flags;	/* status flags, see below */
37 	short		q_uid;		/* user-id of receiver (if known) */
38 	short		q_gid;		/* group-id of receiver (if known) */
39 	char		*q_home;	/* home dir (local mailer only) */
40 	char		*q_fullname;	/* full name if known */
41 	struct address	*q_next;	/* chain */
42 	struct address	*q_alias;	/* address this results from */
43 	struct address	*q_tchain;	/* temporary use chain */
44 	time_t		q_timeout;	/* timeout for this address */
45 };
46 
47 typedef struct address ADDRESS;
48 
49 # define QDONTSEND	000001	/* don't send to this address */
50 # define QBADADDR	000002	/* this address is verified bad */
51 # define QGOODUID	000004	/* the q_uid q_gid fields are good */
52 # define QPRIMARY	000010	/* set from argv */
53 # define QQUEUEUP	000020	/* queue for later transmission */
54 /*
55 **  Mailer definition structure.
56 **	Every mailer known to the system is declared in this
57 **	structure.  It defines the pathname of the mailer, some
58 **	flags associated with it, and the argument vector to
59 **	pass to it.  The flags are defined in conf.c
60 **
61 **	The argument vector is expanded before actual use.  All
62 **	words except the first are passed through the macro
63 **	processor.
64 */
65 
66 struct mailer
67 {
68 	char	*m_name;	/* symbolic name of this mailer */
69 	char	*m_mailer;	/* pathname of the mailer to use */
70 	u_long	m_flags;	/* status flags, see below */
71 	short	m_mno;		/* mailer number internally */
72 	char	**m_argv;	/* template argument vector */
73 	short	m_s_rwset;	/* rewriting set for sender addresses */
74 	short	m_r_rwset;	/* rewriting set for recipient addresses */
75 };
76 
77 typedef struct mailer	MAILER;
78 
79 /* bits for m_flags */
80 # define M_FOPT		000000001L	/* mailer takes picky -f flag */
81 # define M_ROPT		000000002L	/* mailer takes picky -r flag */
82 # define M_RPATH	000000004L	/* wants a Return-Path: line */
83 # define M_RESTR	000000010L	/* must be daemon to execute */
84 # define M_NHDR		000000020L	/* don't insert From line */
85 # define M_LOCAL	000000040L	/* delivery is to this host */
86 # define M_STRIPQ	000000100L	/* strip quote chars from user/host */
87 # define M_MUSER	000000200L	/* can handle multiple users at once */
88 # define M_NEEDFROM	000000400L	/* need arpa-style From: line */
89 # define M_NEEDDATE	000001000L	/* need arpa-style Date: line */
90 # define M_MSGID	000002000L	/* need Message-Id: field */
91 # define M_CANONICAL	000004000L	/* make addresses canonical "u@dom" */
92 # define M_USR_UPPER	000010000L	/* preserve user case distinction */
93 # define M_HST_UPPER	000020000L	/* preserve host case distinction */
94 # define M_FULLNAME	000040000L	/* want Full-Name field */
95 # define M_UGLYUUCP	000100000L	/* this wants an ugly UUCP from line */
96 # define M_EXPENSIVE	000200000L	/* it costs to use this mailer.... */
97 # define M_FULLSMTP	000400000L	/* must run full SMTP, inc. limits */
98 # define M_INTERNAL	001000000L	/* SMTP to another sendmail site */
99 
100 # define M_ARPAFMT	(M_NEEDDATE|M_NEEDFROM|M_MSGID)
101 
102 EXTERN MAILER	*Mailer[MAXMAILERS+1];
103 
104 EXTERN MAILER	*LocalMailer;		/* ptr to local mailer */
105 EXTERN MAILER	*ProgMailer;		/* ptr to program mailer */
106 /*
107 **  Header structure.
108 **	This structure is used internally to store header items.
109 */
110 
111 struct header
112 {
113 	char		*h_field;	/* the name of the field */
114 	char		*h_value;	/* the value of that field */
115 	struct header	*h_link;	/* the next header */
116 	u_short		h_flags;	/* status bits, see below */
117 	u_long		h_mflags;	/* m_flags bits needed */
118 };
119 
120 typedef struct header	HDR;
121 
122 /*
123 **  Header information structure.
124 **	Defined in conf.c, this struct declares the header fields
125 **	that have some magic meaning.
126 */
127 
128 struct hdrinfo
129 {
130 	char	*hi_field;	/* the name of the field */
131 	u_short	hi_flags;	/* status bits, see below */
132 };
133 
134 extern struct hdrinfo	HdrInfo[];
135 
136 /* bits for h_flags and hi_flags */
137 # define H_EOH		00001	/* this field terminates header */
138 # define H_RCPT		00002	/* contains recipient addresses */
139 # define H_DEFAULT	00004	/* if another value is found, drop this */
140 # define H_CHECK	00020	/* check h_mflags against m_flags */
141 # define H_ACHECK	00040	/* ditto, but always (not just default) */
142 # define H_FORCE	00100	/* force this field, even if default */
143 # define H_TRACE	00200	/* this field contains trace information */
144 # define H_FROM		00400	/* this is a from-type field */
145 /*
146 **  Envelope structure.
147 **	This structure defines the message itself.  There is usually
148 **	only one of these -- for the message that we originally read
149 **	and which is our primary interest -- but other envelopes can
150 **	be generated during processing.  For example, error messages
151 **	will have their own envelope.
152 */
153 
154 struct envelope
155 {
156 	HDR		*e_header;	/* head of header list */
157 	long		e_msgpriority;	/* adjusted priority of this message */
158 	time_t		e_ctime;	/* time message appeared in the queue */
159 	char		*e_to;		/* the target person */
160 	char		*e_receiptto;	/* return receipt address */
161 	ADDRESS		e_from;		/* the person it is from */
162 	char		**e_fromdomain;	/* the domain part of the sender */
163 	ADDRESS		*e_sendqueue;	/* list of message recipients */
164 	ADDRESS		*e_errorqueue;	/* the queue for error responses */
165 	long		e_msgsize;	/* size of the message in bytes */
166 	short		e_class;	/* msg class (priority, junk, etc.) */
167 	short		e_flags;	/* flags, see below */
168 	short		e_hopcount;	/* number of times processed */
169 	int		(*e_puthdr)();	/* function to put header of message */
170 	int		(*e_putbody)();	/* function to put body of message */
171 	struct envelope	*e_parent;	/* the message this one encloses */
172 	struct envelope *e_sibling;	/* the next envelope of interest */
173 	char		*e_df;		/* location of temp file */
174 	char		*e_id;		/* code for this entry in queue */
175 	char		*e_macro[128];	/* macro definitions */
176 };
177 
178 typedef struct envelope	ENVELOPE;
179 
180 /* values for e_flags */
181 #define EF_OLDSTYLE	000001		/* use spaces (not commas) in hdrs */
182 #define EF_INQUEUE	000002		/* this message is fully queued */
183 #define EF_TIMEOUT	000004		/* this message is too old */
184 #define EF_CLRQUEUE	000010		/* disk copy is no longer needed */
185 #define EF_SENDRECEIPT	000020		/* send a return receipt */
186 #define EF_FATALERRS	000040		/* fatal errors occured */
187 #define EF_KEEPQUEUE	000100		/* keep queue files always */
188 #define EF_RESPONSE	000200		/* this is an error or return receipt */
189 
190 EXTERN ENVELOPE	*CurEnv;	/* envelope currently being processed */
191 /*
192 **  Message priorities.
193 **	Priorities > 0 should be preemptive.
194 **
195 **	CurEnv->e_msgpriority is the number of bytes in the message adjusted
196 **	by the message priority and the amount of time the message
197 **	has been sitting around.  Each priority point is worth
198 **	WKPRIFACT bytes of message, and each time we reprocess a
199 **	message the size gets reduced by WKTIMEFACT.
200 **
201 **	The "class" is this number, unadjusted by the age or size of
202 **	this message.  Classes with negative representations will have
203 **	error messages thrown away if they are not local.
204 */
205 
206 struct priority
207 {
208 	char	*pri_name;	/* external name of priority */
209 	int	pri_val;	/* internal value for same */
210 };
211 
212 EXTERN struct priority	Priorities[MAXPRIORITIES];
213 EXTERN int		NumPriorities;	/* pointer into Priorities */
214 
215 # define WKPRIFACT	1800		/* bytes each pri point is worth */
216 # define WKTIMEFACT	400		/* bytes each time unit is worth */
217 /*
218 **  Rewrite rules.
219 */
220 
221 struct rewrite
222 {
223 	char	**r_lhs;	/* pattern match */
224 	char	**r_rhs;	/* substitution value */
225 	struct rewrite	*r_next;/* next in chain */
226 };
227 
228 EXTERN struct rewrite	*RewriteRules[MAXRWSETS];
229 
230 /*
231 **  Special characters in rewriting rules.
232 **	These are used internally only.
233 **	The COND* rules are actually used in macros rather than in
234 **		rewriting rules, but are given here because they
235 **		cannot conflict.
236 */
237 
238 /* left hand side items */
239 # define MATCHZANY	'\020'	/* match zero or more tokens */
240 # define MATCHANY	'\021'	/* match one or more tokens */
241 # define MATCHONE	'\022'	/* match exactly one token */
242 # define MATCHCLASS	'\023'	/* match one token in a class */
243 # define MATCHREPL	'\024'	/* replacement on RHS for above */
244 
245 /* right hand side items */
246 # define CANONNET	'\025'	/* canonical net, next token */
247 # define CANONHOST	'\026'	/* canonical host, next token */
248 # define CANONUSER	'\027'	/* canonical user, next N tokens */
249 # define CALLSUBR	'\030'	/* call another rewriting set */
250 
251 /* conditionals in macros */
252 # define CONDIF		'\031'	/* conditional if-then */
253 # define CONDELSE	'\032'	/* conditional else */
254 # define CONDFI		'\033'	/* conditional fi */
255 /*
256 **  Symbol table definitions
257 */
258 
259 struct symtab
260 {
261 	char		*s_name;	/* name to be entered */
262 	char		s_type;		/* general type (see below) */
263 	struct symtab	*s_next;	/* pointer to next in chain */
264 	union
265 	{
266 		long	sv_class;	/* bit-map of word classes */
267 		ADDRESS	*sv_addr;	/* pointer to address header */
268 		MAILER	*sv_mailer;	/* pointer to mailer */
269 		char	*sv_alias;	/* alias */
270 	}	s_value;
271 };
272 
273 typedef struct symtab	STAB;
274 
275 /* symbol types */
276 # define ST_UNDEF	0	/* undefined type */
277 # define ST_CLASS	1	/* class map */
278 # define ST_ADDRESS	2	/* an address in parsed format */
279 # define ST_MAILER	3	/* a mailer header */
280 # define ST_ALIAS	4	/* an alias */
281 
282 # define s_class	s_value.sv_class
283 # define s_address	s_value.sv_addr
284 # define s_mailer	s_value.sv_mailer
285 # define s_alias	s_value.sv_alias
286 
287 extern STAB	*stab();
288 
289 /* opcodes to stab */
290 # define ST_FIND	0	/* find entry */
291 # define ST_ENTER	1	/* enter if not there */
292 /*
293 **  STRUCT EVENT -- event queue.
294 **
295 **	Maintained in sorted order.
296 **
297 **	We store the pid of the process that set this event to insure
298 **	that when we fork we will not take events intended for the parent.
299 */
300 
301 struct event
302 {
303 	time_t		ev_time;	/* time of the function call */
304 	int		(*ev_func)();	/* function to call */
305 	int		ev_arg;		/* argument to ev_func */
306 	int		ev_pid;		/* pid that set this event */
307 	struct event	*ev_link;	/* link to next item */
308 };
309 
310 typedef struct event	EVENT;
311 
312 EXTERN EVENT	*EventQueue;		/* head of event queue */
313 /*
314 **  Operation, send, and error modes
315 **
316 **	The operation mode describes the basic operation of sendmail.
317 **	This can be set from the command line, and is "send mail" by
318 **	default.
319 **
320 **	The send mode tells how to send mail.  It can be set in the
321 **	configuration file.  It's setting determines how quickly the
322 **	mail will be delivered versus the load on your system.  If the
323 **	-v (verbose) flag is given, it will be forced to SM_DELIVER
324 **	mode.
325 **
326 **	The error mode tells how to return errors.
327 */
328 
329 EXTERN char	OpMode;		/* operation mode, see below */
330 
331 #define MD_DELIVER	'm'		/* be a mail sender */
332 #define MD_ARPAFTP	'a'		/* old-style arpanet protocols */
333 #define MD_SMTP		's'		/* run SMTP on standard input */
334 #define MD_DAEMON	'd'		/* run as a daemon */
335 #define MD_VERIFY	'v'		/* verify: don't collect or deliver */
336 #define MD_TEST		't'		/* test mode: resolve addrs only */
337 #define MD_INITALIAS	'i'		/* initialize alias database */
338 #define MD_PRINT	'p'		/* print the queue */
339 #define MD_FREEZE	'z'		/* freeze the configuration file */
340 
341 
342 EXTERN char	SendMode;	/* send mode, see below */
343 
344 #define SM_DELIVER	'i'		/* interactive delivery */
345 #define SM_QUICKD	'j'		/* deliver w/o queueing */
346 #define SM_FORK		'b'		/* deliver in background */
347 #define SM_QUEUE	'q'		/* queue, don't deliver */
348 #define SM_VERIFY	'v'		/* verify only (used internally) */
349 
350 
351 EXTERN char	ErrorMode;	/* error mode, see below */
352 
353 #define EM_PRINT	'p'		/* print errors */
354 #define EM_MAIL		'm'		/* mail back errors */
355 #define EM_WRITE	'w'		/* write back errors */
356 #define EM_BERKNET	'e'		/* special berknet processing */
357 #define EM_QUIET	'q'		/* don't print messages (stat only) */
358 /*
359 **  Global variables.
360 */
361 
362 EXTERN bool	FromFlag;	/* if set, "From" person is explicit */
363 EXTERN bool	NoAlias;	/* if set, don't do any aliasing */
364 EXTERN bool	ForceMail;	/* if set, mail even if already got a copy */
365 EXTERN bool	MeToo;		/* send to the sender also */
366 EXTERN bool	IgnrDot;	/* don't let dot end messages */
367 EXTERN bool	SaveFrom;	/* save leading "From" lines */
368 EXTERN bool	Verbose;	/* set if blow-by-blow desired */
369 EXTERN bool	GrabTo;		/* if set, get recipients from msg */
370 EXTERN bool	NoReturn;	/* don't return letter to sender */
371 EXTERN bool	SuprErrs;	/* set if we are suppressing errors */
372 EXTERN bool	QueueRun;	/* currently running message from the queue */
373 EXTERN bool	HoldErrs;	/* only output errors to transcript */
374 EXTERN bool	NoConnect;	/* don't connect to non-local mailers */
375 EXTERN bool	SuperSafe;	/* be extra careful, even if expensive */
376 EXTERN bool	SafeAlias;	/* alias file must have "@:@" to be complete */
377 EXTERN bool	AutoRebuild;	/* auto-rebuild the alias database as needed */
378 EXTERN time_t	TimeOut;	/* time until timeout */
379 EXTERN FILE	*InChannel;	/* input connection */
380 EXTERN FILE	*OutChannel;	/* output connection */
381 EXTERN FILE	*TempFile;	/* mail temp file */
382 EXTERN FILE	*Xscript;	/* mail transcript file */
383 EXTERN int	RealUid;	/* when Daemon, real uid of caller */
384 EXTERN int	RealGid;	/* when Daemon, real gid of caller */
385 EXTERN int	DefUid;		/* default uid to run as */
386 EXTERN int	DefGid;		/* default gid to run as */
387 EXTERN int	OldUmask;	/* umask when sendmail starts up */
388 EXTERN int	Errors;		/* set if errors (local to single pass) */
389 EXTERN int	ExitStat;	/* exit status code */
390 EXTERN int	AliasLevel;	/* depth of aliasing */
391 EXTERN int	MotherPid;	/* proc id of parent process */
392 EXTERN int	LineNumber;	/* line number in current input */
393 EXTERN int	ReadTimeout;	/* timeout on reads */
394 EXTERN int	LogLevel;	/* level of logging to perform */
395 EXTERN int	FileMode;	/* mode on files */
396 EXTERN time_t	QueueIntvl;	/* intervals between running the queue */
397 EXTERN char	*HostName;	/* name of this host for SMTP messages */
398 EXTERN char	*AliasFile;	/* location of alias file */
399 EXTERN char	*HelpFile;	/* location of SMTP help file */
400 EXTERN char	*StatFile;	/* location of statistics summary */
401 EXTERN char	*QueueDir;	/* location of queue directory */
402 EXTERN char	*FileName;	/* name to print on error messages */
403 EXTERN char	*TrustedUsers[MAXTRUST+1];	/* list of trusted users */
404 EXTERN jmp_buf	TopFrame;	/* branch-to-top-of-loop-on-error frame */
405 EXTERN bool	QuickAbort;	/*  .... but only if we want a quick abort */
406 extern char	*ConfFile;	/* location of configuration file [conf.c] */
407 extern char	*FreezeFile;	/* location of frozen memory image [conf.c] */
408 extern char	Arpa_Info[];	/* the reply code for Arpanet info [conf.c] */
409 extern char	SpaceSub;	/* substitution for <lwsp> [conf.c] */
410 /*
411 **  Trace information
412 */
413 
414 /* trace vector and macros for debugging flags */
415 EXTERN u_char	tTdvect[100];
416 # define tTd(flag, level)	(tTdvect[flag] >= level)
417 # define tTdlevel(flag)		(tTdvect[flag])
418 /*
419 **  Miscellaneous information.
420 */
421 
422 # include	<sysexits.h>
423 
424 # define setstat(s)		{ if (ExitStat == EX_OK) ExitStat = s; }
425 
426 
427 /* useful functions */
428 
429 extern char	*newstr();
430 extern ADDRESS	*parse();
431 extern char	*xalloc();
432 extern bool	sameaddr();
433 extern FILE	*dfopen();
434 extern EVENT	*setevent();
435 extern char	*sfgets();
436 extern char	*queuename();
437 extern time_t	curtime();
438