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 9.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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 SNFMilterConfig::ApplicationName("SNFMilter");
  52. const string IntegrateWithNoneKey("-mta=none");
  53. const string IntegrateWithPostfixKey("-mta=postfix");
  54. const string IntegrateWithSendmailKey("-mta=sendmail");
  55. const string SnfMilterMainCfSearchString("Added by SNFMilterConfig");
  56. const string SnfMilterMainCfIntegrationString("smtpd_milters = unix:/var/snf-milter/socket $smtpd_milters # Added by SNFMilterConfig");
  57. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  58. // End of configuration. /////////////////////////////////////////////////////////////////////////////////
  59. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  60. void
  61. SNFMilterConfig::DisplayHelp(std::string Version) {
  62. std::string ExclusiveCommands;
  63. std::string ExclusiveCommandsHelp;
  64. ExclusiveCommands = IntegrateWithPostfixKey + " | ";
  65. ExclusiveCommands += IntegrateWithSendmailKey + " | ";
  66. ExclusiveCommands += IntegrateWithNoneKey;
  67. ExclusiveCommandsHelp = " -mta=postfix Integrate with postfix and start/reload postfix\n";
  68. ExclusiveCommandsHelp += " -mta=sendmail Integrate with sendmail and start/reload sendmail\n";
  69. ExclusiveCommandsHelp += " -mta=none Remove any integration with all supported MTAs\n";
  70. cout
  71. << Version << endl
  72. << "Copyright (C) 2012, ARM Research Labs, LLC (www.armresearch.com)\n\n"
  73. << "Usage:\n\n"
  74. << "SNFMilterConfig "
  75. << UtilityConfig::HelpCommandLine(ExclusiveCommands) << "\n\n"
  76. << "SNFMilterConfig "
  77. << UtilityConfig::HelpDescription(ExclusiveCommandsHelp) << "\n"
  78. << "The configuration file name is:\n\n"
  79. << " " << DefaultConfigFile << "\n\n"
  80. << "If the above file doesn't exist, then it is 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) && CommandLineIsOkay() );
  127. }
  128. void
  129. SNFMilterConfig::ExecuteCommand() {
  130. switch (Command) {
  131. case SetupRepairCommand:
  132. SetConfigFileName(DefaultConfigFile);
  133. CreateDefaultConfigFile(SampleConfigFile); // Create the file if it doesn't exist,
  134. // Set owner and mode in any case.
  135. LoadConfig();
  136. LoadInfo(); // Load the file paths.
  137. LoadSocketInfo(); // Load the socket path.
  138. SetupRepair(SampleIdentityFile);
  139. SetupRepairSocketDir();
  140. break;
  141. case UpdateCredentialsCommand:
  142. SetConfigFileName(DefaultConfigFile);
  143. LoadConfig();
  144. LoadInfo(); // Load the file paths.
  145. LoadSocketInfo(); // Load the socket path.
  146. UpdateRulebaseScriptCredentials();
  147. DownloadRulebase();
  148. UpdateIdentityFile();
  149. break;
  150. case IntegrateWithPostfixCommand:
  151. break;
  152. case IntegrateWithSendmailCommand:
  153. break;
  154. case IntegrateWithNoneCommand:
  155. break;
  156. case StartSnifferCommand:
  157. SetConfigFileName(DefaultConfigFile);
  158. LoadConfig();
  159. LoadInfo();
  160. LoadSocketInfo();
  161. LoadCredentials();
  162. StartSniffer("snf-milter start", ApplicationName);
  163. break;
  164. case StopSnifferCommand:
  165. SetConfigFileName(DefaultConfigFile);
  166. LoadConfig();
  167. LoadInfo();
  168. LoadSocketInfo();
  169. LoadCredentials();
  170. StopSniffer("snf-milter stop", ApplicationName);
  171. break;
  172. default:
  173. break;
  174. }
  175. }
  176. void
  177. SNFMilterConfig::LoadSocketInfo() {
  178. std::string MilterElement = GetPlatformContents();
  179. ConfigurationData PlatformConfig(MilterElement.c_str(), MilterElement.length());
  180. ConfigurationElement SocketReader("milter");
  181. SocketReader
  182. .Element("socket")
  183. .Attribute("path", SocketFileName)
  184. .End("socket")
  185. .End("milter");
  186. SocketReader.interpret(PlatformConfig);
  187. }
  188. void
  189. SNFMilterConfig::SetupRepairSocketDir() {
  190. std::string SocketDir;
  191. std::string::size_type LastDirSepIndex = SocketFileName.rfind("/");
  192. SocketDir = ( (std::string::npos == LastDirSepIndex) ? SocketFileName : SocketFileName.substr(0, LastDirSepIndex));
  193. if (Verbose()) {
  194. cout << "Create the milter socket directory " << SocketDir << "...";
  195. }
  196. if (!Explain()) {
  197. if (!FileExists(SocketDir)) {
  198. MkDir(SocketDir);
  199. }
  200. SetMode(SocketDir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP);
  201. SetOwnerGroup(SocketDir);
  202. }
  203. OutputVerboseEnd();
  204. }
  205. void
  206. SNFMilterConfig::SaveFileState() {
  207. if (!Explain()) {
  208. SaveFile.CreateBackupFile(GetRulebaseScriptName());
  209. if (UpdateCredentialsSpecified()) {
  210. SaveFile.CreateBackupFile(GetRulebaseFileName());
  211. }
  212. SaveFile.CreateBackupFile(GetIdentityFileName());
  213. SaveFile.CreateBackupFile(GetIgnoreListFileName());
  214. }
  215. }
  216. void
  217. SNFMilterConfig::DoIntegrationCommand() {
  218. switch (Command) {
  219. case NoCommand:
  220. break;
  221. case IntegrateWithNoneCommand:
  222. UnintegrateWithAllExcept();
  223. break;
  224. case IntegrateWithPostfixCommand:
  225. UnintegrateWithAllExcept("postfix");
  226. Postfix.Integrate(&SaveFile);
  227. break;
  228. case IntegrateWithSendmailCommand:
  229. UnintegrateWithAllExcept("sendmail");
  230. // Sendmail.Integrate(&SaveFile);
  231. break;
  232. default:
  233. {
  234. ostringstream Temp;
  235. Temp << "Internal error in SNFMilterConfig::DoIntegrationCommand: Invalid value of command: "
  236. << Command;
  237. throw runtime_error(Temp.str());
  238. }
  239. }
  240. }
  241. void
  242. SNFMilterConfig::UnintegrateWithAllExcept(std::string Except) {
  243. if (Except != "postfix") {
  244. Postfix.Unintegrate(&SaveFile);
  245. }
  246. #if 0
  247. if (Except != "sendmail") {
  248. Sendmail.Unintegrate(&SaveFile);
  249. }
  250. #endif
  251. }