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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  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. const std::string InstallFile("");
  37. #else
  38. #ifdef DEFAULT_CONFIG_DIR
  39. // *nix, DEFAULT_CONFIG_DIR is specified on the compile command line.
  40. const std::string SNFMilterConfig::DefaultConfigFile(DEFAULT_CONFIG_DIR "/snf-milter/SNFMilter.xml");
  41. const std::string SNFMilterConfig::SampleConfigFile(DEFAULT_CONFIG_DIR "/snf-milter/SNFMilter.xml.sample");
  42. const std::string SNFMilterConfig::SampleIdentityFile(DEFAULT_CONFIG_DIR "/snf-milter/identity.xml.sample");
  43. const std::string InstallFile(DOC_DIR "/INSTALL");
  44. #else
  45. // Not Windows, and DEFAULT_CONFIG_DIR is not specified on the compile
  46. // command line. In this case, we don't know the default path for the
  47. // configuration file.
  48. const std::string SNFMilterConfig::DefaultConfigFile("");
  49. const std::string SNFMilterConfig::SampleConfigFile("");
  50. const std::string SNFMilterConfig::SampleIdentityFile("");
  51. const std::string InstallFile("INSTALL");
  52. #endif
  53. #endif
  54. const string SNFMilterConfig::ApplicationName("SNFMilter");
  55. const string IntegrateWithNoneKey("-with=none");
  56. const string IntegrateWithPostfixKey("-with=postfix");
  57. const string IntegrateWithSendmailKey("-with=sendmail");
  58. const string SnfMilterMainCfSearchString("Added by SNFMilterConfig");
  59. const string SnfMilterMainCfIntegrationString("smtpd_milters = unix:/var/snf-milter/socket $smtpd_milters # Added by SNFMilterConfig");
  60. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  61. // End of configuration. /////////////////////////////////////////////////////////////////////////////////
  62. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  63. void
  64. SNFMilterConfig::DisplayHelp(std::string Version) {
  65. std::string ExclusiveCommands;
  66. std::string ExclusiveCommandsHelp;
  67. ExclusiveCommands = IntegrateWithPostfixKey + " | ";
  68. ExclusiveCommands += IntegrateWithSendmailKey + " | ";
  69. ExclusiveCommands += IntegrateWithNoneKey;
  70. ExclusiveCommandsHelp = " -with=postfix Integrate with postfix and start/reload postfix\n";
  71. ExclusiveCommandsHelp += " -with=sendmail Integrate with sendmail and start/reload sendmail\n";
  72. ExclusiveCommandsHelp += " (Not available on OpenBSD or FreeBSD)\n";
  73. ExclusiveCommandsHelp += " -with=none Remove any integration with all supported MTAs\n";
  74. cout
  75. << Version << endl
  76. << "Copyright (C) 2012, ARM Research Labs, LLC (www.armresearch.com)\n\n"
  77. << "Usage:\n\n"
  78. << "SNFMilterConfig "
  79. << UtilityConfig::HelpCommandLine(ExclusiveCommands) << "\n\n"
  80. << "SNFMilterConfig "
  81. << UtilityConfig::HelpDescription(ExclusiveCommandsHelp) << "\n"
  82. << "The configuration file name is:\n\n"
  83. << " " << DefaultConfigFile << "\n\n"
  84. << "If the above file doesn't exist, then it is copied from the following file:\n\n"
  85. << " " << SampleConfigFile << "\n\n"
  86. << "If integration with an MTA is specified, the MTA's configuration is reloaded "
  87. << "if the MTA is running.\n\n";
  88. };
  89. bool
  90. SNFMilterConfig::GetCommandLineInput(int argc, char* argv[]) {
  91. int i;
  92. int NumCommandsFound = 0;
  93. string OneInput;
  94. Command = NoCommand; // Default is to do nothing.
  95. for (i = 1; i < argc; i++) { // Check each input.
  96. OneInput = argv[i];
  97. if (OneInput == IntegrateWithPostfixKey) {
  98. Command = IntegrateWithPostfixCommand;
  99. NumCommandsFound++;
  100. } else if (0 == OneInput.find(IntegrateWithSendmailKey)) {
  101. std::string OsType;
  102. OsType = GetOperatingSystemType(); // Check whether the platform is supported.
  103. if ( ("OpenBSD" == OsType) || ("FreeBSD" == OsType) ) {
  104. std::string Temp;
  105. Temp = "Integration with sendmail is not supported on " + OsType;
  106. Temp += ".\n";
  107. Temp += "Please see " + InstallFile;
  108. Temp += " for information on integration with sendmail.\n";
  109. throw std::runtime_error(Temp);
  110. }
  111. Command = IntegrateWithSendmailCommand;
  112. NumCommandsFound++;
  113. } else if (OneInput == IntegrateWithNoneKey) {
  114. Command = IntegrateWithNoneCommand;
  115. NumCommandsFound++;
  116. } else {
  117. // Process command-line input by the base class.
  118. if (!ProcessCommandLineItem(OneInput)) {
  119. Command = UnknownCommand;
  120. return false; // Illegal input.
  121. }
  122. }
  123. }
  124. if (UpdateCredentialsSpecified()) {
  125. Command = UpdateCredentialsCommand;
  126. NumCommandsFound++;
  127. }
  128. if (SetupRepairSpecified()) {
  129. Command = SetupRepairCommand;
  130. NumCommandsFound++;
  131. }
  132. if (StartSnifferSpecified()) {
  133. Command = StartSnifferCommand;
  134. NumCommandsFound++;
  135. }
  136. if (StopSnifferSpecified()) {
  137. Command = StopSnifferCommand;
  138. NumCommandsFound++;
  139. }
  140. return ( (NumCommandsFound == 1) && CommandLineIsOkay() );
  141. }
  142. void
  143. SNFMilterConfig::ExecuteCommand() {
  144. Postfix.SetOperatingSystem(GetOperatingSystemType());
  145. Postfix.SetVerbose(Verbose());
  146. Postfix.SetExplain(Explain());
  147. Sendmail.SetOperatingSystem(GetOperatingSystemType());
  148. Sendmail.SetVerbose(Verbose());
  149. Sendmail.SetExplain(Explain());
  150. SetConfigFileName(DefaultConfigFile);
  151. if (SetupRepairCommand == Command) {
  152. CreateDefaultConfigFile(SampleConfigFile); // Create the file if it doesn't exist,
  153. // Set owner and mode in any case.
  154. }
  155. LoadConfig();
  156. LoadInfo(); // Load the file paths.
  157. LoadSocketInfo(); // Load the socket path.
  158. switch (Command) {
  159. case SetupRepairCommand:
  160. SetupRepair(SampleIdentityFile);
  161. SetupRepairSocketDir();
  162. break;
  163. case UpdateCredentialsCommand:
  164. UpdateRulebaseScriptCredentials();
  165. DownloadRulebase();
  166. UpdateIdentityFile();
  167. break;
  168. case IntegrateWithPostfixCommand:
  169. UnintegrateWithAllExcept("postfix");
  170. Postfix.Integrate(&SaveFile);
  171. break;
  172. case IntegrateWithSendmailCommand:
  173. UnintegrateWithAllExcept("sendmail");
  174. Sendmail.Integrate(&SaveFile);
  175. break;
  176. case IntegrateWithNoneCommand:
  177. UnintegrateWithAllExcept();
  178. break;
  179. case StartSnifferCommand:
  180. LoadCredentials();
  181. StartSniffer("snf-milter start", ApplicationName);
  182. break;
  183. case StopSnifferCommand:
  184. LoadCredentials();
  185. StopSniffer("snf-milter stop", ApplicationName);
  186. break;
  187. default:
  188. break;
  189. }
  190. }
  191. void
  192. SNFMilterConfig::LoadSocketInfo() {
  193. std::string MilterElement = GetPlatformContents();
  194. ConfigurationData PlatformConfig(MilterElement.c_str(), MilterElement.length());
  195. ConfigurationElement SocketReader("milter");
  196. SocketReader
  197. .Element("socket")
  198. .Attribute("path", SocketFileName)
  199. .End("socket")
  200. .End("milter");
  201. SocketReader.interpret(PlatformConfig);
  202. }
  203. void
  204. SNFMilterConfig::SetupRepairSocketDir() {
  205. std::string SocketDir;
  206. std::string::size_type LastDirSepIndex = SocketFileName.rfind("/");
  207. SocketDir = ( (std::string::npos == LastDirSepIndex) ? SocketFileName : SocketFileName.substr(0, LastDirSepIndex));
  208. if (Verbose()) {
  209. cout << "Create the milter socket directory " << SocketDir << "...";
  210. }
  211. if (!Explain()) {
  212. if (!FileExists(SocketDir)) {
  213. MkDir(SocketDir);
  214. }
  215. SetMode(SocketDir, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP);
  216. SetOwnerGroup(SocketDir);
  217. }
  218. OutputVerboseEnd();
  219. }
  220. void
  221. SNFMilterConfig::SaveFileState() {
  222. if (!Explain()) {
  223. SaveFile.CreateBackupFile(GetRulebaseScriptName());
  224. if (UpdateCredentialsSpecified()) {
  225. SaveFile.CreateBackupFile(GetRulebaseFileName());
  226. }
  227. SaveFile.CreateBackupFile(GetIdentityFileName());
  228. SaveFile.CreateBackupFile(GetIgnoreListFileName());
  229. }
  230. }
  231. #if 0
  232. void
  233. SNFMilterConfig::DoIntegrationCommand() {
  234. switch (Command) {
  235. case NoCommand:
  236. break;
  237. case IntegrateWithNoneCommand:
  238. UnintegrateWithAllExcept();
  239. break;
  240. case IntegrateWithPostfixCommand:
  241. UnintegrateWithAllExcept("postfix");
  242. Postfix.Integrate(&SaveFile);
  243. break;
  244. case IntegrateWithSendmailCommand:
  245. UnintegrateWithAllExcept("sendmail");
  246. Sendmail.Integrate(&SaveFile);
  247. break;
  248. default:
  249. {
  250. ostringstream Temp;
  251. Temp << "Internal error in SNFMilterConfig::DoIntegrationCommand: Invalid value of command: "
  252. << Command;
  253. throw runtime_error(Temp.str());
  254. }
  255. }
  256. }
  257. #endif
  258. void
  259. SNFMilterConfig::UnintegrateWithAllExcept(std::string Except) {
  260. if (Except != "postfix") {
  261. Postfix.Unintegrate(&SaveFile);
  262. }
  263. if (Except != "sendmail") {
  264. Sendmail.Unintegrate(&SaveFile);
  265. }
  266. }