Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

SNFMilterConfig.cpp 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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("-with=none");
  53. const string IntegrateWithPostfixKey("-with=postfix");
  54. const string IntegrateWithSendmailKey("-with=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 = " -with=postfix Integrate with postfix and start/reload postfix\n";
  68. ExclusiveCommandsHelp += " -with=sendmail Integrate with sendmail and start/reload sendmail\n";
  69. ExclusiveCommandsHelp += " -with=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, the MTA's configuration is reloaded "
  83. << "if the MTA 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. Postfix.SetOperatingSystem(GetOperatingSystemType());
  131. Postfix.SetVerbose(Verbose());
  132. Postfix.SetExplain(Explain());
  133. Sendmail.SetOperatingSystem(GetOperatingSystemType());
  134. Sendmail.SetVerbose(Verbose());
  135. Sendmail.SetExplain(Explain());
  136. SetConfigFileName(DefaultConfigFile);
  137. if (SetupRepairCommand == Command) {
  138. CreateDefaultConfigFile(SampleConfigFile); // Create the file if it doesn't exist,
  139. // Set owner and mode in any case.
  140. }
  141. LoadConfig();
  142. LoadInfo(); // Load the file paths.
  143. LoadSocketInfo(); // Load the socket path.
  144. switch (Command) {
  145. case SetupRepairCommand:
  146. SetupRepair(SampleIdentityFile);
  147. SetupRepairSocketDir();
  148. break;
  149. case UpdateCredentialsCommand:
  150. UpdateRulebaseScriptCredentials();
  151. DownloadRulebase();
  152. UpdateIdentityFile();
  153. break;
  154. case IntegrateWithPostfixCommand:
  155. UnintegrateWithAllExcept("postfix");
  156. Postfix.Integrate(&SaveFile);
  157. break;
  158. case IntegrateWithSendmailCommand:
  159. UnintegrateWithAllExcept("sendmail");
  160. Sendmail.Integrate(&SaveFile);
  161. break;
  162. case IntegrateWithNoneCommand:
  163. UnintegrateWithAllExcept();
  164. break;
  165. case StartSnifferCommand:
  166. LoadCredentials();
  167. StartSniffer("snf-milter start", ApplicationName);
  168. break;
  169. case StopSnifferCommand:
  170. LoadCredentials();
  171. StopSniffer("snf-milter stop", ApplicationName);
  172. break;
  173. default:
  174. break;
  175. }
  176. }
  177. void
  178. SNFMilterConfig::LoadSocketInfo() {
  179. std::string MilterElement = GetPlatformContents();
  180. ConfigurationData PlatformConfig(MilterElement.c_str(), MilterElement.length());
  181. ConfigurationElement SocketReader("milter");
  182. SocketReader
  183. .Element("socket")
  184. .Attribute("path", SocketFileName)
  185. .End("socket")
  186. .End("milter");
  187. SocketReader.interpret(PlatformConfig);
  188. }
  189. void
  190. SNFMilterConfig::SetupRepairSocketDir() {
  191. std::string SocketDir;
  192. std::string::size_type LastDirSepIndex = SocketFileName.rfind("/");
  193. SocketDir = ( (std::string::npos == LastDirSepIndex) ? SocketFileName : SocketFileName.substr(0, LastDirSepIndex));
  194. if (Verbose()) {
  195. cout << "Create the milter socket directory " << SocketDir << "...";
  196. }
  197. if (!Explain()) {
  198. if (!FileExists(SocketDir)) {
  199. MkDir(SocketDir);
  200. }
  201. SetMode(SocketDir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP);
  202. SetOwnerGroup(SocketDir);
  203. }
  204. OutputVerboseEnd();
  205. }
  206. void
  207. SNFMilterConfig::SaveFileState() {
  208. if (!Explain()) {
  209. SaveFile.CreateBackupFile(GetRulebaseScriptName());
  210. if (UpdateCredentialsSpecified()) {
  211. SaveFile.CreateBackupFile(GetRulebaseFileName());
  212. }
  213. SaveFile.CreateBackupFile(GetIdentityFileName());
  214. SaveFile.CreateBackupFile(GetIgnoreListFileName());
  215. }
  216. }
  217. #if 0
  218. void
  219. SNFMilterConfig::DoIntegrationCommand() {
  220. switch (Command) {
  221. case NoCommand:
  222. break;
  223. case IntegrateWithNoneCommand:
  224. UnintegrateWithAllExcept();
  225. break;
  226. case IntegrateWithPostfixCommand:
  227. UnintegrateWithAllExcept("postfix");
  228. Postfix.Integrate(&SaveFile);
  229. break;
  230. case IntegrateWithSendmailCommand:
  231. UnintegrateWithAllExcept("sendmail");
  232. Sendmail.Integrate(&SaveFile);
  233. break;
  234. default:
  235. {
  236. ostringstream Temp;
  237. Temp << "Internal error in SNFMilterConfig::DoIntegrationCommand: Invalid value of command: "
  238. << Command;
  239. throw runtime_error(Temp.str());
  240. }
  241. }
  242. }
  243. #endif
  244. void
  245. SNFMilterConfig::UnintegrateWithAllExcept(std::string Except) {
  246. if (Except != "postfix") {
  247. Postfix.Unintegrate(&SaveFile);
  248. }
  249. if (Except != "sendmail") {
  250. Sendmail.Unintegrate(&SaveFile);
  251. }
  252. }