Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

SNFMilterConfig.cpp 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. // /file SNFMilterConfig.cpp
  2. //
  3. // Copyright (C) 2011, ARM Research Labs, LLC.
  4. // See www.armresearch.com for the copyright terms.
  5. //
  6. // This file contains the functions for SNFMilterConfig.
  7. //
  8. // $Id$
  9. //
  10. ///////////////////////////////////////////////////////////////////////////////////////////////////
  11. #include <errno.h>
  12. #include <string.h>
  13. #include <unistd.h>
  14. #include <sys/types.h>
  15. #include <pwd.h>
  16. #include <sys/types.h>
  17. #include <sys/stat.h>
  18. #include <unistd.h>
  19. #include <exception>
  20. #include <stdexcept>
  21. #include <sstream>
  22. #include <iostream>
  23. #include <fstream>
  24. #include <vector>
  25. #include "SNFMilterConfig.hpp"
  26. using namespace std;
  27. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  28. // Configuration. ////////////////////////////////////////////////////////////////////////////////////////
  29. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  30. // Initialize default configuration file path.
  31. #ifdef WIN
  32. // Windows OS.
  33. const std::string SNFMilterConfig::DefaultConfigFile("C:\\SNF\\SNFMilter.xml");
  34. const std::string SNFMilterConfig::SampleConfigFile("C:\\SNF\\SNFMilter.xml.sample");
  35. const std::string SNFMilterConfig::SampleIdentityFile("C:\\SNF\\identity.xml.sample");
  36. #else
  37. #ifdef DEFAULT_CONFIG_DIR
  38. // *nix, DEFAULT_CONFIG_DIR is specified on the compile command line.
  39. const std::string SNFMilterConfig::DefaultConfigFile(DEFAULT_CONFIG_DIR "/snf-milter/SNFMilter.xml");
  40. const std::string SNFMilterConfig::SampleConfigFile(DEFAULT_CONFIG_DIR "/snf-milter/SNFMilter.xml.sample");
  41. const std::string SNFMilterConfig::SampleIdentityFile(DEFAULT_CONFIG_DIR "/snf-milter/identity.xml.sample");
  42. #else
  43. // Not Windows, and DEFAULT_CONFIG_DIR is not specified on the compile
  44. // command line. In this case, we don't know the default path for the
  45. // configuration file.
  46. const std::string SNFMilterConfig::DefaultConfigFile("");
  47. const std::string SNFMilterConfig::SampleConfigFile("");
  48. const std::string SNFMilterConfig::SampleIdentityFile("");
  49. #endif
  50. #endif
  51. const string IntegrateWithNoneKey("-mta=none");
  52. const string IntegrateWithPostfixKey("-mta=postfix");
  53. const string IntegrateWithSendmailKey("-mta=sendmail");
  54. const string SnfMilterMainCfSearchString("Added by SNFMilterConfig");
  55. const string SnfMilterMainCfIntegrationString("smtpd_milters = unix:/var/snf-milter/socket $smtpd_milters # Added by SNFMilterConfig");
  56. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  57. // End of configuration. /////////////////////////////////////////////////////////////////////////////////
  58. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  59. void
  60. SNFMilterConfig::DisplayHelp(std::string Version) {
  61. cout
  62. << Version << endl
  63. << "Copyright (C) 2012, ARM Research Labs, LLC (www.armresearch.com)\n\n"
  64. << "Usage:\n\n"
  65. << "SNFMilterConfig "
  66. << IntegrateWithPostfixKey << " | "
  67. << IntegrateWithSendmailKey << " | "
  68. << IntegrateWithNoneKey << " "
  69. << UtilityConfig::HelpCommandLine() << "\n\n"
  70. << "SNFMilterConfig creates the configuration files (snf-config-file and the\n"
  71. << "ignore list file), the rulebase download script (default: getRulebase) if\n"
  72. << "they don't exist, and also the identity file.\n\n"
  73. << " -mta=postfix Integrate with postfix\n"
  74. << " -mta=sendmail Integrate with sendmail\n"
  75. << " -mta=none Remove any integration with all supported MTAs\n"
  76. << UtilityConfig::HelpDescription() << "\n"
  77. << "If snf-config-file is not specified, then the following file is used if it exists:\n\n"
  78. << " " << DefaultConfigFile << "\n\n"
  79. << "If snf-config-file is not specified and the above file doesn't exist, then it is\n"
  80. << "copied from the following file:\n\n"
  81. << " " << SampleConfigFile << "\n\n";
  82. };
  83. bool
  84. SNFMilterConfig::GetCommandLineInput(int argc, char* argv[]) {
  85. int i;
  86. int NumCommandsFound = 0;
  87. string OneInput;
  88. Command = NoCommand; // Default is to do nothing.
  89. for (i = 1; i < argc; i++) { // Check each input.
  90. OneInput = argv[i];
  91. if (OneInput == IntegrateWithPostfixKey) {
  92. Command = IntegrateWithPostfixCommand;
  93. NumCommandsFound++;
  94. } else if (0 == OneInput.find(IntegrateWithSendmailKey)) {
  95. Command = IntegrateWithSendmailCommand;
  96. NumCommandsFound++;
  97. } else if (OneInput == IntegrateWithNoneKey) {
  98. Command = IntegrateWithNoneCommand;
  99. NumCommandsFound++;
  100. } else {
  101. // Process command-line input by the base class.
  102. if (!ProcessCommandLineItem(OneInput)) {
  103. Command = UnknownCommand;
  104. return false; // Illegal input.
  105. }
  106. }
  107. }
  108. if (UpdateCredentialsSpecified()) {
  109. Command = UpdateCredentialsCommand;
  110. NumCommandsfound++;
  111. }
  112. if (SetupRepairSpecified()) {
  113. Command = SetupRepairCommand;
  114. NumCommandsFound++;
  115. }
  116. if (StartSnifferSpecified()) {
  117. Command = StartSnifferCommand;
  118. NumCommandsFound++;
  119. }
  120. if (StopSnifferSpecified()) {
  121. Command = StopSnifferCommand;
  122. NumCommandsFound++;
  123. }
  124. return (NumCommandsFound == 1);
  125. }
  126. void
  127. SNFMilterConfig::LoadSocketInfo() {
  128. std::string MilterElement = GetPlatformContents();
  129. ConfigurationData PlatformConfig(MilterElement.c_str(), MilterElement.length());
  130. ConfigurationElement SocketReader("milter");
  131. SocketReader
  132. .Element("socket")
  133. .Attribute("path", SocketFileName)
  134. .End("socket")
  135. .End("milter");
  136. SocketReader.interpret(PlatformConfig);
  137. }
  138. void
  139. SNFMilterConfig::CreateSocketDir() {
  140. std::string SocketDir;
  141. std::string::size_type LastDirSepIndex = SocketFileName.rfind("/");
  142. SocketDir = ( (std::string::npos == LastDirSepIndex) ? SocketFileName : SocketFileName.substr(0, LastDirSepIndex));
  143. if (Verbose()) {
  144. cout << "Create the milter socket directory " << SocketDir << "...";
  145. }
  146. if (!Explain()) {
  147. if (!FileExists(SocketDir)) {
  148. MkDir(SocketDir);
  149. }
  150. SetMode(SocketDir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP);
  151. SetOwnerGroup(SocketDir);
  152. }
  153. OutputVerboseEnd();
  154. }
  155. void
  156. SNFMilterConfig::CreateLoadConfig() {
  157. CheckAndSetConfigFileName(&DefaultConfigFile, 1); // Load the config file name.
  158. if (!Explain()) {
  159. SaveFile.CreateBackupFile(GetConfigFileName());
  160. }
  161. CreateDefaultConfigFile(SampleConfigFile); // Create the file if it doesn't exist.
  162. LoadConfig();
  163. LoadInfo(); // Load the file paths.
  164. LoadSocketInfo(); // Load the socket path.
  165. }
  166. void
  167. SNFMilterConfig::SaveFileState() {
  168. if (!Explain()) {
  169. SaveFile.CreateBackupFile(GetRulebaseScriptName());
  170. if (UpdateCredentialsSpecified()) {
  171. SaveFile.CreateBackupFile(GetRulebaseFileName());
  172. }
  173. SaveFile.CreateBackupFile(GetIdentityFileName());
  174. SaveFile.CreateBackupFile(GetIgnoreListFileName());
  175. }
  176. }
  177. void
  178. SNFMilterConfig::UpdateConfigFiles() {
  179. SetMode(GetConfigFileName(), S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); // Set permissions.
  180. SetOwnerGroup(GetConfigFileName()); // Set to sniffer user.
  181. CreateDefaultIdentityFile(SampleIdentityFile);
  182. CreateUpdateRulebaseScript();
  183. UpdateLogDir();
  184. UpdateIgnoreListFile();
  185. }
  186. void
  187. SNFMilterConfig::DoIntegrationCommand() {
  188. switch (Command) {
  189. case NoCommand:
  190. break;
  191. case IntegrateWithNoneCmd:
  192. UnintegrateWithAllExcept();
  193. break;
  194. case IntegrateWithPostfixCmd:
  195. UnintegrateWithAllExcept("postfix");
  196. Postfix.Integrate(&SaveFile);
  197. break;
  198. case IntegrateWithSendmailCmd:
  199. UnintegrateWithAllExcept("sendmail");
  200. // Sendmail.Integrate(&SaveFile);
  201. break;
  202. default:
  203. {
  204. ostringstream Temp;
  205. Temp << "Internal error in SNFMilterConfig::DoIntegrationCommand: Invalid value of command: "
  206. << Command;
  207. throw runtime_error(Temp.str());
  208. }
  209. }
  210. }
  211. void
  212. SNFMilterConfig::UnintegrateWithAllExcept(std::string Except) {
  213. if (Except != "postfix") {
  214. Postfix.Unintegrate(&SaveFile);
  215. }
  216. #if 0
  217. if (Except != "sendmail") {
  218. Sendmail.Unintegrate(&SaveFile);
  219. }
  220. #endif
  221. }