Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

SNFMilterConfig.cpp 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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. std::string ExclusiveCommands;
  62. std::string ExclusiveCommandsHelp;
  63. ExclusiveCommands = IntegrateWithPostfixKey + " | ";
  64. ExclusiveCommands += IntegrateWithSendmailKey + " | ";
  65. ExclusiveCommands += IntegrateWithNoneKey;
  66. ExclusiveCommandsHelp = " -mta=postfix Integrate with postfix and start/reload postfix\n";
  67. ExclusiveCommandsHelp += " -mta=sendmail Integrate with sendmail and start/reload sendmail\n";
  68. ExclusiveCommandsHelp += " -mta=none Remove any integration with all supported MTAs\n";
  69. cout
  70. << Version << endl
  71. << "Copyright (C) 2012, ARM Research Labs, LLC (www.armresearch.com)\n\n"
  72. << "Usage:\n\n"
  73. << "SNFMilterConfig "
  74. << UtilityConfig::HelpCommandLine(ExclusiveCommands) << "\n\n"
  75. << "SNFMilterConfig "
  76. << UtilityConfig::HelpDescription(ExclusiveCommandsHelp) << "\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. << "If integration with an MTA is specified, that MTA is started if it isn't running,\n"
  83. << "or the MTA's configuration is reloaded if it is running.\n\n";
  84. };
  85. bool
  86. SNFMilterConfig::GetCommandLineInput(int argc, char* argv[]) {
  87. int i;
  88. int NumCommandsFound = 0;
  89. string OneInput;
  90. Command = NoCommand; // Default is to do nothing.
  91. for (i = 1; i < argc; i++) { // Check each input.
  92. OneInput = argv[i];
  93. if (OneInput == IntegrateWithPostfixKey) {
  94. Command = IntegrateWithPostfixCommand;
  95. NumCommandsFound++;
  96. } else if (0 == OneInput.find(IntegrateWithSendmailKey)) {
  97. Command = IntegrateWithSendmailCommand;
  98. NumCommandsFound++;
  99. } else if (OneInput == IntegrateWithNoneKey) {
  100. Command = IntegrateWithNoneCommand;
  101. NumCommandsFound++;
  102. } else {
  103. // Process command-line input by the base class.
  104. if (!ProcessCommandLineItem(OneInput)) {
  105. Command = UnknownCommand;
  106. return false; // Illegal input.
  107. }
  108. }
  109. }
  110. if (UpdateCredentialsSpecified()) {
  111. Command = UpdateCredentialsCommand;
  112. NumCommandsFound++;
  113. }
  114. if (SetupRepairSpecified()) {
  115. Command = SetupRepairCommand;
  116. NumCommandsFound++;
  117. }
  118. if (StartSnifferSpecified()) {
  119. Command = StartSnifferCommand;
  120. NumCommandsFound++;
  121. }
  122. if (StopSnifferSpecified()) {
  123. Command = StopSnifferCommand;
  124. NumCommandsFound++;
  125. }
  126. return (NumCommandsFound == 1);
  127. }
  128. void
  129. SNFMilterConfig::ExecuteCommand() {
  130. switch (Command) {
  131. case SetupRepairCommand:
  132. CreateLoadConfig(); // Save config file state create default
  133. // config if necessary, and load config.
  134. SetupRepair(SampleIdentityFile);
  135. SetupRepairSocketDir();
  136. break;
  137. case UpdateCredentialsCommand:
  138. UpdateRulebaseScriptCredentials();
  139. DownloadRulebase();
  140. UpdateIdentityFile();
  141. break;
  142. case IntegrateWithPostfixCommand:
  143. break;
  144. case IntegrateWithSendmailCommand:
  145. break;
  146. case IntegrateWithNoneCommand:
  147. break;
  148. case StartSnifferCommand:
  149. break;
  150. case StopSnifferCommand:
  151. break;
  152. default:
  153. break;
  154. }
  155. #if 0
  156. SnifferRunningStatue RunningStatus;
  157. SnfMilterConfig.CreateLoadConfig(); // Save config file state and load config.
  158. // Load the default if necessary.
  159. SnfMilterConfig.SaveFileState(); // Save state of all other files.
  160. RunningStatus = SnfMilterConfig.GetSnifferRunningStatus(); // Get state before changing anything.
  161. SnfMilterConfig.UpdateConfigFiles(); // Create/update config files
  162. SnfMilterConfig.CreateUpdateRulebaseScript(); // Create/update GetRulebase.
  163. SnfMilterConfig.DownloadRulebase(); // Download rulebase.
  164. SnfMilterConfig.UpdateIdentityFile(); // Update Identity file with credentials,
  165. // if credentials were specified.
  166. SnfMilterConfig.DoIntegrationCommand(); // Integrate/unintegrate.
  167. if (SnifferIsStopped == RunningStatus) {
  168. SnfMilterConfig.StartSniffer();
  169. } else if (SnifferRunningStatusIsUknown == RunningStatus) {
  170. std::cout << "SNFMilterConfig: Unable to determine whether SNFMilter is running.\n"
  171. << "Please start SNFMilter if it isn't running.\n";
  172. }
  173. #endif
  174. }
  175. void
  176. SNFMilterConfig::LoadSocketInfo() {
  177. std::string MilterElement = GetPlatformContents();
  178. ConfigurationData PlatformConfig(MilterElement.c_str(), MilterElement.length());
  179. ConfigurationElement SocketReader("milter");
  180. SocketReader
  181. .Element("socket")
  182. .Attribute("path", SocketFileName)
  183. .End("socket")
  184. .End("milter");
  185. SocketReader.interpret(PlatformConfig);
  186. }
  187. void
  188. SNFMilterConfig::SetupRepairSocketDir() {
  189. std::string SocketDir;
  190. std::string::size_type LastDirSepIndex = SocketFileName.rfind("/");
  191. SocketDir = ( (std::string::npos == LastDirSepIndex) ? SocketFileName : SocketFileName.substr(0, LastDirSepIndex));
  192. if (Verbose()) {
  193. cout << "Create the milter socket directory " << SocketDir << "...";
  194. }
  195. if (!Explain()) {
  196. if (!FileExists(SocketDir)) {
  197. MkDir(SocketDir);
  198. }
  199. SetMode(SocketDir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP);
  200. SetOwnerGroup(SocketDir);
  201. }
  202. OutputVerboseEnd();
  203. }
  204. void
  205. SNFMilterConfig::CreateLoadConfig() {
  206. CheckAndSetConfigFileName(&DefaultConfigFile, 1); // Load the config file name.
  207. CreateDefaultConfigFile(SampleConfigFile); // Create the file if it doesn't exist,
  208. // Set owner and mode in any case.
  209. LoadConfig();
  210. LoadInfo(); // Load the file paths.
  211. LoadSocketInfo(); // Load the socket path.
  212. }
  213. void
  214. SNFMilterConfig::SaveFileState() {
  215. if (!Explain()) {
  216. SaveFile.CreateBackupFile(GetRulebaseScriptName());
  217. if (UpdateCredentialsSpecified()) {
  218. SaveFile.CreateBackupFile(GetRulebaseFileName());
  219. }
  220. SaveFile.CreateBackupFile(GetIdentityFileName());
  221. SaveFile.CreateBackupFile(GetIgnoreListFileName());
  222. }
  223. }
  224. void
  225. SNFMilterConfig::DoIntegrationCommand() {
  226. switch (Command) {
  227. case NoCommand:
  228. break;
  229. case IntegrateWithNoneCommand:
  230. UnintegrateWithAllExcept();
  231. break;
  232. case IntegrateWithPostfixCommand:
  233. UnintegrateWithAllExcept("postfix");
  234. Postfix.Integrate(&SaveFile);
  235. break;
  236. case IntegrateWithSendmailCommand:
  237. UnintegrateWithAllExcept("sendmail");
  238. // Sendmail.Integrate(&SaveFile);
  239. break;
  240. default:
  241. {
  242. ostringstream Temp;
  243. Temp << "Internal error in SNFMilterConfig::DoIntegrationCommand: Invalid value of command: "
  244. << Command;
  245. throw runtime_error(Temp.str());
  246. }
  247. }
  248. }
  249. void
  250. SNFMilterConfig::UnintegrateWithAllExcept(std::string Except) {
  251. if (Except != "postfix") {
  252. Postfix.Unintegrate(&SaveFile);
  253. }
  254. #if 0
  255. if (Except != "sendmail") {
  256. Sendmail.Unintegrate(&SaveFile);
  257. }
  258. #endif
  259. }