[APITESTS] Use StringCbPrintfA instead of sprintf
authorVictor Perevertkin <victor@perevertkin.ru>
Sat, 17 Aug 2019 20:04:41 +0000 (23:04 +0300)
committerVictor Perevertkin <victor@perevertkin.ru>
Tue, 20 Aug 2019 13:05:47 +0000 (15:05 +0200)
And fix a buffer size in Test_AddFontResourceA

modules/rostests/apitests/advapi32/IsTextUnicode.c
modules/rostests/apitests/apphelp/layerapi.c
modules/rostests/apitests/gdi32/AddFontResource.c
modules/rostests/apitests/kernel32/GetVolumeInformation.c
modules/rostests/apitests/ntdll/RtlDosPathNameToNtPathName_U.c
modules/rostests/apitests/ntdll/RtlGenerate8dot3Name.c
modules/rostests/apitests/setupapi/SetupDiInstallClassExA.c
modules/rostests/apitests/setupapi/SetupInstallServicesFromInfSectionEx.c

index 9bd170c..ba10640 100644 (file)
@@ -18,9 +18,9 @@ PVOID LoadCodePageData(ULONG Code)
     GetSystemDirectoryA(sysdir, MAX_PATH);
 
     if (Code != -1)
-       sprintf(filename, "%s\\c_%lu.nls", sysdir, Code);
+        StringCbPrintfA(filename, sizeof(filename),  "%s\\c_%lu.nls", sysdir, Code);
     else
-        sprintf(filename, "%s\\l_intl.nls", sysdir);
+        StringCbPrintfA(filename, sizeof(filename),  "%s\\l_intl.nls", sysdir);
 
     hFile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
     if (hFile != INVALID_HANDLE_VALUE)
index fd44398..f06457c 100644 (file)
@@ -17,6 +17,7 @@
 #endif
 #include <winerror.h>
 #include <stdio.h>
+#include <strsafe.h>
 
 #include "wine/test.h"
 #include "apitest_iathook.h"
@@ -310,9 +311,9 @@ static void test_SdbGetPermLayerKeys(void)
         skip("Skipping tests for HKLM, cannot alter the registry\n");
     }
     /* Fail from these paths */
-    sprintf(tmp, "\\?\\%s", file);
+    StringCbPrintfA(tmp, sizeof(tmp), "\\?\\%s", file);
     expect_Sdb(tmp, GPLK_USER, FALSE, 0xffffffff, "");
-    sprintf(tmp, "\\??\\%s", file);
+    StringCbPrintfA(tmp, sizeof(tmp), "\\??\\%s", file);
     expect_Sdb(tmp, GPLK_USER, FALSE, 0xffffffff, "");
 
     ok(setLayerValue(FALSE, file, "!#!# RUNASADMIN RUNASADMIN  !#  WINXPSP3    "), "Expected setLayerValue not to fail\n");
index cee4079..24c8433 100644 (file)
@@ -11,7 +11,7 @@
 
 void Test_AddFontResourceA()
 {
-    CHAR szFileNameA[MAX_PATH];
+    CHAR szFileNameA[MAX_PATH*2 + 3];
     CHAR szFileNameFont1A[MAX_PATH];
     CHAR szFileNameFont2A[MAX_PATH];
     int result;
@@ -24,7 +24,7 @@ void Test_AddFontResourceA()
     memcpy(szFileNameFont2A,szFileNameA,MAX_PATH );
     strcat(szFileNameFont2A, "\\bin\\testdata\\test.otf");
 
-    RtlZeroMemory(szFileNameA,MAX_PATH);
+    RtlZeroMemory(szFileNameA, sizeof(szFileNameA));
 
     /*
      * Start testing Ansi version
index 5184f1c..8bf96d6 100644 (file)
@@ -73,7 +73,7 @@ TestGetVolumeInformationW(VOID)
     WCHAR Outbuf[MAX_PATH];
     DWORD i, MCL, Flags, Len;
 
-    memset(Outbuf, 0xAA, MAX_PATH);
+    memset(Outbuf, 0xAA, sizeof(Outbuf));
     Ret = GetVolumeInformationW(L"C:\\", NULL, 0, NULL, &MCL, &Flags, Outbuf, MAX_PATH);
     ok(Ret != FALSE, "GetVolumeInformationW failed: %ld\n", GetLastError());
     for (i = 0; i < MAX_PATH; ++i)
@@ -85,7 +85,7 @@ TestGetVolumeInformationW(VOID)
     }
     ok(i != MAX_PATH, "String was not null terminated!\n");
 
-    memset(Outbuf, 0xAA, MAX_PATH);
+    memset(Outbuf, 0xAA, sizeof(Outbuf));
     Len = i;
     Ret = GetVolumeInformationW(L"C:\\", NULL, 0, NULL, &MCL, &Flags, Outbuf, Len + 1);
     ok(Ret != FALSE, "GetVolumeInformationW failed: %ld\n", GetLastError());
@@ -99,7 +99,7 @@ TestGetVolumeInformationW(VOID)
     ok(i != MAX_PATH, "String was not null terminated!\n");
     ok(i == Len, "String was truncated\n");
 
-    memset(Outbuf, 0xAA, MAX_PATH);
+    memset(Outbuf, 0xAA, sizeof(Outbuf));
     Len = i;
     SetLastError(0xdeadbeef);
     Ret = GetVolumeInformationW(L"C:\\", NULL, 0, NULL, &MCL, &Flags, Outbuf, Len);
index 59a1552..9cbeefe 100644 (file)
@@ -57,7 +57,7 @@ typedef struct UNICODE_STRING {
     USHORT Length;
     USHORT MaximumLength;
     PWSTR  Buffer;
-} UNICODE_STRING, *PUNICODE_STRING; 
+} UNICODE_STRING, *PUNICODE_STRING;
 
 typedef struct _RTLP_CURDIR_REF
 {
@@ -207,7 +207,8 @@ typedef struct DirComponents
        char szCD[512];
        char szCDPlusSlash[512];
        char* pszLastCDComponent;
-       char szCurDrive[4];
+       char szCurDrive[3];
+       char reserved1;
        char szCurDriveSlash[4];
        char szParentDir[512];
        char szParentDirPlusSlash[512];
@@ -346,7 +347,7 @@ int main()
 #endif // PRINT_INFO
 
        DirComponents cd;
-       char szTmp[512];
+       char szTmp[518];
 
 #ifndef COMPILE_AS_ROSTEST
        InitFunctionPointer();
index 8ea52d0..9b60652 100644 (file)
@@ -76,9 +76,9 @@ PVOID LoadCodePageData(ULONG Code)
     GetSystemDirectoryA(sysdir, MAX_PATH);
 
     if (Code != -1)
-       sprintf(filename, "%s\\c_%lu.nls", sysdir, Code);
+        StringCbPrintfA(filename, sizeof(filename), "%s\\c_%lu.nls", sysdir, Code);
     else
-        sprintf(filename, "%s\\l_intl.nls", sysdir);
+        StringCbPrintfA(filename, sizeof(filename), "%s\\l_intl.nls", sysdir);
 
     hFile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
     if (hFile != INVALID_HANDLE_VALUE)
index 34c0546..73bf273 100644 (file)
@@ -25,6 +25,7 @@
 #include <winreg.h>
 #include <winsvc.h>
 #include <setupapi.h>
+#include <strsafe.h>
 
 static const char inffile[] = "test.inf";
 static char CURR_DIR[MAX_PATH];
@@ -56,7 +57,7 @@ static void test_SetupDiInstallClassExA(void)
     /* [Version]:Signature */
     strcpy(inf, "[Version]\nSignature=\"$Chicago$\"\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -68,7 +69,7 @@ static void test_SetupDiInstallClassExA(void)
     /* [Version]:Signature+Class */
     strcat(inf, "Class=MySampleClass\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -80,7 +81,7 @@ static void test_SetupDiInstallClassExA(void)
     /* [Version]:Signature+Class+ClassGUID */
     strcat(inf, "ClassGuid={3b409830-5f9d-432a-abf5-7d2e4e102467}\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -92,7 +93,7 @@ static void test_SetupDiInstallClassExA(void)
     /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]Empty */
     strcat(inf, "[ClassInstall32.NT]\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -104,13 +105,13 @@ static void test_SetupDiInstallClassExA(void)
     {
         RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
         del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
-        ok(del == ERROR_SUCCESS, "Expected success \n"); 
+        ok(del == ERROR_SUCCESS, "Expected success \n");
     }
 
     /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg */
     strcat(inf, "AddReg=SampleClassAddReg\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -122,13 +123,13 @@ static void test_SetupDiInstallClassExA(void)
     {
         RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
         del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
-        ok(del == ERROR_SUCCESS, "Expected success \n"); 
+        ok(del == ERROR_SUCCESS, "Expected success \n");
     }
 
     /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg];*/
     strcat(inf, "[SampleClassAddReg]\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -140,13 +141,13 @@ static void test_SetupDiInstallClassExA(void)
     {
         RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
         del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
-        ok(del == ERROR_SUCCESS, "Expected success \n"); 
+        ok(del == ERROR_SUCCESS, "Expected success \n");
     }
 
     /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg]HKR;*/
     strcat(inf, "HKR,,,,\"ReactOS Test SetupDiInstallClassExA\"\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -158,13 +159,13 @@ static void test_SetupDiInstallClassExA(void)
     {
         RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
         del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
-        ok(del == ERROR_SUCCESS, "Expected success \n"); 
+        ok(del == ERROR_SUCCESS, "Expected success \n");
     }
 
     /*[Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg;[SampleClassAddReg]HKR;[ClassInstall32.NT.Services]*/
     strcat(inf, "[ClassInstall32.NT.Services]\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
 
     SetLastError(0xdeadbeef);
     ret = SetupDiInstallClassExA(NULL, path, DI_QUIETINSTALL, NULL, NULL, NULL,NULL);
@@ -176,7 +177,7 @@ static void test_SetupDiInstallClassExA(void)
     {
         RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
         del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
-        ok(del == ERROR_SUCCESS, "Expected success\n"); 
+        ok(del == ERROR_SUCCESS, "Expected success\n");
     }
 
     /* Add a reference */
index 4e775c3..20255fa 100644 (file)
@@ -25,6 +25,7 @@
 #include <winreg.h>
 #include <winsvc.h>
 #include <setupapi.h>
+#include <strsafe.h>
 
 static const char inffile[] = "test.inf";
 static char CURR_DIR[MAX_PATH];
@@ -72,7 +73,7 @@ static void test_SetupInstallServicesFromInfSectionExA(void)
     /* Basic inf file to satisfy SetupOpenInfFileA */
     strcpy(inf, "[Version]\nSignature=\"$Chicago$\"\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
     infhandle = SetupOpenInfFileA(path, NULL, INF_STYLE_WIN4, NULL);
 
     /* Nothing but the Version section */
@@ -193,7 +194,7 @@ static void test_SetupInstallServicesFromInfSectionExA(void)
     strcat(inf, "[XSP.InstallPerVer]\n");
     strcat(inf, "AddReg=AspEventlogMsg.Reg,Perf.Reg,AspVersions.Reg,FreeADO.Reg,IndexServer.Reg\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
     infhandle = SetupOpenInfFileA(path, NULL, INF_STYLE_WIN4, NULL);
 
     SetLastError(0xdeadbeef);
@@ -227,7 +228,7 @@ static void test_SetupInstallServicesFromInfSectionExW(void)
     /* Basic inf file to satisfy SetupOpenInfFileA */
     strcpy(inf, "[Version]\nSignature=\"$Chicago$\"\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
     infhandle = SetupOpenInfFileA(path, NULL, INF_STYLE_WIN4, NULL);
 
     /* Nothing but the Version section */
@@ -348,7 +349,7 @@ static void test_SetupInstallServicesFromInfSectionExW(void)
     strcat(inf, "[XSP.InstallPerVer]\n");
     strcat(inf, "AddReg=AspEventlogMsg.Reg,Perf.Reg,AspVersions.Reg,FreeADO.Reg,IndexServer.Reg\n");
     create_inf_file(inffile, inf);
-    sprintf(path, "%s\\%s", CURR_DIR, inffile);
+    StringCbPrintfA(path, sizeof(path), "%s\\%s", CURR_DIR, inffile);
     infhandle = SetupOpenInfFileA(path, NULL, INF_STYLE_WIN4, NULL);
 
     SetLastError(0xdeadbeef);
@@ -364,7 +365,7 @@ static void test_SetupInstallServicesFromInfSectionExW(void)
 
 START_TEST(SetupInstallServicesFromInfSectionEx)
 {
-    char temp_path[MAX_PATH], prev_path[MAX_PATH]; 
+    char temp_path[MAX_PATH], prev_path[MAX_PATH];
 
     GetCurrentDirectoryA(MAX_PATH, prev_path);
     GetTempPathA(MAX_PATH, temp_path);