123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include <kopano/platform.h>
- #include <iostream>
- #include <climits>
- #include <getopt.h>
- #include <kopano/stringutil.h>
- #include <kopano/archiver-common.h>
- #include <kopano/charset/convert.h>
- #include <kopano/ECConfig.h>
- #include <kopano/ECLogger.h>
- #include <kopano/ecversion.h>
- #include "Archiver.h"
- #include "UnixUtil.cpp"
- namespace KC {
- enum modes {
- MODE_INVALID = 0,
- MODE_ATTACH,
- MODE_DETACH,
- MODE_DETACH_IDX,
- MODE_LIST,
- MODE_LIST_ARCHUSER,
- MODE_ARCHIVE,
- MODE_CLEANUP,
- MODE_AUTO_ATTACH
- };
- static const char *modename(modes mode)
- {
- const char* retval = "";
- switch (mode) {
- case MODE_INVALID:
- retval = "Invalid mode";
- break;
- case MODE_ATTACH:
- retval = "Attach";
- break;
- case MODE_DETACH:
- retval = "Detach";
- break;
- case MODE_DETACH_IDX:
- retval = "Detach by index";
- break;
- case MODE_LIST:
- retval = "List";
- break;
- case MODE_LIST_ARCHUSER:
- retval = "List archive users";
- break;
- case MODE_ARCHIVE:
- retval = "Archive";
- break;
- case MODE_CLEANUP:
- retval = "Clean-up";
- break;
- case MODE_AUTO_ATTACH:
- retval = "Auto attach";
- break;
- default:
- retval = "Undefined mode";
- }
- return retval;
- }
- /**
- * Print a help message.
- *
- * @param[in] ostr
- * std::ostream where the message is written to.
- * @param[in] lpszName
- * The name of the application to use in the output.
- */
- static void print_help(ostream &ostr, const char *lpszName)
- {
- ostr << endl;
- ostr << "Usage:" << endl;
- ostr << lpszName << " [options]" << endl << endl;
- ostr << "Options:" << endl;
- ostr << " -u <name> : Select user" << endl;
- ostr << " -l|--list : List archives for the specified user" << endl;
- ostr << " -L|--list-archiveusers : List users that have an archived attached" << endl;
- ostr << " -A|--archive : Perform archive operation" << endl;
- ostr << " If no user is specified all user stores will" << endl;
- ostr << " be archived." << endl;
- ostr << " -C|--cleanup : Perform a cleanup of the archive stores attached" << endl;
- ostr << " to the user specified with -u. If no user is" << endl;
- ostr << " specified, all archives are cleanedup." << endl;
- ostr << " --local-only : Archive or cleanup only those users that have" << endl;
- ostr << " their store on the server on which the archiver" << endl;
- ostr << " is invoked." << endl;
- ostr << " -a|--attach-to <archive store> : Attach an archive to the specified user." << endl;
- ostr << " By default a subfolder will be created with" << endl;
- ostr << " the same name as the specified user. This" << endl;
- ostr << " folder will be the root of the archive." << endl;
- ostr << " -d|--detach-from <archive store> : Detach an archive from the specified user." << endl;
- ostr << " If a user has multiple archives in the same" << endl;
- ostr << " archive store, the folder needs to be" << endl;
- ostr << " specified with --archive-folder." << endl;
- ostr << " -D|--detach <archive no> : Detach the archive specified by archive no. This" << endl;
- ostr << " number can be found by running kopano-archiver -l" << endl;
- ostr << " --auto-attach : When no user is specified with -u, all users" << endl;
- ostr << " will have their archives attached or detached" << endl;
- ostr << " based on the LDAP/ADS settings. If a user is" << endl;
- ostr << " specified only that user's store will be processed." << endl;
- ostr << " This option can be combined with -A/--archive to" << endl;
- ostr << " force an auto-attach run regardless of the" << endl;
- ostr << " enable_auto_attach configuration option." << endl;
- ostr << " -f|--archive-folder <name> : Specify an alternate name for the subfolder" << endl;
- ostr << " that acts as the root of the archive." << endl;
- ostr << " -s|--archive-server <path> : Specify the server on which the archive should" << endl;
- ostr << " be found." << endl;
- ostr << " -N|--no-folder : Don't use a subfolder that acts as the root" << endl;
- ostr << " of the archive. This implies that only one" << endl;
- ostr << " archive can be made in the specified archive" << endl;
- ostr << " store." << endl;
- ostr << " -w : Grant write permissions on the archive. This will" << endl;
- ostr << " override the auto_attach_writable config option." << endl;
- ostr << " --writable <yes|no> : Enable or disable write permissions. This will" << endl;
- ostr << " override the auto_attach_writable config option." << endl;
- ostr << " -c|--config : Use alternate config file." << endl;
- ostr << " Default: archiver.cfg" << endl;
- ostr << " --help : Show this help message." << endl;
- ostr << endl;
- }
- /**
- * Print an error message when multiple operational modes are selected by the user.
- *
- * @param[in] modeSet
- * The currently set mode.
- * @param[in] modeReq
- * The requested mode.
- * @param[in] lpszName
- * The name of the application.
- *
- * @todo Make a nicer message about what went wrong based on modeSet and modeReq.
- */
- static void print_mode_error(modes modeSet, modes modeReq,
- const char *lpszName)
- {
- cerr << "Cannot select more than one mode!" << endl;
- print_help(cerr, lpszName);
- }
- static std::string args_to_cmdline(int argc, const char * const argv[])
- {
- if (argc <= 0)
- return std::string();
- std::string strCmdLine(argv[0]);
- for (int i = 1; i < argc; ++i)
- strCmdLine.append(" '").append(shell_escape(argv[i])).append(1, '\'');
- return strCmdLine;
- }
- enum cmdOptions {
- OPT_USER = UCHAR_MAX + 1,
- OPT_ATTACH,
- OPT_DETACH,
- OPT_DETACH_IDX,
- OPT_AUTO_ATTACH,
- OPT_FOLDER,
- OPT_ASERVER,
- OPT_NOFOLDER,
- OPT_LIST,
- OPT_LIST_ARCHUSER,
- OPT_ARCHIVE,
- OPT_CLEANUP,
- OPT_CONFIG,
- OPT_LOCAL,
- OPT_WRITABLE,
- OPT_FORCE_CLEANUP,
- OPT_HELP
- };
- static const struct option long_options[] = {
- { "user", required_argument, NULL, OPT_USER },
- { "attach-to", required_argument, NULL, OPT_ATTACH },
- { "detach-from", required_argument, NULL, OPT_DETACH },
- { "detach", required_argument, NULL, OPT_DETACH_IDX },
- { "auto-attach", no_argument, NULL, OPT_AUTO_ATTACH },
- { "archive-folder", required_argument, NULL, OPT_FOLDER },
- { "archive-server", required_argument, NULL, OPT_ASERVER },
- { "no-folder", no_argument, NULL, OPT_NOFOLDER },
- { "list", no_argument, NULL, OPT_LIST },
- { "list-archiveusers", no_argument, NULL, OPT_LIST_ARCHUSER },
- { "archive", no_argument, NULL, OPT_ARCHIVE },
- { "cleanup", no_argument, NULL, OPT_CLEANUP },
- { "local-only", no_argument, NULL, OPT_LOCAL },
- { "help", no_argument, NULL, OPT_HELP },
- { "config", required_argument, NULL, OPT_CONFIG },
- { "writable", required_argument, NULL, OPT_WRITABLE },
- { "force-cleanup", no_argument, NULL, OPT_FORCE_CLEANUP },
- { NULL, no_argument, NULL, 0 }
- };
- static inline LPTSTR toLPTST(const char* lpszString, convert_context& converter) { return lpszString ? converter.convert_to<LPTSTR>(lpszString) : NULL; }
- static inline const char *yesno(bool bValue) { return bValue ? "yes" : "no"; }
- } /* namespace */
- /**
- * Program entry point
- */
- int main(int argc, char *argv[])
- {
- eResult r = Success;
- modes mode = MODE_INVALID;
- tstring strUser;
- const char *lpszArchive = NULL;
- unsigned int ulArchive = 0;
- const char *lpszFolder = NULL;
- const char *lpszArchiveServer = NULL;
- bool bLocalOnly = false;
- bool bAutoAttach = false;
- bool bForceCleanup = false;
- unsigned ulAttachFlags = 0;
- ArchiverPtr ptrArchiver;
- convert_context converter;
- const std::string strCmdLine = args_to_cmdline(argc, argv);
- std::list<configsetting_t> lSettings;
- ULONG ulFlags = 0;
- const char *lpszConfig = Archiver::GetConfigPath();
- static const configsetting_t lpDefaults[] = {
- { "pid_file", "/var/run/kopano/archiver.pid" },
- { NULL, NULL }
- };
- setlocale(LC_CTYPE, "");
- int c;
- while (1) {
- c = getopt_long(argc, argv, "u:c:lLACwa:d:D:f:s:N", long_options, NULL);
- if (c == -1)
- break;
- switch (c) {
- case 'u':
- case OPT_USER:
- strUser = converter.convert_to<tstring>(optarg);
- break;
- case 'a':
- case OPT_ATTACH:
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_ATTACH, argv[0]);
- return 1;
- }
- mode = MODE_ATTACH;
- lpszArchive = optarg;
- break;
- case 'd':
- case OPT_DETACH:
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_DETACH, argv[0]);
- return 1;
- }
- mode = MODE_DETACH;
- lpszArchive = optarg;
- break;
- case 'D':
- case OPT_DETACH_IDX: {
- char *res = NULL;
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_DETACH_IDX, argv[0]);
- return 1;
- }
- mode = MODE_DETACH_IDX;
- ulArchive = strtoul(optarg, &res, 10);
- if (!res || *res != '\0') {
- cerr << "Please specify a valid archive number." << endl;
- return 1;
- }
- }
- break;
- case OPT_AUTO_ATTACH:
- if (mode == MODE_ARCHIVE)
- bAutoAttach = true;
- else if(mode != MODE_INVALID) {
- print_mode_error(mode, MODE_AUTO_ATTACH, argv[0]);
- return 1;
- }
- mode = MODE_AUTO_ATTACH;
- break;
- case 'f':
- case OPT_FOLDER:
- if ((ulAttachFlags & ArchiveManage::UseIpmSubtree)) {
- cerr << "You cannot mix --archive-folder and --nofolder." << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- lpszFolder = optarg;
- break;
- case 's':
- case OPT_ASERVER:
- lpszArchiveServer = optarg;
- break;
- case 'N':
- case OPT_NOFOLDER:
- if (lpszFolder) {
- cerr << "You cannot mix --archive-folder and --nofolder." << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- ulAttachFlags |= ArchiveManage::UseIpmSubtree;
- break;
- case 'l':
- case OPT_LIST:
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_LIST, argv[0]);
- return 1;
- }
- mode = MODE_LIST;
- break;
- case 'L':
- case OPT_LIST_ARCHUSER:
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_LIST_ARCHUSER, argv[0]);
- return 1;
- }
- mode = MODE_LIST_ARCHUSER;
- break;
- case 'A':
- case OPT_ARCHIVE:
- if (mode == MODE_AUTO_ATTACH)
- bAutoAttach = true;
- else if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_ARCHIVE, argv[0]);
- return 1;
- }
- mode = MODE_ARCHIVE;
- break;
- case 'C':
- case OPT_CLEANUP:
- if (mode != MODE_INVALID) {
- print_mode_error(mode, MODE_CLEANUP, argv[0]);
- return 1;
- }
- mode = MODE_CLEANUP;
- break;
- case OPT_LOCAL:
- bLocalOnly = true;
- break;
- case 'c':
- case OPT_CONFIG:
- lpszConfig = optarg;
- ulFlags |= Archiver::RequireConfig;
- break;
- case 'w':
- ulAttachFlags |= ArchiveManage::Writable;
- break;
- case OPT_WRITABLE:
- if (parseBool(optarg))
- ulAttachFlags |= ArchiveManage::Writable;
- else
- ulAttachFlags |= ArchiveManage::ReadOnly;
- break;
- case OPT_FORCE_CLEANUP:
- bForceCleanup = true;
- break;
- case OPT_HELP:
- print_help(cout, argv[0]);
- return 1;
- case '?':
- // Invalid option, or required argument missing
- // getopt_long outputs the error message.
- print_help(cerr, argv[0]);
- return 1;
- default:
- break;
- };
- }
- if (mode == MODE_INVALID) {
- cerr << "Nothing to do!" << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- else if (mode == MODE_ATTACH) {
- if (strUser.empty()) {
- cerr << "Username cannot be empty" << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- if (lpszFolder != NULL && *lpszFolder == '\0')
- lpszFolder = NULL;
- }
- else if (mode == MODE_DETACH) {
- if (strUser.empty()) {
- cerr << "Username cannot be empty" << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- if (lpszFolder != NULL && *lpszFolder == '\0')
- lpszFolder = NULL;
- }
- else if (mode == MODE_LIST) {
- if (strUser.empty()) {
- cerr << "Username cannot be empty" << endl;
- print_help(cerr, argv[0]);
- return 1;
- }
- }
- else if (bForceCleanup && mode != MODE_CLEANUP) {
- cerr << "--force-cleanup is only valid in cleanup mode." << endl;
- return 1;
- }
- r = Archiver::Create(&ptrArchiver);
- if (r != Success) {
- cerr << "Failed to instantiate archiver object" << endl;
- return 1;
- }
- ulFlags |= Archiver::AttachStdErr;
- r = ptrArchiver->Init(argv[0], lpszConfig, lpDefaults, ulFlags);
- if (r == FileNotFound) {
- cerr << "Unable to open configuration file " << lpszConfig << endl;
- return 1;
- } else if (r != Success) {
- cerr << "Failed to initialize" << endl;
- return 1;
- }
- ec_log_crit("Startup command: %s", strCmdLine.c_str());
- ptrArchiver->GetLogger(Archiver::LogOnly)->Log(EC_LOGLEVEL_FATAL, "Version: %s", PROJECT_VERSION_ARCHIVER_STR);
- lSettings = ptrArchiver->GetConfig()->GetAllSettings();
- ECLogger* filelogger = ptrArchiver->GetLogger(Archiver::LogOnly);
- ptrArchiver->GetLogger(Archiver::LogOnly)->Log(EC_LOGLEVEL_FATAL, "Config settings:");
- for (const auto &s : lSettings)
- if (strcmp(s.szName, "sslkey_pass") == 0 || strcmp(s.szName, "mysql_password") == 0)
- filelogger->Log(EC_LOGLEVEL_FATAL, "* %s = '********'", s.szName);
- else
- filelogger->Log(EC_LOGLEVEL_FATAL, "* %s = '%s'", s.szName, s.szValue);
- if (mode == MODE_ARCHIVE || mode == MODE_CLEANUP)
- if (unix_create_pidfile(argv[0], ptrArchiver->GetConfig(), false) != 0)
- return 1;
- ec_log_debug("Archiver mode: %d: (%s)", mode, modename(mode));
- switch (mode) {
- case MODE_ATTACH: {
- ArchiveManagePtr ptr;
- r = ptrArchiver->GetManage(strUser.c_str(), &ptr);
- if (r != Success)
- return 1;
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Attach archive %s in server %s using folder %s", lpszArchive, lpszArchiveServer, lpszFolder);
- r = ptr->AttachTo(lpszArchiveServer, toLPTST(lpszArchive, converter), toLPTST(lpszFolder, converter), ulAttachFlags);
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_DETACH_IDX:
- case MODE_DETACH: {
- ArchiveManagePtr ptr;
- r = ptrArchiver->GetManage(strUser.c_str(), &ptr);
- if (r != Success)
- return 1;
- if (mode == MODE_DETACH_IDX) {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Detach archive %u", ulArchive);
- r = ptr->DetachFrom(ulArchive);
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- } else {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Detach archive %s on server %s, folder %s", lpszArchive, lpszArchiveServer, lpszFolder);
- r = ptr->DetachFrom(lpszArchiveServer, toLPTST(lpszArchive, converter), toLPTST(lpszFolder, converter));
- }
- }
- break;
- case MODE_AUTO_ATTACH: {
- if (strUser.size()) {
- ArchiveManagePtr ptr;
- r = ptrArchiver->GetManage(strUser.c_str(), &ptr);
- if (r != Success)
- return 1;
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Autoattach for user %ls, flags: %u", strUser.c_str(), ulAttachFlags);
- r = ptr->AutoAttach(ulAttachFlags);
- } else {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Autoattach flags: %u", ulAttachFlags);
- r = ptrArchiver->AutoAttach(ulAttachFlags);
- }
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_LIST: {
- ArchiveManagePtr ptr;
- r = ptrArchiver->GetManage(strUser.c_str(), &ptr);
- if (r != Success)
- return 1;
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: List archives");
- r = ptr->ListArchives(cout);
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_LIST_ARCHUSER: {
- ArchiveManagePtr ptr;
- r = ptrArchiver->GetManage(_T("SYSTEM"), &ptr);
- if (r != Success)
- return 1;
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: List archive users");
- r = ptr->ListAttachedUsers(cout);
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_ARCHIVE: {
- ArchiveControlPtr ptr;
- r = ptrArchiver->GetControl(&ptr);
- if (r != Success)
- return 1;
- if (strUser.size()) {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: archive user %ls (autoattach: %s, flags %u)", strUser.c_str(), yesno(bAutoAttach), ulAttachFlags);
- r = ptr->Archive(strUser, bAutoAttach, ulAttachFlags);
- } else {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: archive all users (local only: %s autoattach: %s, flags %u)", yesno(bLocalOnly), yesno(bAutoAttach), ulAttachFlags);
- r = ptr->ArchiveAll(bLocalOnly, bAutoAttach, ulAttachFlags);
- }
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_CLEANUP: {
- ArchiveControlPtr ptr;
- r = ptrArchiver->GetControl(&ptr, bForceCleanup);
- if (r != Success)
- return 1;
- if (strUser.size()) {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Cleanup user %ls ", strUser.c_str());
- r = ptr->Cleanup(strUser);
- } else {
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: Cleanup all (local only): %s", yesno(bLocalOnly));
- r = ptr->CleanupAll(bLocalOnly);
- }
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver result %d (%s)", r, ArchiveResultString(r));
- }
- break;
- case MODE_INVALID:
- filelogger->Log(EC_LOGLEVEL_DEBUG, "Archiver action: invalid");
- break;
- }
- return 0;
- }
|