Import sendmail 8.13.4 into a new contrib directory as the first step
[dragonfly.git] / contrib / sendmail-8.13.4 / libmilter / main.c
blob8692127b834a914cfa06ba4b1837e2f179e5de2a
1 /*
2 * Copyright (c) 1999-2003 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
9 */
11 #include <sm/gen.h>
12 SM_RCSID("@(#)$Id: main.c,v 8.79 2003/10/20 22:25:09 ca Exp $")
14 #define _DEFINE 1
15 #include "libmilter.h"
16 #include <fcntl.h>
17 #include <sys/stat.h>
20 static smfiDesc_ptr smfi = NULL;
23 ** SMFI_REGISTER -- register a filter description
25 ** Parameters:
26 ** smfilter -- description of filter to register
28 ** Returns:
29 ** MI_SUCCESS/MI_FAILURE
32 int
33 smfi_register(smfilter)
34 smfiDesc_str smfilter;
36 size_t len;
38 if (smfi == NULL)
40 smfi = (smfiDesc_ptr) malloc(sizeof *smfi);
41 if (smfi == NULL)
42 return MI_FAILURE;
44 (void) memcpy(smfi, &smfilter, sizeof *smfi);
45 if (smfilter.xxfi_name == NULL)
46 smfilter.xxfi_name = "Unknown";
48 len = strlen(smfilter.xxfi_name) + 1;
49 smfi->xxfi_name = (char *) malloc(len);
50 if (smfi->xxfi_name == NULL)
51 return MI_FAILURE;
52 (void) sm_strlcpy(smfi->xxfi_name, smfilter.xxfi_name, len);
54 /* compare milter version with hard coded version */
55 if (smfi->xxfi_version != SMFI_VERSION)
57 /* hard failure for now! */
58 smi_log(SMI_LOG_ERR,
59 "%s: smfi_register: version mismatch application: %d != milter: %d",
60 smfi->xxfi_name, smfi->xxfi_version,
61 (int) SMFI_VERSION);
63 /* XXX how about smfi? */
64 free(smfi->xxfi_name);
65 return MI_FAILURE;
68 return MI_SUCCESS;
72 ** SMFI_STOP -- stop milter
74 ** Parameters:
75 ** none.
77 ** Returns:
78 ** success.
81 int
82 smfi_stop()
84 mi_stop_milters(MILTER_STOP);
85 return MI_SUCCESS;
89 ** Default values for some variables.
90 ** Most of these can be changed with the functions below.
93 static int dbg = 0;
94 static char *conn = NULL;
95 static int timeout = MI_TIMEOUT;
96 static int backlog = MI_SOMAXCONN;
99 ** SMFI_OPENSOCKET -- try the socket setup to make sure we'll be
100 ** able to start up
102 ** Parameters:
103 ** rmsocket -- if true, instructs libmilter to attempt
104 ** to remove the socket before creating it;
105 ** only applies for "local:" or "unix:" sockets
107 ** Return:
108 ** MI_SUCCESS/MI_FAILURE
112 smfi_opensocket(rmsocket)
113 bool rmsocket;
115 if (smfi == NULL || conn == NULL)
116 return MI_FAILURE;
118 return mi_opensocket(conn, backlog, dbg, rmsocket, smfi);
122 ** SMFI_SETDBG -- set debug level.
124 ** Parameters:
125 ** odbg -- new debug level.
127 ** Returns:
128 ** MI_SUCCESS
132 smfi_setdbg(odbg)
133 int odbg;
135 dbg = odbg;
136 return MI_SUCCESS;
140 ** SMFI_SETTIMEOUT -- set timeout (for read/write).
142 ** Parameters:
143 ** otimeout -- new timeout.
145 ** Returns:
146 ** MI_SUCCESS
150 smfi_settimeout(otimeout)
151 int otimeout;
153 timeout = otimeout;
154 return MI_SUCCESS;
158 ** SMFI_SETCONN -- set connection information (socket description)
160 ** Parameters:
161 ** oconn -- new connection information.
163 ** Returns:
164 ** MI_SUCCESS/MI_FAILURE
168 smfi_setconn(oconn)
169 char *oconn;
171 size_t l;
173 if (oconn == NULL || *oconn == '\0')
174 return MI_FAILURE;
175 l = strlen(oconn) + 1;
176 if ((conn = (char *) malloc(l)) == NULL)
177 return MI_FAILURE;
178 if (sm_strlcpy(conn, oconn, l) >= l)
179 return MI_FAILURE;
180 return MI_SUCCESS;
184 ** SMFI_SETBACKLOG -- set backlog
186 ** Parameters:
187 ** obacklog -- new backlog.
189 ** Returns:
190 ** MI_SUCCESS/MI_FAILURE
194 smfi_setbacklog(obacklog)
195 int obacklog;
197 if (obacklog <= 0)
198 return MI_FAILURE;
199 backlog = obacklog;
200 return MI_SUCCESS;
205 ** SMFI_MAIN -- setup milter connnection and start listener.
207 ** Parameters:
208 ** none.
210 ** Returns:
211 ** MI_SUCCESS/MI_FAILURE
215 smfi_main()
217 int r;
219 (void) signal(SIGPIPE, SIG_IGN);
220 if (conn == NULL)
222 smi_log(SMI_LOG_FATAL, "%s: missing connection information",
223 smfi->xxfi_name);
224 return MI_FAILURE;
227 (void) atexit(mi_clean_signals);
228 if (mi_control_startup(smfi->xxfi_name) != MI_SUCCESS)
230 smi_log(SMI_LOG_FATAL,
231 "%s: Couldn't start signal thread",
232 smfi->xxfi_name);
233 return MI_FAILURE;
235 r = MI_SUCCESS;
237 /* Startup the listener */
238 if (mi_listener(conn, dbg, smfi, timeout, backlog) != MI_SUCCESS)
239 r = MI_FAILURE;
241 return r;