DynDNS.cpp
上传用户:woshihumen
上传日期:2013-07-18
资源大小:484k
文件大小:5k
源码类别:

Email服务器

开发平台:

Visual C++

  1. /*
  2.  *  XMail by Davide Libenzi ( Intranet and Internet mail server )
  3.  *  Copyright (C) 1999,..,2004  Davide Libenzi
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  *
  19.  *  Davide Libenzi <davidel@xmailserver.org>
  20.  *
  21.  */
  22. #include "SysInclude.h"
  23. #include "SysDep.h"
  24. #include "SvrDefines.h"
  25. #include "BuffSock.h"
  26. #include "MiscUtils.h"
  27. #include "StrUtils.h"
  28. #include "SvrUtils.h"
  29. #include "Base64Enc.h"
  30. #include "DynDNS.h"
  31. #define DYNDNS_REG_TIMEOUT          30
  32. int DynDnsSetup(SVRCFG_HANDLE hSvrConfig)
  33. {
  34. bool bReleaseHandle = false;
  35. if (hSvrConfig == INVALID_SVRCFG_HANDLE) {
  36. if ((hSvrConfig = SvrGetConfigHandle()) == INVALID_SVRCFG_HANDLE)
  37. return (ErrGetErrorCode());
  38. bReleaseHandle = true;
  39. }
  40. char *pszDynDnsCfg = SvrGetConfigVar(hSvrConfig, "DynDnsSetup");
  41. if (pszDynDnsCfg != NULL) {
  42. char **ppszTokens = StrTokenize(pszDynDnsCfg, ", ");
  43. if (ppszTokens == NULL) {
  44. ErrorPush();
  45. SysFree(pszDynDnsCfg);
  46. if (bReleaseHandle)
  47. SvrReleaseConfigHandle(hSvrConfig);
  48. return (ErrorPop());
  49. }
  50. SysFree(pszDynDnsCfg);
  51. int iTokensCount = StrStringsCount(ppszTokens);
  52. if (iTokensCount < 3) {
  53. StrFreeStrings(ppszTokens);
  54. if (bReleaseHandle)
  55. SvrReleaseConfigHandle(hSvrConfig);
  56. ErrSetErrorCode(ERR_DYNDNS_CONFIG);
  57. return (ERR_DYNDNS_CONFIG);
  58. }
  59. char *pszUsername = (iTokensCount > 3) ? ppszTokens[3] : NULL;
  60. char *pszPassword = (iTokensCount > 4) ? ppszTokens[4] : NULL;
  61. if (DynDnsRegisterDomainHTTP(ppszTokens[0], atoi(ppszTokens[1]), ppszTokens[2],
  62.      pszUsername, pszPassword) < 0) {
  63. ErrorPush();
  64. StrFreeStrings(ppszTokens);
  65. if (bReleaseHandle)
  66. SvrReleaseConfigHandle(hSvrConfig);
  67. return (ErrorPop());
  68. }
  69. StrFreeStrings(ppszTokens);
  70. }
  71. if (bReleaseHandle)
  72. SvrReleaseConfigHandle(hSvrConfig);
  73. return (0);
  74. }
  75. int DynDnsRegisterDomainHTTP(char const *pszServer, int iPortNo,
  76.      char const *pszHTTPRegString, char const *pszUsername,
  77.      char const *pszPassword)
  78. {
  79. SYS_SOCKET SockFD;
  80. SYS_INET_ADDR SvrAddr;
  81. SYS_INET_ADDR SockAddr;
  82. if (MscCreateClientSocket(pszServer, iPortNo, SOCK_STREAM, &SockFD, &SvrAddr,
  83.   &SockAddr, DYNDNS_REG_TIMEOUT) < 0)
  84. return (ErrGetErrorCode());
  85. char szIP[128] = "???.???.???.???";
  86. char szRegString[512] = "";
  87. char szHTTPRequest[2048] = "";
  88. sprintf(szRegString, pszHTTPRegString, SysInetNToA(SockAddr, szIP));
  89. if ((pszUsername == NULL) || (pszPassword == NULL)) {
  90. sprintf(szHTTPRequest,
  91. "GET %s HTTP/1.1rn"
  92. "Host: %s:%drn"
  93. "Connection: closern" "rn", szRegString, pszServer, iPortNo);
  94. } else {
  95. sprintf(szHTTPRequest, "%s:%s", pszUsername, pszPassword);
  96. unsigned int uEnc64Length = 0;
  97. char szEncAuth[512] = "";
  98. encode64(szHTTPRequest, strlen(szHTTPRequest), szEncAuth,
  99.  sizeof(szEncAuth), &uEnc64Length);
  100. sprintf(szHTTPRequest,
  101. "GET %s HTTP/1.1rn"
  102. "Host: %s:%drn"
  103. "Authorization: Basic %srn"
  104. "Connection: closern"
  105. "rn", szRegString, pszServer, iPortNo, szEncAuth);
  106. }
  107. int iRequestLength = strlen(szHTTPRequest);
  108. if (SysSend(SockFD, szHTTPRequest, iRequestLength, DYNDNS_REG_TIMEOUT) != iRequestLength) {
  109. ErrorPush();
  110. SysCloseSocket(SockFD);
  111. return (ErrorPop());
  112. }
  113. char szRespFile[SYS_MAX_PATH] = "";
  114. SysGetTmpFile(szRespFile);
  115. FILE *pRespFile = fopen(szRespFile, "w+b");
  116. if (pRespFile == NULL) {
  117. CheckRemoveFile(szRespFile);
  118. SysCloseSocket(SockFD);
  119. ErrSetErrorCode(ERR_FILE_CREATE);
  120. return (ERR_FILE_CREATE);
  121. }
  122. int iRecvData;
  123. char szBuffer[512] = "";
  124. while ((iRecvData =
  125. SysRecvData(SockFD, szBuffer, sizeof(szBuffer), DYNDNS_REG_TIMEOUT)) > 0) {
  126. fwrite(szBuffer, iRecvData, 1, pRespFile);
  127. }
  128. SysCloseSocket(SockFD);
  129. ///////////////////////////////////////////////////////////////////////////////
  130. //  Parse HTTP response
  131. ///////////////////////////////////////////////////////////////////////////////
  132. fseek(pRespFile, 0, SEEK_SET);
  133. fclose(pRespFile);
  134. SysRemove(szRespFile);
  135. return (0);
  136. }