Procházet zdrojové kódy

Implemented SendmailIntegrate, tested update of files on Ubuntu.


git-svn-id: https://svn.microneil.com/svn/PKG-SNF-CS-NIX/trunk@70 233e721a-07f6-49eb-a7da-05e0e16828fc
master
adeniz před 12 roky
rodič
revize
bdecc6708c

+ 48
- 9
SNF_CS_Developer_Package/SNFUtility/SNFServerConfig/PostfixIntegrate.cpp Zobrazit soubor

} else if ("Ubuntu" == OperatingSystemType) { } else if ("Ubuntu" == OperatingSystemType) {
PostfixDefaultIsChrooted = true; PostfixDefaultIsChrooted = true;
SnfSnifferDirName = "/var/spool/postfix";
SnfSnifferDirName = "/var/spool/postfix/snf-server";
SnfSnifferFileName = SnfSnifferDirName + "/snfSniffer"; SnfSnifferFileName = SnfSnifferDirName + "/snfSniffer";
SnfSnifferSampleFileName = "/usr/local/sbin/snfSniffer.sample";
SnfSnifferSampleFileName = "/usr/sbin/snfSniffer.sample";
ContentFilterSpec += " flags=Rq user=snfuser argv=/snfSniffer\n"; ContentFilterSpec += " flags=Rq user=snfuser argv=/snfSniffer\n";
SaveFile->CreateBackupFile(SnfSnifferFileName); SaveFile->CreateBackupFile(SnfSnifferFileName);
MkDir(SnfSnifferDirName);
if (!FileExists(SnfSnifferDirName)) {
MkDir(SnfSnifferDirName);
}
SetMode(SnfSnifferDirName, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); SetMode(SnfSnifferDirName, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
SetOwnerGroup(SnfSnifferDirName); SetOwnerGroup(SnfSnifferDirName);
Content += Line + "\n"; // Copy this line. Content += Line + "\n"; // Copy this line.
if (Line.find("smtp") == 0) {
if ( (Line.find("smtp") == 0) && (Line.find("inet") != std::string::npos) ) {
if (Verbose()) { if (Verbose()) {
std::cout << " Add\n\n " << ContentFilterLine << "\n\n after 'smtp' line in "
std::cout << " Add\n\n "
<< ContentFilterLine
<< "\n\n after\n\n"
<< Line
<< "\n\n in "
<< PostfixMasterCfPath << "...\n"; << PostfixMasterCfPath << "...\n";
} }
Content += ContentFilterLine + "\n";
Content += ContentFilterLine;
} }
if (Verbose()) { if (Verbose()) {
std::cout << " Add\n\n " << ContentFilterSpec << "\n\n to the end of "
std::cout << " Add\n\n" << ContentFilterSpec << "\n\n to the end of "
<< PostfixMasterCfPath << "...\n"; << PostfixMasterCfPath << "...\n";
} }
} }
std::ofstream Output; // Write the updated contents.
Output.open(PostfixMasterCfPath.c_str(), std::ios::trunc);
if (!Output) {
std::string Temp;
Temp = "Error opening the postfix configuration file " + PostfixMasterCfPath;
Temp += " for writing: ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
Output << Content;
if (!Output) {
std::string Temp;
Temp = "Error writing the postfix configuration file " + PostfixMasterCfPath;
Temp += ": ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
Output.close();
if (!Output) {
std::string Temp;
Temp = "Error closing the postfix configuration file " + PostfixMasterCfPath;
Temp += " after writing: ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
} }
OutputVerboseEnd(); OutputVerboseEnd();
if (!Integrated) { if (!Integrated) {
} else {
std::cout << "none found..."; std::cout << "none found...";
} }

+ 142
- 93
SNF_CS_Developer_Package/SNFUtility/SNFServerConfig/SendmailIntegrate.cpp Zobrazit soubor

// /file SendmailIntegrate.cpp // /file SendmailIntegrate.cpp
// //
// Copyright (C) 2011, ARM Research Labs, LLC.
// Copyright (C) 2012, ARM Research Labs, LLC.
// See www.armresearch.com for the copyright terms. // See www.armresearch.com for the copyright terms.
// //
// This file contains the functions for SendmailIntegrate. // This file contains the functions for SendmailIntegrate.
// Configuration. //////////////////////////////////////////////////////////////////////////////////////// // Configuration. ////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
const std::string SnfMilterSendmailMcSearchString("Added by SNFMilterConfig");
const std::string SnfMilterSendmailMcIntegrationString("INPUT_MAIL_FILTER(`SNFMilter', `S=unix:/var/snf-milter/socket')dnl # Added by SNFMilterConfig");
const std::string MtaIsRunningCommand("ps axl | grep -v grep | grep -q ' sendmail: '"); const std::string MtaIsRunningCommand("ps axl | grep -v grep | grep -q ' sendmail: '");
////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////
void void
SendmailIntegrate::SetOperatingSystem(std::string OperatingSystemType) { SendmailIntegrate::SetOperatingSystem(std::string OperatingSystemType) {
ProcmailRcFileName = "/etc/procmailrc";
if ("OpenBSD" == OperatingSystemType) { if ("OpenBSD" == OperatingSystemType) {
IntegrationIsSupported = false; IntegrationIsSupported = false;
IntegrationIsSupported = true; IntegrationIsSupported = true;
SendmailSendmailMcPath = "/etc/mail/sendmail.mc"; SendmailSendmailMcPath = "/etc/mail/sendmail.mc";
SendmailSendmailCfPath = "/etc/mail/sendmail.cf"; SendmailSendmailCfPath = "/etc/mail/sendmail.cf";
SnfSnifferDirName = "/var/spool/postfix/snf-server";
SnfSnifferFileName = SnfSnifferDirName + "/snfSnifferFilter";
SnfSnifferSampleFileName = "/usr/sbin/snfSnifferFilter.sample";
BuildInstallSendmailCfFile = "(cd /etc/mail && make)"; BuildInstallSendmailCfFile = "(cd /etc/mail && make)";
ReloadMtaCommand = "/etc/init.d/sendmail reload"; ReloadMtaCommand = "/etc/init.d/sendmail reload";
IntegrationIsSupported = true; IntegrationIsSupported = true;
SendmailSendmailMcPath = "/etc/mail/sendmail.mc"; SendmailSendmailMcPath = "/etc/mail/sendmail.mc";
SendmailSendmailCfPath = "/etc/mail/sendmail.cf"; SendmailSendmailCfPath = "/etc/mail/sendmail.cf";
SnfSnifferDirName = "/usr/sbin";
SnfSnifferFileName = SnfSnifferDirName + "/snfSnifferFilter";
SnfSnifferSampleFileName = SnfSnifferDirName + "/snfSnifferFilter.sample";
BuildInstallSendmailCfFile = "(cd /etc/mail && make)"; BuildInstallSendmailCfFile = "(cd /etc/mail && make)";
ReloadMtaCommand = "/etc/init.d/sendmail reload"; ReloadMtaCommand = "/etc/init.d/sendmail reload";
IntegrationIsSupported = true; IntegrationIsSupported = true;
SendmailSendmailMcPath = "/etc/mail/linux.mc"; SendmailSendmailMcPath = "/etc/mail/linux.mc";
SendmailSendmailCfPath = "/etc/mail/sendmail.cf"; SendmailSendmailCfPath = "/etc/mail/sendmail.cf";
SnfSnifferDirName = "/usr/sbin";
SnfSnifferFileName = SnfSnifferDirName + "/snfSnifferFilter";
SnfSnifferSampleFileName = SnfSnifferDirName + "/snfSnifferFilter.sample";
BuildInstallSendmailCfFile = "(cd /etc/mail && rm -f sendmail.cf && m4 /etc/mail/linux.mc > sendmail.cf)"; BuildInstallSendmailCfFile = "(cd /etc/mail && rm -f sendmail.cf && m4 /etc/mail/linux.mc > sendmail.cf)";
ReloadMtaCommand = "/etc/init.d/sendmail reload"; ReloadMtaCommand = "/etc/init.d/sendmail reload";
} }
ProcmailRcSnifferIntegration = ":0 fw\n| " + SnfSnifferFileName;
ProcmailRcSnifferIntegration += "\n";
} }
void void
if (Verbose()) { if (Verbose()) {
std::cout << "Add to sendmail file " << SendmailSendmailMcPath << ": '"
<< SnfMilterSendmailMcIntegrationString << "' and generate new "
<< SendmailSendmailCfPath << " file with the command '"
<< BuildInstallSendmailCfFile << "'...";
std::cout << "Create " << SnfSnifferFileName << " if it doesn't exist...";
}
if (!Explain()) {
if (!FileExists(SnfSnifferFileName)) { // Create SnfSnifferFilter script
// if it doesn't exist.
SaveFile->CreateBackupFile(SnfSnifferFileName);
if (!FileExists(SnfSnifferDirName)) {
MkDir(SnfSnifferDirName);
}
SetMode(SnfSnifferDirName, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
SetOwnerGroup(SnfSnifferDirName);
Copy(SnfSnifferSampleFileName, SnfSnifferFileName);
SetMode(SnfSnifferFileName, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
SetOwnerGroup(SnfSnifferFileName);
}
}
OutputVerboseEnd();
if (Verbose()) {
std::cout << "Add\n\n" << ProcmailRcSnifferIntegration << "\n\nto " << ProcmailRcFileName << "...";
} }
std::string ProcmailRcFileContent;
if (!Explain()) { if (!Explain()) {
for (FileToBackupType::iterator iFile = FileToBackup.begin(); iFile != FileToBackup.end(); iFile++) {
if (FileExists(ProcmailRcFileName)) { // Read any existing procmail configuration.
SaveFile->CreateBackupFile(*iFile); // Save any existing file.
std::ifstream Input;
Input.open(ProcmailRcFileName.c_str());
if (!Input) {
std::string Temp;
Temp = "Error opening the procmail configuration file " + ProcmailRcFileName;
Temp += " for reading: ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
if (!Input.eof()) {
std::ostringstream Buffer;
Buffer << Input.rdbuf();
ProcmailRcFileContent = Buffer.str();
}
Input.close();
if (!Input) {
std::string Temp;
Temp = "Error closing the procmail configuration file " + ProcmailRcFileName;
Temp += " after reading: ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
} }
std::ofstream Output; // Append the configuration.
ProcmailRcFileContent = ProcmailRcSnifferIntegration + ProcmailRcFileContent;
SaveFile->CreateBackupFile(ProcmailRcFileName);
Output.open(SendmailSendmailMcPath.c_str(), std::ios::app);
std::ofstream Output; // Write the updated contents.
Output.open(ProcmailRcFileName.c_str(), std::ios::trunc);
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error opening the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error opening the procmail configuration file " + ProcmailRcFileName;
Temp += " for writing: "; Temp += " for writing: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
} }
Output << SnfMilterSendmailMcIntegrationString << "\n";
Output << ProcmailRcFileContent;
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error appending to the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error writing the procmail configuration file " + ProcmailRcFileName;
Temp += ": "; Temp += ": ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error closing the sendmail configuration file " + SendmailSendmailMcPath;
Temp += " after appending: ";
Temp = "Error closing the procmail configuration file " + ProcmailRcFileName;
Temp += " after writing: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
}
if (std::system(BuildInstallSendmailCfFile.c_str()) != 0) {
std::string Temp;
Temp = "Error generating sendmail configuration file " + SendmailSendmailCfPath;
throw std::runtime_error(Temp);
} }
} }
if (!ReloadMta()) { if (!ReloadMta()) {
std::cerr << "Unable to reload the sendmail configuration. Please reload " std::cerr << "Unable to reload the sendmail configuration. Please reload "
<< " the sendmail configuration for the integration with SNFMilter to take effect.";
<< " the sendmail configuration for the integration with SNFServer to take effect.";
} }
if (Verbose()) { if (Verbose()) {
std::cout << "Remove integration in sendmail file " << SendmailSendmailMcPath
<< " and generate new " << SendmailSendmailCfPath << " file with the command '"
<< BuildInstallSendmailCfFile << "'--\n";
std::cout << "Remove integration in procmail file " << ProcmailRcFileName << "--\n";
} }
if (!Explain()) { if (!Explain()) {
for (FileToBackupType::iterator iFile = FileToBackup.begin(); iFile != FileToBackup.end(); iFile++) {
SaveFile->CreateBackupFile(*iFile); // Save any existing file.
}
Input.open(SendmailSendmailMcPath.c_str()); // Read the contents.
Input.open(ProcmailRcFileName.c_str());
if (!Input) { if (!Input) {
std::string Temp; std::string Temp;
Temp = "Error opening the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error opening the procmail configuration file " + ProcmailRcFileName;
Temp += " for reading: "; Temp += " for reading: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
} }
std::string Content;
std::string Line;
std::ostringstream ContentStream;
while (getline(Input, Line)) {
ContentStream << Input.rdbuf();
if (std::string::npos != Line.find(SnfMilterSendmailMcSearchString)) { // Check for integration line.
Input.close();
if (!Input) {
std::string Temp;
if (Verbose()) {
Temp = "Error closing the procmail configuration file " + ProcmailRcFileName;
Temp += ": ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
std::cout << " Remove '" << Line << "'...\n";
std::string Content;
}
continue; // Do not copy this line.
Content = ContentStream.str();
}
if (Verbose()) {
Content += Line + "\n"; // Copy this line.
std::cout << " Remove all occurances of\n\n" << ProcmailRcSnifferIntegration << "\n\n"
<< " from" << ProcmailRcFileName << "...\n";
} }
if (!Input.eof()) { // Should be at end-of-file.
std::string Temp;
std::string::size_type IntegrationBegin = std::string::npos;
Temp = "Error reading the sendmail configuration file " + SendmailSendmailMcPath;
Temp += ": ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
}
while ((IntegrationBegin = Content.find(ProcmailRcSnifferIntegration)) != std::string::npos) {
Input.close();
if (Input.bad()) {
std::string Temp;
Content.erase(IntegrationBegin, ProcmailRcSnifferIntegration.length());
Temp = "Error closing the sendmail configuration file " + SendmailSendmailMcPath;
Temp += " after reading: ";
Temp += strerror(errno);
throw std::runtime_error(Temp);
} }
SaveFile->CreateBackupFile(ProcmailRcFileName);
std::ofstream Output; // Write the updated contents. std::ofstream Output; // Write the updated contents.
Output.open(SendmailSendmailMcPath.c_str(), std::ios::trunc);
Output.open(ProcmailRcFileName.c_str(), std::ios::trunc);
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error opening the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error opening the procmail configuration file " + ProcmailRcFileName;
Temp += " for writing: "; Temp += " for writing: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error writing the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error writing the procmail configuration file " + ProcmailRcFileName;
Temp += ": "; Temp += ": ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
if (!Output) { if (!Output) {
std::string Temp; std::string Temp;
Temp = "Error closing the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error closing the procmail configuration file " + ProcmailRcFileName;
Temp += " after writing: "; Temp += " after writing: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
} }
if (std::system(BuildInstallSendmailCfFile.c_str()) != 0) { // Rebuild and install the sendmail configuration file.
std::string Temp;
Temp = "Error generating sendmail configuration file " + SendmailSendmailCfPath;
throw std::runtime_error(Temp);
}
} }
OutputVerboseEnd(); OutputVerboseEnd();
if (!ReloadMta()) { if (!ReloadMta()) {
std::cerr << "Unable to reload the sendmail configuration. Please run " std::cerr << "Unable to reload the sendmail configuration. Please run "
<< "'sendmail reload' for the integration with SNFMilter to take effect.";
<< "'sendmail reload' for the integration with SNFServer to take effect.";
} }
if (Verbose()) { if (Verbose()) {
std::cout << "Checking for any SNFMilter integration in the sendmail file " << SendmailSendmailMcPath << "...";
std::cout << "Checking for any SNFServer integration in the procmail file " << ProcmailRcFileName << "...";
} }
if (!FileExists(SendmailSendmailMcPath)) {
if (!FileExists(ProcmailRcFileName)) {
if (Verbose()) { if (Verbose()) {
std::ifstream Input; std::ifstream Input;
Input.open(SendmailSendmailMcPath.c_str()); // Read the contents.
Input.open(ProcmailRcFileName.c_str()); // Read the contents.
if (!Input) { if (!Input) {
std::string Temp; std::string Temp;
Temp = "Error opening the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error opening the procmail configuration file " + ProcmailRcFileName;
Temp += " for reading: "; Temp += " for reading: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
} }
std::string Line;
while (getline(Input, Line)) {
std::string ProcmailRcFileContent;
if (std::string::npos != Line.find(SnfMilterSendmailMcSearchString)) { // Check for integration line.
if (!Input.eof()) {
Integrated = true; // Found it.
std::ostringstream Buffer;
break;
}
Buffer << Input.rdbuf();
ProcmailRcFileContent = Buffer.str();
} }
Input.close(); Input.close();
if (Input.bad()) {
if (!Input) {
std::string Temp; std::string Temp;
Temp = "Error closing the sendmail configuration file " + SendmailSendmailMcPath;
Temp = "Error closing the procmail configuration file " + ProcmailRcFileName;
Temp += " after reading: "; Temp += " after reading: ";
Temp += strerror(errno); Temp += strerror(errno);
throw std::runtime_error(Temp); throw std::runtime_error(Temp);
} }
Integrated = (ProcmailRcFileContent.find(ProcmailRcSnifferIntegration) != std::string::npos);
if (Verbose()) { if (Verbose()) {
if (Integrated) { if (Integrated) {
std::cout << "found '" << Line << "'...";
std::cout << "found\n\n" << ProcmailRcSnifferIntegration << "\n\n...";
} else { } else {

+ 17
- 2
SNF_CS_Developer_Package/SNFUtility/SNFServerConfig/SendmailIntegrate.hpp Zobrazit soubor

// \file SendmailIntegrate.hpp // \file SendmailIntegrate.hpp
// //
// Copyright (C) 2011 ARM Research Labs, LLC.
// Copyright (C) 2012 ARM Research Labs, LLC.
// See www.armresearch.com for the copyright terms. // See www.armresearch.com for the copyright terms.
// //
// This file defines the SendmailIntegrate interface. // This file defines the SendmailIntegrate interface.
#include "MtaIntegrate.hpp" #include "MtaIntegrate.hpp"
/// Class to manage the SNFMilter integration with sendmail.
/// Class to manage the SNFServer integration with sendmail.
// //
// This class implements the MtaIntegrate interface for sendmail. // This class implements the MtaIntegrate interface for sendmail.
// //
virtual bool IsIntegrated(); virtual bool IsIntegrated();
/// Directory containing the snfSniffer script.
std::string SnfSnifferDirName;
/// snfSniffer script file name, including the directory.
std::string SnfSnifferFileName;
/// Sample snfSniffer script file name, including the directory.
std::string SnfSnifferSampleFileName;
/// procmail system configuration file name.
std::string ProcmailRcFileName;
/// Integration lines for procmail configuration file.
std::string ProcmailRcSnifferIntegration;
/// Sendmail sendmail.mc file path. /// Sendmail sendmail.mc file path.
std::string SendmailSendmailMcPath; std::string SendmailSendmailMcPath;

Načítá se…
Zrušit
Uložit