7 /* Postfix master - data structures and prototypes
14 * Server processes that provide the same service share a common "listen"
15 * socket to accept connection requests, and share a common pipe to the
16 * master process to send status reports. Server processes die voluntarily
17 * when idle for a configurable amount of time, or after servicing a
18 * configurable number of requests; the master process spawns new processes
19 * on demand up to a configurable concurrency limit and/or periodically.
21 * The canonical service name is what we use internally, so that we correctly
22 * handle a request to "reload" after someone changes "smtp" into "25".
24 * We use the external service name from master.cf when reporting problems, so
25 * that the user can figure out what we are talking about. Of course we also
26 * include the canonical service name so that the UNIX-domain smtp service
27 * can be distinguished from the Internet smtp service.
29 typedef struct MASTER_SERV
{
30 int flags
; /* status, features, etc. */
31 char *ext_name
; /* service endpoint name (master.cf) */
32 char *name
; /* service endpoint name (canonical) */
33 int type
; /* UNIX-domain, INET, etc. */
34 time_t busy_warn_time
; /* limit "all servers busy" warning */
35 int wakeup_time
; /* wakeup interval */
36 int *listen_fd
; /* incoming requests */
37 int listen_fd_count
; /* nr of descriptors */
40 char *port
; /* inet listen port */
41 struct INET_ADDR_LIST
*addr
;/* inet listen address */
43 #define MASTER_INET_ADDRLIST(s) ((s)->endpoint.inet_ep.addr)
44 #define MASTER_INET_PORT(s) ((s)->endpoint.inet_ep.port)
46 int max_proc
; /* upper bound on # processes */
47 char *path
; /* command pathname */
48 struct ARGV
*args
; /* argument vector */
49 char *stress_param_val
; /* stress value: "yes" or empty */
50 time_t stress_expire_time
; /* stress pulse stretcher */
51 int avail_proc
; /* idle processes */
52 int total_proc
; /* number of processes */
53 int throttle_delay
; /* failure recovery parameter */
54 int status_fd
[2]; /* child status reports */
55 struct BINHASH
*children
; /* linkage */
56 struct MASTER_SERV
*next
; /* linkage */
60 * Per-service flag bits. We assume trouble when a child process terminates
61 * before completing its first request: either the program is defective,
62 * some configuration is wrong, or the system is out of resources.
64 #define MASTER_FLAG_THROTTLE (1<<0) /* we're having trouble */
65 #define MASTER_FLAG_MARK (1<<1) /* garbage collection support */
66 #define MASTER_FLAG_CONDWAKE (1<<2) /* wake up if actually used */
67 #define MASTER_FLAG_INETHOST (1<<3) /* endpoint name specifies host */
68 #define MASTER_FLAG_LOCAL_ONLY (1<<4) /* no remote clients */
70 #define MASTER_THROTTLED(f) ((f)->flags & MASTER_FLAG_THROTTLE)
72 #define MASTER_LIMIT_OK(limit, count) ((limit) == 0 || ((count) < (limit)))
77 #define MASTER_SERV_TYPE_UNIX 1 /* AF_UNIX domain socket */
78 #define MASTER_SERV_TYPE_INET 2 /* AF_INET domain socket */
79 #define MASTER_SERV_TYPE_FIFO 3 /* fifo (named pipe) */
80 #define MASTER_SERV_TYPE_PASS 4 /* AF_UNIX domain socket */
83 * Default process management policy values. This is only the bare minimum.
84 * Most policy management is delegated to child processes. The process
85 * manager runs at high privilege level and has to be kept simple.
87 #define MASTER_DEF_MIN_IDLE 1 /* preferred # of idle processes */
90 * Structure of child process.
92 typedef int MASTER_PID
; /* pid is key into binhash table */
94 typedef struct MASTER_PROC
{
95 MASTER_PID pid
; /* child process id */
96 unsigned gen
; /* child generation number */
97 int avail
; /* availability */
98 MASTER_SERV
*serv
; /* parent linkage */
99 int use_count
; /* number of service requests */
103 * Other manifest constants.
105 #define MASTER_BUF_LEN 2048 /* logical config line length */
110 extern int master_detach
;
115 extern void fset_master_ent(char *);
116 extern void set_master_ent(void);
117 extern void end_master_ent(void);
118 extern void print_master_ent(MASTER_SERV
*);
119 extern MASTER_SERV
*get_master_ent(void);
120 extern void free_master_ent(MASTER_SERV
*);
125 extern void master_config(void);
126 extern void master_refresh(void);
131 extern void master_vars_init(void);
136 extern MASTER_SERV
*master_head
;
137 extern void master_start_service(MASTER_SERV
*);
138 extern void master_stop_service(MASTER_SERV
*);
139 extern void master_restart_service(MASTER_SERV
*);
144 extern int master_gotsighup
;
145 extern int master_gotsigchld
;
146 extern void master_sigsetup(void);
151 extern void master_status_init(MASTER_SERV
*);
152 extern void master_status_cleanup(MASTER_SERV
*);
157 extern void master_wakeup_init(MASTER_SERV
*);
158 extern void master_wakeup_cleanup(MASTER_SERV
*);
164 extern void master_listen_init(MASTER_SERV
*);
165 extern void master_listen_cleanup(MASTER_SERV
*);
170 extern void master_avail_listen(MASTER_SERV
*);
171 extern void master_avail_cleanup(MASTER_SERV
*);
172 extern void master_avail_more(MASTER_SERV
*, MASTER_PROC
*);
173 extern void master_avail_less(MASTER_SERV
*, MASTER_PROC
*);
178 extern struct BINHASH
*master_child_table
;
179 extern void master_spawn(MASTER_SERV
*);
180 extern void master_reap_child(void);
181 extern void master_delete_children(MASTER_SERV
*);
186 extern void master_flow_init(void);
187 extern int master_flow_pipe
[2];
192 * Support to warn about main.cf parameters that can only be initialized but
193 * not updated, and to initialize or update data structures that derive
194 * values from main.cf parameters.
197 const char *name
; /* parameter name */
198 char **value
; /* current main.cf value */
199 char **backup
; /* actual value that is being used */
200 int flags
; /* see below */
201 void (*notify
) (void); /* init or update data structure */
205 const char *name
; /* parameter name */
206 int *value
; /* current main.cf value */
207 int backup
; /* actual value that is being used */
208 int flags
; /* see below */
209 void (*notify
) (void); /* init or update data structure */
212 #define MASTER_WATCH_FLAG_UPDATABLE (1<<0) /* support update after init */
213 #define MASTER_WATCH_FLAG_ISSET (1<<1) /* backup is initialized */
215 extern void master_str_watch(const MASTER_STR_WATCH
*);
216 extern void master_int_watch(MASTER_INT_WATCH
*);
224 /* The Secure Mailer license must be distributed with this software.
227 /* IBM T.J. Watson Research
229 /* Yorktown Heights, NY 10598, USA