1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*
* XMail by Davide Libenzi ( Intranet and Internet mail server )
* Copyright (C) 1999,..,2004 Davide Libenzi
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Davide Libenzi <davidel@xmailserver.org>
*
*/
#include "SysInclude.h"
#include "SysDep.h"
#include "SvrDefines.h"
#include "SList.h"
#include "ShBlocks.h"
#include "UsrUtils.h"
#include "SvrUtils.h"
#include "MessQueue.h"
#include "SMAILUtils.h"
#include "QueueUtils.h"
#include "AppDefines.h"
#include "MailSvr.h"
#define RUNNING_PIDS_DIR "/var/run"
#define DEVNULL "/dev/null"
#if !defined(NOFILE)
#define NOFILE 64
#endif // #if !defined(NOFILE)
#define XMAIL_DEBUG_OPTION "-Md"
#define XMAIL_PIDDIR_ENV "XMAIL_PID_DIR"
static int MnEventLog(char const *pszFormat, ...);
static char const *MnGetPIDDir(void);
static int MnSavePID(char const *pszPidFile);
static int MnRemovePID(char const *pszPidFile);
static void MnSIGCLD(int iSignal);
static void MnSetupStdHandles(void);
static int MnDaemonBootStrap(void);
static int MnIsDebugStartup(int iArgCount, char *pszArgs[]);
static int MnDaemonStartup(int iArgCount, char *pszArgs[]);
static int MnEventLog(char const *pszFormat, ...)
{
openlog(APP_NAME_STR, LOG_PID, LOG_DAEMON);
va_list Args;
va_start(Args, pszFormat);
char szBuffer[2048] = "";
vsnprintf(szBuffer, sizeof(szBuffer) - 1, pszFormat, Args);
syslog(LOG_ERR, "%s", szBuffer);
va_end(Args);
closelog();
return (0);
}
static char const *MnGetPIDDir(void)
{
char const *pszPIDDir = getenv(XMAIL_PIDDIR_ENV);
return ((pszPIDDir != NULL) ? pszPIDDir: RUNNING_PIDS_DIR);
}
static int MnSavePID(char const *pszPidFile)
{
char szPidFile[SYS_MAX_PATH] = "";
snprintf(szPidFile, sizeof(szPidFile) - 1, "%s/%s.pid", MnGetPIDDir(), pszPidFile);
FILE *pFile = fopen(szPidFile, "w");
if (pFile == NULL) {
perror(szPidFile);
return (-errno);
}
fprintf(pFile, "%u", (unsigned int) getpid());
fclose(pFile);
return (0);
}
static int MnRemovePID(char const *pszPidFile)
{
char szPidFile[SYS_MAX_PATH] = "";
snprintf(szPidFile, sizeof(szPidFile) - 1, "%s/%s.pid", MnGetPIDDir(), pszPidFile);
if (unlink(szPidFile) != 0) {
perror(szPidFile);
return (-errno);
}
return (0);
}
static void MnSIGCLD(int iSignal)
{
int iExitStatus;
int iDeadPID;
while ((iDeadPID = wait3(&iExitStatus, WNOHANG, (struct rusage *) NULL)) > 0) {
}
signal(iSignal, MnSIGCLD);
}
static void MnSetupStdHandles(void)
{
int iFD = open(DEVNULL, O_RDWR, 0);
if (iFD == -1) {
MnEventLog("Cannot open file %s : %s", DEVNULL, strerror(errno));
exit(errno);
}
if ((dup2(iFD, 0) == -1) || (dup2(iFD, 1) == -1) || (dup2(iFD, 2) == -1)) {
MnEventLog("File descriptor duplication error : %s", strerror(errno));
exit(errno);
}
close(iFD);
}
static int MnDaemonBootStrap(void)
{
///////////////////////////////////////////////////////////////////////////////
// This code is inspired from the code of the great Richard Stevens books.
// May You RIP in programmers paradise great Richard.
// I suggest You to buy all his collection, soon !
///////////////////////////////////////////////////////////////////////////////
#ifdef SIGTTOU
signal(SIGTTOU, SIG_IGN);
#endif
#ifdef SIGTTIN
signal(SIGTTIN, SIG_IGN);
#endif
#ifdef SIGTSTP
signal(SIGTSTP, SIG_IGN);
#endif
///////////////////////////////////////////////////////////////////////////////
// 1st fork
///////////////////////////////////////////////////////////////////////////////
int iChildPID = fork();
if (iChildPID < 0) {
MnEventLog("Cannot fork : %s", strerror(errno));
exit(errno);
} else if (iChildPID > 0)
exit(0);
///////////////////////////////////////////////////////////////////////////////
// Disassociate from controlling terminal and process group. Ensure the process
// can't reacquire a new controlling terminal.
///////////////////////////////////////////////////////////////////////////////
if (setpgrp(0, getpid()) == -1) {
MnEventLog("Can't change process group : %s", strerror(errno));
exit(errno);
}
///////////////////////////////////////////////////////////////////////////////
// Lose controlling tty
///////////////////////////////////////////////////////////////////////////////
int iFdTty = open("/dev/tty", O_RDWR);
if (iFdTty >= 0) {
ioctl(iFdTty, TIOCNOTTY, (char *) NULL);
close(iFdTty);
}
///////////////////////////////////////////////////////////////////////////////
// Close open file descriptors
///////////////////////////////////////////////////////////////////////////////
for (int fd = 0; fd < NOFILE; fd++)
close(fd);
///////////////////////////////////////////////////////////////////////////////
// Set std handles
///////////////////////////////////////////////////////////////////////////////
MnSetupStdHandles();
///////////////////////////////////////////////////////////////////////////////
// Probably got set to EBADF from a close
///////////////////////////////////////////////////////////////////////////////
errno = 0;
///////////////////////////////////////////////////////////////////////////////
// Move the current directory to root, to make sure we aren't on a mounted
// filesystem.
///////////////////////////////////////////////////////////////////////////////
chdir("/");
///////////////////////////////////////////////////////////////////////////////
// Clear any inherited file mode creation mask.
///////////////////////////////////////////////////////////////////////////////
umask(0);
///////////////////////////////////////////////////////////////////////////////
// Ignore childs dead.
///////////////////////////////////////////////////////////////////////////////
signal(SIGCHLD, MnSIGCLD);
return (0);
}
static int MnIsDebugStartup(int iArgCount, char *pszArgs[])
{
for (int ii = 0; ii < iArgCount; ii++)
if (strcmp(pszArgs[ii], XMAIL_DEBUG_OPTION) == 0)
return (1);
return (0);
}
static int MnDaemonStartup(int iArgCount, char *pszArgs[])
{
///////////////////////////////////////////////////////////////////////////////
// Daemon bootstrap code if We're not in debug mode
///////////////////////////////////////////////////////////////////////////////
if (!MnIsDebugStartup(iArgCount, pszArgs))
MnDaemonBootStrap();
///////////////////////////////////////////////////////////////////////////////
// Extract PID file name
///////////////////////////////////////////////////////////////////////////////
char const *pszPidFile = strrchr(pszArgs[0], '/');
pszPidFile = (pszPidFile != NULL) ? (pszPidFile + 1): pszArgs[0];
///////////////////////////////////////////////////////////////////////////////
// Create PID file
///////////////////////////////////////////////////////////////////////////////
MnSavePID(pszPidFile);
int iServerResult = SvrMain(iArgCount, pszArgs);
///////////////////////////////////////////////////////////////////////////////
// Remove PID file
///////////////////////////////////////////////////////////////////////////////
MnRemovePID(pszPidFile);
return (iServerResult);
}
int main(int iArgCount, char *pszArgs[])
{
return (MnDaemonStartup(iArgCount, pszArgs));
}
|