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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/*
* 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 "ShBlocks.h"
#include "ResLocks.h"
#include "StrUtils.h"
#include "BuffSock.h"
#include "SList.h"
#include "MailConfig.h"
#include "MessQueue.h"
#include "MailSvr.h"
#include "MiscUtils.h"
#include "SvrUtils.h"
#include "DNS.h"
#include "DNSCache.h"
#define DNS_CACHE_DIRCTORY "dnscache"
#define DNS_MX_CACHE_DIRCTORY "mx"
#define DNS_NS_CACHE_DIRCTORY "ns"
#define DNS_CACHE_LINE_MAX 2048
static int CDNS_CleanupPath(char const *pszCachePath);
static char *CDNS_GetCacheFilePath(char const *pszDomain, char const *pszSubDir,
char *pszFilePath);
static int CDNS_MxLoad(char const *pszDomain, char *&pszMXDomains);
static int CDNS_MxSave(char const *pszDomain, char const *pszMXDomains, SYS_UINT32 TTL);
static int iNumCacheDirs = DNS_HASH_NUM_DIRS;
static int CDNS_CleanupPath(char const *pszCachePath)
{
return (0);
}
int CDNS_Initialize(int iCacheDirCount)
{
while (!IsPrimeNumber(iCacheDirCount))
++iCacheDirCount;
iNumCacheDirs = iCacheDirCount;
///////////////////////////////////////////////////////////////////////////////
// Setup cache subdirectories
///////////////////////////////////////////////////////////////////////////////
char szCacheBasePath[SYS_MAX_PATH] = "";
CfgGetRootPath(szCacheBasePath, sizeof(szCacheBasePath));
StrNCat(szCacheBasePath, DNS_CACHE_DIRCTORY, sizeof(szCacheBasePath));
AppendSlash(szCacheBasePath);
for (int ii = 0; ii < iNumCacheDirs; ii++) {
///////////////////////////////////////////////////////////////////////////////
// Setup MX cache subdirectories
///////////////////////////////////////////////////////////////////////////////
char szCachePath[SYS_MAX_PATH] = "";
sprintf(szCachePath, "%s%s" SYS_SLASH_STR "%d",
szCacheBasePath, DNS_MX_CACHE_DIRCTORY, ii);
if (SysExistDir(szCachePath)) {
if (CDNS_CleanupPath(szCachePath) < 0)
return (ErrGetErrorCode());
} else {
if (SysMakeDir(szCachePath) < 0)
return (ErrGetErrorCode());
}
///////////////////////////////////////////////////////////////////////////////
// Setup NS cache subdirectories
///////////////////////////////////////////////////////////////////////////////
}
return (0);
}
static char *CDNS_GetCacheFilePath(char const *pszDomain, char const *pszSubDir,
char *pszFilePath)
{
char szRootPath[SYS_MAX_PATH] = "";
CfgGetRootPath(szRootPath, sizeof(szRootPath));
///////////////////////////////////////////////////////////////////////////////
// Calculate domain string hash
///////////////////////////////////////////////////////////////////////////////
char *pszLwrDomain = SysStrDup(pszDomain);
if (pszLwrDomain == NULL)
return (NULL);
StrLower(pszLwrDomain);
SYS_UINT32 uStringHash = MscHashString(pszLwrDomain, strlen(pszLwrDomain));
///////////////////////////////////////////////////////////////////////////////
// Build cache file path
///////////////////////////////////////////////////////////////////////////////
SysSNPrintf(pszFilePath, SYS_MAX_PATH - 1,
"%s%s" SYS_SLASH_STR "%s" SYS_SLASH_STR "%u" SYS_SLASH_STR "%s", szRootPath,
DNS_CACHE_DIRCTORY, pszSubDir, (unsigned int) (uStringHash % iNumCacheDirs),
pszLwrDomain);
SysFree(pszLwrDomain);
return (pszFilePath);
}
static int CDNS_MxLoad(char const *pszDomain, char *&pszMXDomains)
{
///////////////////////////////////////////////////////////////////////////////
// Build cached file path
///////////////////////////////////////////////////////////////////////////////
char szFilePath[SYS_MAX_PATH] = "";
if (CDNS_GetCacheFilePath(pszDomain, DNS_MX_CACHE_DIRCTORY, szFilePath) == NULL)
return (ErrGetErrorCode());
///////////////////////////////////////////////////////////////////////////////
// Try to get file infos
///////////////////////////////////////////////////////////////////////////////
SYS_FILE_INFO FI;
if (SysGetFileInfo(szFilePath, FI) < 0)
return (ErrGetErrorCode());
char szResLock[SYS_MAX_PATH] = "";
RLCK_HANDLE hResLock = RLckLockSH(CfgGetBasedPath(szFilePath, szResLock,
sizeof(szResLock)));
if (hResLock == INVALID_RLCK_HANDLE)
return (ErrGetErrorCode());
FILE *pCacheFile = fopen(szFilePath, "rt");
if (pCacheFile == NULL) {
RLckUnlockSH(hResLock);
ErrSetErrorCode(ERR_FILE_OPEN);
return (ERR_FILE_OPEN);
}
///////////////////////////////////////////////////////////////////////////////
// Read TTL line ( 1st ) and check if it's time expired
///////////////////////////////////////////////////////////////////////////////
char szCacheLine[DNS_CACHE_LINE_MAX] = "";
if (MscFGets(szCacheLine, sizeof(szCacheLine) - 1, pCacheFile) == NULL) {
fclose(pCacheFile);
RLckUnlockSH(hResLock);
ErrSetErrorCode(ERR_DNS_CACHE_FILE_FMT);
return (ERR_DNS_CACHE_FILE_FMT);
}
unsigned long ulCurTime = (unsigned long) time(NULL);
unsigned long ulTTL = (unsigned long) atol(szCacheLine);
if (ulCurTime > ((unsigned long) FI.tMod + ulTTL)) {
fclose(pCacheFile);
RLckUnlockSH(hResLock);
ErrSetErrorCode(ERR_DNS_CACHE_FILE_EXPIRED);
return (ERR_DNS_CACHE_FILE_EXPIRED);
}
///////////////////////////////////////////////////////////////////////////////
// Read MX domains line ( 2nd )
///////////////////////////////////////////////////////////////////////////////
if (MscFGets(szCacheLine, sizeof(szCacheLine) - 1, pCacheFile) == NULL) {
fclose(pCacheFile);
RLckUnlockSH(hResLock);
ErrSetErrorCode(ERR_DNS_CACHE_FILE_FMT);
return (ERR_DNS_CACHE_FILE_FMT);
}
if ((pszMXDomains = SysStrDup(szCacheLine)) == NULL) {
ErrorPush();
fclose(pCacheFile);
RLckUnlockSH(hResLock);
return (ErrorPop());
}
fclose(pCacheFile);
RLckUnlockSH(hResLock);
return (0);
}
static int CDNS_MxSave(char const *pszDomain, char const *pszMXDomains, SYS_UINT32 TTL)
{
///////////////////////////////////////////////////////////////////////////////
// Build cached file path
///////////////////////////////////////////////////////////////////////////////
char szFilePath[SYS_MAX_PATH] = "";
if (CDNS_GetCacheFilePath(pszDomain, DNS_MX_CACHE_DIRCTORY, szFilePath) == NULL)
return (ErrGetErrorCode());
char szResLock[SYS_MAX_PATH] = "";
RLCK_HANDLE hResLock = RLckLockEX(CfgGetBasedPath(szFilePath, szResLock,
sizeof(szResLock)));
if (hResLock == INVALID_RLCK_HANDLE)
return (ErrGetErrorCode());
FILE *pCacheFile = fopen(szFilePath, "wt");
if (pCacheFile == NULL) {
RLckUnlockEX(hResLock);
ErrSetErrorCode(ERR_FILE_CREATE, szFilePath);
return (ERR_FILE_CREATE);
}
///////////////////////////////////////////////////////////////////////////////
// 1st line ( TTL )
///////////////////////////////////////////////////////////////////////////////
fprintf(pCacheFile, "%lu\n", (unsigned long) TTL);
///////////////////////////////////////////////////////////////////////////////
// 2nd line ( MX domains )
///////////////////////////////////////////////////////////////////////////////
fprintf(pCacheFile, "%s\n", pszMXDomains);
fclose(pCacheFile);
RLckUnlockEX(hResLock);
return (0);
}
int CDNS_GetDomainMX(char const *pszDomain, char *&pszMXDomains, char const *pszSmartDNS)
{
///////////////////////////////////////////////////////////////////////////////
// Try to get the cached copy
///////////////////////////////////////////////////////////////////////////////
if (CDNS_MxLoad(pszDomain, pszMXDomains) == 0)
return (0);
///////////////////////////////////////////////////////////////////////////////
// If the list of smart DNS hosts is NULL, do a full DNS query
///////////////////////////////////////////////////////////////////////////////
SYS_UINT32 TTL = 0;
if (pszSmartDNS == NULL) {
char szCName[MAX_HOST_NAME] = "";
int iResult = DNS_GetDomainMX(pszDomain, pszMXDomains,
szCName, &TTL);
if (iResult < 0) {
if (iResult != ERR_DNS_IS_CNAME)
return (ErrGetErrorCode());
if (DNS_GetDomainMX(szCName, pszMXDomains, NULL, &TTL) < 0)
return (ErrGetErrorCode());
}
return (CDNS_MxSave(pszDomain, pszMXDomains, TTL));
}
///////////////////////////////////////////////////////////////////////////////
// Parse the list of smart DNS hosts
///////////////////////////////////////////////////////////////////////////////
char **ppszTokens = StrTokenize(pszSmartDNS, ",:");
if (ppszTokens == NULL)
return (ErrGetErrorCode());
int iTokensCount = StrStringsCount(ppszTokens);
if (iTokensCount < 2) {
StrFreeStrings(ppszTokens);
ErrSetErrorCode(ERR_BAD_SMARTDNSHOST_SYNTAX);
return (ERR_BAD_SMARTDNSHOST_SYNTAX);
}
///////////////////////////////////////////////////////////////////////////////
// Walk through the list of smart DNS hosts to find a DNS response
///////////////////////////////////////////////////////////////////////////////
for (int ii = 0; ii < (iTokensCount - 1); ii += 2) {
int iQuerySockType =
(stricmp(ppszTokens[ii + 1], "tcp") == 0) ? DNS_QUERY_TCP : DNS_QUERY_UDP;
if (DNS_GetDomainMXDirect(ppszTokens[ii], pszDomain, iQuerySockType,
pszMXDomains, &TTL) == 0) {
StrFreeStrings(ppszTokens);
return (CDNS_MxSave(pszDomain, pszMXDomains, TTL));
}
}
StrFreeStrings(ppszTokens);
return (ErrGetErrorCode());
}
|