Windows: Use periodic update of connected devices only if there is a Favorite that uses VolumeID. Add command option to disable the period update of devices.

This commit is contained in:
Mounir IDRASSI 2019-09-29 14:44:22 +02:00
parent 7d88577c61
commit 909255d55f
No known key found for this signature in database
GPG Key ID: 02C30AE90FAE4A6F
4 changed files with 106 additions and 60 deletions

View File

@ -188,6 +188,9 @@ BOOL MountVolumesAsSystemFavorite = FALSE;
BOOL FavoriteMountOnArrivalInProgress = FALSE; BOOL FavoriteMountOnArrivalInProgress = FALSE;
BOOL MultipleMountOperationInProgress = FALSE; BOOL MultipleMountOperationInProgress = FALSE;
volatile BOOL NeedPeriodicDeviceListUpdate = FALSE;
BOOL DisablePeriodicDeviceListUpdate = FALSE;
BOOL WaitDialogDisplaying = FALSE; BOOL WaitDialogDisplaying = FALSE;
/* Handle to the device driver */ /* Handle to the device driver */
@ -12530,7 +12533,7 @@ wstring FindDeviceByVolumeID (const BYTE volumeID [VOLUME_ID_SIZE], BOOL bFromSe
/* not mounted. Look for it in the local drives*/ /* not mounted. Look for it in the local drives*/
if (bFromService) if (bFromService || !NeedPeriodicDeviceListUpdate)
{ {
for (int devNumber = 0; devNumber < MAX_HOST_DRIVE_NUMBER; devNumber++) for (int devNumber = 0; devNumber < MAX_HOST_DRIVE_NUMBER; devNumber++)
{ {

View File

@ -165,6 +165,9 @@ extern BOOL MountVolumesAsSystemFavorite;
extern BOOL FavoriteMountOnArrivalInProgress; extern BOOL FavoriteMountOnArrivalInProgress;
extern BOOL MultipleMountOperationInProgress; extern BOOL MultipleMountOperationInProgress;
extern volatile BOOL NeedPeriodicDeviceListUpdate;
extern BOOL DisablePeriodicDeviceListUpdate;
#ifndef SETUP #ifndef SETUP
extern BOOL bLanguageSetInSetup; extern BOOL bLanguageSetInSetup;
#endif #endif

View File

@ -243,6 +243,8 @@ namespace VeraCrypt
switch (lw) switch (lw)
{ {
case IDOK: case IDOK:
{
BOOL bInitialOptionValue = NeedPeriodicDeviceListUpdate;
/* Global System Favorites settings */ /* Global System Favorites settings */
@ -299,6 +301,12 @@ namespace VeraCrypt
} }
} }
if (!bInitialOptionValue && NeedPeriodicDeviceListUpdate)
{
// a favorite was set to use VolumeID. We update the list of devices available for mounting as early as possible
UpdateMountableHostDeviceList ();
}
FavoriteVolumes = Favorites; FavoriteVolumes = Favorites;
ManageStartupSeq(); ManageStartupSeq();
@ -312,7 +320,7 @@ namespace VeraCrypt
EndDialog (hwndDlg, IDOK); EndDialog (hwndDlg, IDOK);
} }
}
return 1; return 1;
case IDCANCEL: case IDCANCEL:
@ -554,6 +562,7 @@ namespace VeraCrypt
void LoadFavoriteVolumes (vector <FavoriteVolume> &favorites, bool systemFavorites, bool noUacElevation) void LoadFavoriteVolumes (vector <FavoriteVolume> &favorites, bool systemFavorites, bool noUacElevation)
{ {
bool bVolumeIdInUse = false;
favorites.clear(); favorites.clear();
wstring favoritesFilePath = systemFavorites ? GetServiceConfigPath (TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES, false) : GetConfigPath (TC_APPD_FILENAME_FAVORITE_VOLUMES); wstring favoritesFilePath = systemFavorites ? GetServiceConfigPath (TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES, false) : GetConfigPath (TC_APPD_FILENAME_FAVORITE_VOLUMES);
@ -701,10 +710,21 @@ namespace VeraCrypt
favorite.Pkcs5 = -1; favorite.Pkcs5 = -1;
} }
if (!systemFavorites && favorite.UseVolumeID)
bVolumeIdInUse = true;
favorites.push_back (favorite); favorites.push_back (favorite);
xml++; xml++;
} }
if (!systemFavorites)
{
if (bVolumeIdInUse && !DisablePeriodicDeviceListUpdate)
NeedPeriodicDeviceListUpdate = TRUE;
else
NeedPeriodicDeviceListUpdate = FALSE;
}
free (favoritesXml); free (favoritesXml);
} }
@ -763,6 +783,7 @@ namespace VeraCrypt
{ {
FILE *f; FILE *f;
int cnt = 0; int cnt = 0;
bool bVolumeIdInUse = false;
f = _wfopen (GetConfigPath (systemFavorites ? TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES : TC_APPD_FILENAME_FAVORITE_VOLUMES), L"w,ccs=UTF-8"); f = _wfopen (GetConfigPath (systemFavorites ? TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES : TC_APPD_FILENAME_FAVORITE_VOLUMES), L"w,ccs=UTF-8");
if (f == NULL) if (f == NULL)
@ -827,7 +848,11 @@ namespace VeraCrypt
s += L" useLabelInExplorer=\"1\""; s += L" useLabelInExplorer=\"1\"";
if (favorite.UseVolumeID && !IsRepeatedByteArray (0, favorite.VolumeID, sizeof (favorite.VolumeID))) if (favorite.UseVolumeID && !IsRepeatedByteArray (0, favorite.VolumeID, sizeof (favorite.VolumeID)))
{
s += L" useVolumeID=\"1\""; s += L" useVolumeID=\"1\"";
if (!systemFavorites)
bVolumeIdInUse = true;
}
s += L">" + wstring (tq) + L"</volume>"; s += L">" + wstring (tq) + L"</volume>";
@ -838,6 +863,14 @@ namespace VeraCrypt
fputws (L"\n\t</favorites>", f); fputws (L"\n\t</favorites>", f);
XmlWriteFooter (f); XmlWriteFooter (f);
if (!systemFavorites)
{
if (bVolumeIdInUse && !DisablePeriodicDeviceListUpdate)
NeedPeriodicDeviceListUpdate = TRUE;
else
NeedPeriodicDeviceListUpdate = FALSE;
}
if (!CheckFileStreamWriteErrors (hwndDlg, f, systemFavorites ? TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES : TC_APPD_FILENAME_FAVORITE_VOLUMES)) if (!CheckFileStreamWriteErrors (hwndDlg, f, systemFavorites ? TC_APPD_FILENAME_SYSTEM_FAVORITE_VOLUMES : TC_APPD_FILENAME_FAVORITE_VOLUMES))
{ {
fclose (f); fclose (f);

View File

@ -512,8 +512,11 @@ static void InitMainDialog (HWND hwndDlg)
e.Show (NULL); e.Show (NULL);
} }
if (NeedPeriodicDeviceListUpdate)
{
// initialize the list of devices available for mounting as early as possible // initialize the list of devices available for mounting as early as possible
UpdateMountableHostDeviceList (); UpdateMountableHostDeviceList ();
}
if (Silent) if (Silent)
LoadDriveLetters (hwndDlg, NULL, 0); LoadDriveLetters (hwndDlg, NULL, 0);
@ -7337,6 +7340,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
{ {
if (wParam == TIMER_ID_UPDATE_DEVICE_LIST) if (wParam == TIMER_ID_UPDATE_DEVICE_LIST)
{ {
if (NeedPeriodicDeviceListUpdate)
UpdateMountableHostDeviceList (); UpdateMountableHostDeviceList ();
} }
else else
@ -8873,6 +8877,7 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine)
OptionTryEmptyPassword, OptionTryEmptyPassword,
OptionNoWaitDlg, OptionNoWaitDlg,
OptionSecureDesktop, OptionSecureDesktop,
OptionDisableDeviceUpdate,
}; };
argument args[]= argument args[]=
@ -8901,6 +8906,7 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine)
{ OptionTryEmptyPassword, L"/tryemptypass", NULL, FALSE }, { OptionTryEmptyPassword, L"/tryemptypass", NULL, FALSE },
{ OptionNoWaitDlg, L"/nowaitdlg", NULL, FALSE }, { OptionNoWaitDlg, L"/nowaitdlg", NULL, FALSE },
{ OptionSecureDesktop, L"/secureDesktop", NULL, FALSE }, { OptionSecureDesktop, L"/secureDesktop", NULL, FALSE },
{ OptionDisableDeviceUpdate, L"/disableDeviceUpdate", NULL, FALSE },
}; };
argumentspec as; argumentspec as;
@ -8991,6 +8997,12 @@ void ExtractCommandLine (HWND hwndDlg, wchar_t *lpszCommandLine)
} }
break; break;
case OptionDisableDeviceUpdate:
{
DisablePeriodicDeviceListUpdate = TRUE;
}
break;
case OptionCache: case OptionCache:
{ {
wchar_t szTmp[16] = {0}; wchar_t szTmp[16] = {0};
@ -9530,8 +9542,6 @@ static VOID WINAPI SystemFavoritesServiceMain (DWORD argc, LPTSTR *argv)
SystemFavoritesServiceSetStatus (SERVICE_START_PENDING, 120000); SystemFavoritesServiceSetStatus (SERVICE_START_PENDING, 120000);
SystemFavoritesServiceLogInfo (wstring (L"Initializing list of host devices")); SystemFavoritesServiceLogInfo (wstring (L"Initializing list of host devices"));
// initialize the list of devices available for mounting as early as possible
UpdateMountableHostDeviceList ();
SystemFavoritesServiceLogInfo (wstring (L"Starting System Favorites mounting process")); SystemFavoritesServiceLogInfo (wstring (L"Starting System Favorites mounting process"));
@ -10112,9 +10122,6 @@ BOOL MountFavoriteVolumes (HWND hwnd, BOOL systemFavorites, BOOL logOnMount, BOO
{ {
Sleep (5000); Sleep (5000);
SystemFavoritesServiceLogInfo (wstring (L"Updating list of host devices"));
UpdateMountableHostDeviceList ();
SystemFavoritesServiceLogInfo (wstring (L"Trying to mount skipped system favorites")); SystemFavoritesServiceLogInfo (wstring (L"Trying to mount skipped system favorites"));
// Update the service status to avoid being killed // Update the service status to avoid being killed