Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

SNFMilterConfig.hpp 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. // \file SNFMilterConfig.hpp
  2. //
  3. // Copyright (C) 2011 ARM Research Labs, LLC.
  4. // See www.armresearch.com for the copyright terms.
  5. //
  6. // This file defines the SNFMilterConfig interface.
  7. //
  8. // $Id$
  9. //
  10. ///////////////////////////////////////////////////////////////////////////////////////////////////
  11. #ifndef SNFMilterConfighpp_included
  12. #define SNFMilterConfighpp_included
  13. #include <string>
  14. #include "UtilityConfig.hpp"
  15. #include "PostfixIntegrate.hpp"
  16. /// Class to manage the SNFMilter configuration.
  17. //
  18. // This class creates/maintains the sniffer configuration file, and
  19. // integrates/unintegrates with MTAs.
  20. //
  21. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  22. class SNFMilterConfig : public UtilityConfig {
  23. public:
  24. /// Command specified.
  25. enum CommandEnum {
  26. SetupRepairCommand, ///< Setup or repair the configuration.
  27. IntegrateWithPostfixCommand, ///< Integrate with postfix.
  28. IntegrateWithSendmailCommand, ///< Integrate with sendmail.
  29. IntegrateWithNoneCommand, ///< Unintegrate with all supported MTAs.
  30. UpdateCredentialsCommand, ///< Update the credentials.
  31. StartSnifferCommand, ///< Start the Sniffer.
  32. StopSnifferCommand, ///< Stop the Sniffer.
  33. NoCommand, ///< No command specified.
  34. UnknownCommand ///< Unknown.
  35. };
  36. /// Display usage.
  37. //
  38. // \param[in] Version is the SNFMilter version.
  39. //
  40. void DisplayHelp(std::string Version);
  41. /// Get the command-line input parameters for SNFMilter.
  42. //
  43. // \param[in] argc is the number of parameters.
  44. //
  45. // \param[in] argv is the parameters.
  46. //
  47. // \returns true if all the required command line parameters are
  48. // present and there are no unknown command-line parameters, false
  49. // otherwise.
  50. //
  51. bool GetCommandLineInput(int argc, char* argv[]);
  52. /// Load the configuration, creating default configuration if necessary.
  53. //
  54. // This method load the configuration specified in the command
  55. // line, or the default config file. If the config file to load
  56. // doesn't exit, the config file is created by copying from the
  57. // sample config file.
  58. //
  59. // Side effect: The state of the config file is saved.
  60. //
  61. // Side effect: If the config file doesn't exist, a new config
  62. // file is created.
  63. //
  64. void CreateLoadConfig(void);
  65. /// Save the state of all files that might be changed, except the
  66. /// config file.
  67. //
  68. void SaveFileState(void);
  69. /// Create or update the configuration files.
  70. //
  71. // The SNFMilter.xml and GBUdbIgnoreList.txt files are created if
  72. // they don't exist. In any case, the owner/group is changed by
  73. // SetOwnerGroup(), and the permissions are changed to readonly
  74. // for everyone, and read/write for the owner.
  75. //
  76. void UpdateConfigFiles();
  77. /// Execute the command to integrate/unintegrate with the MTAs.
  78. void DoIntegrationCommand();
  79. private:
  80. /// Load the socket info (file name) from the <platform> section
  81. /// of the loaded config file.
  82. void LoadSocketInfo();
  83. void CreateSocketDir();
  84. PostfixIntegrate Postfix; ///< Postfix integration object.
  85. /// Unintegrate with MTAs.
  86. //
  87. // Unintegrate with all MTAs except the specified MTA.
  88. //
  89. // \param[in] Except is the MTA to not integrate with. The
  90. // acceptable values are:
  91. //
  92. // <ol>
  93. // <li> "postfix" </li>
  94. // <li> "" </li>
  95. // </ol>
  96. //
  97. // The default value is "", which specifies unintegration with all
  98. // MTAs.
  99. //
  100. void UnintegrateWithAllExcept(std::string Except = "");
  101. CommandEnum Command; ///< Specified command.
  102. static const std::string DefaultConfigFile; ///< Default config file.
  103. static const std::string SampleConfigFile; ///< Sample config file.
  104. static const std::string SampleIdentityFile; ///< Sample identity file.
  105. std::string SocketFileName;
  106. };
  107. #endif