123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- /*
- * 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 <set>
- #include <list>
- #include <kopano/CommonUtil.h>
- #include <kopano/mapiext.h>
- #include <kopano/mapiguidext.h>
- #include <kopano/memory.hpp>
- #include <mapiutil.h>
- #include <mapix.h>
- #include <kopano/stringutil.h>
- #include "fsck.h"
- using namespace KCHL;
- static bool ReadYesNoMessage(const std::string &strMessage,
- const std::string &strAuto)
- {
- string strReply;
- cout << strMessage << " [yes/no]: ";
- if (strAuto.empty())
- getline(cin, strReply);
- else {
- cout << strAuto << endl;
- strReply = strAuto;
- }
- return (strReply[0] == 'y' || strReply[0] == 'Y');
- }
- static HRESULT DeleteEntry(LPMAPIFOLDER lpFolder,
- const SPropValue *lpItemProperty)
- {
- memory_ptr<ENTRYLIST> lpEntryList;
- HRESULT hr = MAPIAllocateBuffer(sizeof(ENTRYLIST), &~lpEntryList);
- if (hr != hrSuccess)
- goto exit;
- hr = MAPIAllocateMore(sizeof(SBinary), lpEntryList, (void**)&lpEntryList->lpbin);
- if (hr != hrSuccess)
- goto exit;
- lpEntryList->cValues = 1;
- lpEntryList->lpbin[0].cb = lpItemProperty->Value.bin.cb;
- lpEntryList->lpbin[0].lpb = lpItemProperty->Value.bin.lpb;
- hr = lpFolder->DeleteMessages(lpEntryList, 0, NULL, 0);
- exit:
- if (hr == hrSuccess)
- cout << "Item deleted." << endl;
- else
- cout << "Failed to delete entry." << endl;
- return hr;
- }
- static HRESULT FixProperty(LPMESSAGE lpMessage, const std::string &strName,
- ULONG ulTag, __UPV Value)
- {
- HRESULT hr;
- SPropValue ErrorProp;
- ErrorProp.ulPropTag = ulTag;
- ErrorProp.Value = Value;
- /* NOTE: Named properties don't have the PT value set by default,
- The caller of this function should have taken care of this. */
- if (PROP_ID(ulTag) == 0 || PROP_TYPE(ulTag) == 0) {
- cout << "Invalid property tag: " << stringify(ulTag, true) << endl;
- return MAPI_E_INVALID_PARAMETER;
- }
- hr = lpMessage->SetProps(1, &ErrorProp, NULL);
- if (hr != hrSuccess) {
- cout << "Failed to fix broken property." << endl;
- return hr;
- }
- hr = lpMessage->SaveChanges(KEEP_OPEN_READWRITE);
- if (hr != hrSuccess)
- cout << "Failed to save changes to fix broken property";
- return hr;
- }
- static HRESULT DetectFolderEntryDetails(LPMESSAGE lpMessage, string *lpName,
- string *lpClass)
- {
- HRESULT hr = hrSuccess;
- memory_ptr<SPropValue> lpPropertyArray;
- ULONG ulPropertyCount;
- static constexpr const SizedSPropTagArray(3, PropertyTagArray) =
- {3, {PR_SUBJECT_A, PR_NORMALIZED_SUBJECT_A, PR_MESSAGE_CLASS_A}};
- hr = lpMessage->GetProps(PropertyTagArray, 0, &ulPropertyCount,
- &~lpPropertyArray);
- if (FAILED(hr)) {
- cout << "Failed to obtain all properties." << endl;
- return hr;
- }
- for (ULONG i = 0; i < ulPropertyCount; ++i) {
- if (PROP_TYPE(lpPropertyArray[i].ulPropTag) == PT_ERROR)
- continue;
- else if (lpPropertyArray[i].ulPropTag == PR_SUBJECT_A)
- *lpName = lpPropertyArray[i].Value.lpszA;
- else if (lpPropertyArray[i].ulPropTag == PR_NORMALIZED_SUBJECT_A)
- *lpName = lpPropertyArray[i].Value.lpszA;
- else if (lpPropertyArray[i].ulPropTag == PR_MESSAGE_CLASS_A)
- *lpClass = lpPropertyArray[i].Value.lpszA;
- }
- /*
- * The name is allowed to be empty, the class however not.
- */
- if (lpClass->empty())
- cout << "Unable to detect message class.";
- else
- hr = hrSuccess;
- return hr;
- }
- static HRESULT ProcessFolderEntry(Fsck *lpFsck, LPMAPIFOLDER lpFolder,
- LPSRow lpRow)
- {
- HRESULT hr = hrSuccess;
- object_ptr<IMessage> lpMessage;
- ULONG ulObjectType = 0;
- string strName;
- string strClass;
- auto lpItemProperty = PCpropFindProp(lpRow->lpProps, lpRow->cValues, PR_ENTRYID);
- if (!lpItemProperty) {
- cout << "Row does not contain an EntryID." << endl;
- goto exit;
- }
- hr = lpFolder->OpenEntry(lpItemProperty->Value.bin.cb,
- reinterpret_cast<ENTRYID *>(lpItemProperty->Value.bin.lpb),
- &IID_IMessage, MAPI_MODIFY, &ulObjectType, &~lpMessage);
- if (hr != hrSuccess) {
- cout << "Failed to open EntryID." << endl;
- goto exit;
- }
- hr = DetectFolderEntryDetails(lpMessage, &strName, &strClass);
- if (hr != hrSuccess)
- goto exit;
- hr = lpFsck->ValidateMessage(lpMessage, strName, strClass);
- if (hr != hrSuccess)
- goto exit;
- exit:
- if (hr != hrSuccess)
- hr = lpFsck->DeleteMessage(lpFolder, lpItemProperty);
- return hr;
- }
- static HRESULT ProcessFolder(Fsck *lpFsck, LPMAPIFOLDER lpFolder,
- const std::string &strName)
- {
- object_ptr<IMAPITable> lpTable;
- ULONG ulCount;
- HRESULT hr = lpFolder->GetContentsTable(0, &~lpTable);
- if(hr != hrSuccess) {
- cout << "Failed to open Folder table." << endl;
- return hr;
- }
- /*
- * Check if we have found at least *something*.
- */
- hr = lpTable->GetRowCount(0, &ulCount);
- if(hr != hrSuccess) {
- cout << "Failed to count number of rows." << endl;
- return hr;
- } else if (!ulCount) {
- cout << "No entries inside folder." << endl;
- return hr;
- }
- /*
- * Loop through each row/entry and validate.
- */
- while (true) {
- rowset_ptr lpRows;
- hr = lpTable->QueryRows(20, 0, &~lpRows);
- if (hr != hrSuccess)
- return hr;
- if (lpRows->cRows == 0)
- break;
- for (ULONG i = 0; i < lpRows->cRows; ++i) {
- hr = ProcessFolderEntry(lpFsck, lpFolder, &lpRows->aRow[i]);
- if (hr != hrSuccess)
- // Move along, nothing to see.
- cout << "Failed to validate entry." << endl;
- }
- }
- return hrSuccess;
- }
- /*
- * Fsck implementation.
- */
- HRESULT Fsck::ValidateMessage(LPMESSAGE lpMessage,
- const std::string &strName, const std::string &strClass)
- {
- cout << "Validating entry: \"" << strName << "\"" << endl;
- ++this->ulEntries;
- HRESULT hr = this->ValidateItem(lpMessage, strClass);
- cout << "Validating of entry \"" << strName << "\" ended" << endl;
- return hr;
- }
- HRESULT Fsck::ValidateFolder(LPMAPIFOLDER lpFolder,
- const std::string &strName)
- {
- cout << "Validating folder \"" << strName << "\"" << endl;
- ++this->ulFolders;
- HRESULT hr = ProcessFolder(this, lpFolder, strName);
- cout << "Validating of folder \"" << strName << "\" ended" << endl;
- return hr;
- }
- HRESULT Fsck::AddMissingProperty(LPMESSAGE lpMessage,
- const std::string &strName, ULONG ulTag, __UPV Value)
- {
- HRESULT hr = hrSuccess;
- cout << "Missing property " << strName << endl;
- ++this->ulProblems;
- if (ReadYesNoMessage("Add missing property?", auto_fix)) {
- hr = FixProperty(lpMessage, strName, ulTag, Value);
- if (hr == hrSuccess)
- ++this->ulFixed;
- }
- return hr;
- }
- HRESULT Fsck::ReplaceProperty(LPMESSAGE lpMessage,
- const std::string &strName, ULONG ulTag, const std::string &strError,
- __UPV Value)
- {
- HRESULT hr = hrSuccess;
- cout << "Invalid property " << strName << " - " << strError << endl;
- ++this->ulProblems;
- if (ReadYesNoMessage("Fix broken property?", auto_fix)) {
- hr = FixProperty(lpMessage, strName, ulTag, Value);
- if (hr == hrSuccess)
- ++this->ulFixed;
- }
- return hr;
- }
- HRESULT Fsck::DeleteRecipientList(LPMESSAGE lpMessage, std::list<unsigned int> &mapiReciptDel, bool &bChanged)
- {
- ++this->ulProblems;
- cout << mapiReciptDel.size() << " duplicate or invalid recipients found. " << endl;
- if (!ReadYesNoMessage("Remove duplicate or invalid recipients?", auto_fix))
- return hrSuccess;
- memory_ptr<ADRLIST> lpMods;
- HRESULT hr = MAPIAllocateBuffer(CbNewADRLIST(mapiReciptDel.size()), &~lpMods);
- if (hr != hrSuccess)
- return hr;
- lpMods->cEntries = 0;
- for (const auto &recip : mapiReciptDel) {
- auto &ent = lpMods->aEntries[lpMods->cEntries];
- ent.cValues = 1;
- hr = MAPIAllocateMore(sizeof(SPropValue), lpMods, reinterpret_cast<void **>(&ent.rgPropVals));
- if (hr != hrSuccess)
- return hr;
- ent.rgPropVals->ulPropTag = PR_ROWID;
- ent.rgPropVals->Value.ul = recip;
- }
- hr = lpMessage->ModifyRecipients(MODRECIP_REMOVE, lpMods.get());
- if (hr != hrSuccess)
- return hr;
- hr = lpMessage->SaveChanges(KEEP_OPEN_READWRITE);
- if (hr != hrSuccess)
- return hr;
- bChanged = true;
- ++this->ulFixed;
- return hrSuccess;
- }
- HRESULT Fsck::DeleteMessage(LPMAPIFOLDER lpFolder,
- const SPropValue *lpItemProperty)
- {
- HRESULT hr = hrSuccess;
- if (!ReadYesNoMessage("Delete message?", auto_del))
- return hr;
- hr = DeleteEntry(lpFolder, lpItemProperty);
- if (hr == hrSuccess)
- ++this->ulDeleted;
- return hr;
- }
- HRESULT Fsck::ValidateRecursiveDuplicateRecipients(LPMESSAGE lpMessage, bool &bChanged)
- {
- HRESULT hr = hrSuccess;
- bool bSubChanged = false;
- object_ptr<IMAPITable> lpTable;
- ULONG cRows = 0;
- static constexpr const SizedSPropTagArray(2, sptaProps) =
- {2, {PR_ATTACH_NUM, PR_ATTACH_METHOD}};
- hr = lpMessage->GetAttachmentTable(0, &~lpTable);
- if (hr != hrSuccess)
- return hr;
- hr = lpTable->GetRowCount(0, &cRows);
- if (hr != hrSuccess)
- return hr;
- if (cRows == 0)
- goto message;
- hr = lpTable->SetColumns(sptaProps, 0);
- if (hr != hrSuccess)
- return hr;
- while (true) {
- rowset_ptr pRows;
- hr = lpTable->QueryRows(50, 0, &~pRows);
- if (hr != hrSuccess)
- return hr;
- if (pRows->cRows == 0)
- break;
- for (unsigned int i = 0; i < pRows->cRows; ++i) {
- if (pRows->aRow[i].lpProps[1].ulPropTag != PR_ATTACH_METHOD ||
- pRows->aRow[i].lpProps[1].Value.ul != ATTACH_EMBEDDED_MSG)
- continue;
- object_ptr<IAttach> lpAttach;
- object_ptr<IMessage> lpSubMessage;
- bSubChanged = false;
- hr = lpMessage->OpenAttach(pRows->aRow[i].lpProps[0].Value.ul, nullptr, MAPI_BEST_ACCESS, &~lpAttach);
- if (hr != hrSuccess)
- return hr;
- hr = lpAttach->OpenProperty(PR_ATTACH_DATA_OBJ, &IID_IMessage, 0, MAPI_MODIFY, &~lpSubMessage);
- if (hr != hrSuccess)
- return hr;
- hr = ValidateRecursiveDuplicateRecipients(lpSubMessage, bSubChanged);
- if (hr != hrSuccess)
- return hr;
- if (bSubChanged) {
- hr = lpAttach->SaveChanges(KEEP_OPEN_READWRITE);
- if (hr != hrSuccess)
- return hr;
- bChanged = bSubChanged;
- }
- }
- }
- message:
- hr = ValidateDuplicateRecipients(lpMessage, bChanged);
- if (hr != hrSuccess)
- return hr;
- if (bChanged)
- lpMessage->SaveChanges(KEEP_OPEN_READWRITE);
- return hrSuccess;
- }
- HRESULT Fsck::ValidateDuplicateRecipients(LPMESSAGE lpMessage, bool &bChanged)
- {
- object_ptr<IMAPITable> lpTable;
- ULONG cRows = 0;
- std::set<std::string> mapRecip;
- std::list<unsigned int> mapiReciptDel;
- std::string strData;
- unsigned int i = 0;
- static constexpr const SizedSPropTagArray(5, sptaProps) =
- {5, {PR_ROWID, PR_DISPLAY_NAME_A, PR_EMAIL_ADDRESS_A,
- PR_RECIPIENT_TYPE, PR_ENTRYID}};
- HRESULT hr = lpMessage->GetRecipientTable(0, &~lpTable);
- if (hr != hrSuccess)
- return hr;
- hr = lpTable->GetRowCount(0, &cRows);
- if (hr != hrSuccess)
- return hr;
- if (cRows < 1)
- // 0 or 1 row not needed to check
- return hr;
- hr = lpTable->SetColumns(sptaProps, 0);
- if (hr != hrSuccess)
- return hr;
- while (true) {
- rowset_ptr pRows;
- hr = lpTable->QueryRows(50, 0, &~pRows);
- if (hr != hrSuccess)
- return hr;
- if (pRows->cRows == 0)
- break;
- for (i = 0; i < pRows->cRows; ++i) {
- if (pRows->aRow[i].lpProps[1].ulPropTag != PR_DISPLAY_NAME_A && pRows->aRow[i].lpProps[2].ulPropTag != PR_EMAIL_ADDRESS_A) {
- mapiReciptDel.push_back(pRows->aRow[i].lpProps[0].Value.ul);
- continue;
- }
- // Invalid or missing entryid
- if (pRows->aRow[i].lpProps[4].ulPropTag != PR_ENTRYID || pRows->aRow[i].lpProps[4].Value.bin.cb == 0) {
- mapiReciptDel.push_back(pRows->aRow[i].lpProps[0].Value.ul);
- continue;
- }
- strData.clear();
- if (pRows->aRow[i].lpProps[1].ulPropTag == PR_DISPLAY_NAME_A) strData += pRows->aRow[i].lpProps[1].Value.lpszA;
- if (pRows->aRow[i].lpProps[2].ulPropTag == PR_EMAIL_ADDRESS_A) strData += pRows->aRow[i].lpProps[2].Value.lpszA;
- if (pRows->aRow[i].lpProps[3].ulPropTag == PR_RECIPIENT_TYPE) strData += stringify(pRows->aRow[i].lpProps[3].Value.ul);
- auto res = mapRecip.insert(strData);
- if (res.second == false)
- mapiReciptDel.push_back(pRows->aRow[i].lpProps[0].Value.ul);
- }
- }
- // modify
- if (!mapiReciptDel.empty())
- hr = DeleteRecipientList(lpMessage, mapiReciptDel, bChanged);
- return hr;
- }
- void Fsck::PrintStatistics(const std::string &title)
- {
- cout << title << endl;
- cout << "\tFolders:\t" << ulFolders << endl;
- cout << "\tEntries:\t" << ulEntries << endl;
- cout << "\tProblems:\t" << ulProblems << endl;
- cout << "\tFixed:\t\t" << ulFixed << endl;
- cout << "\tDeleted:\t" << ulDeleted << endl;
- }
|