|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH xenvbd] Fix build with later WDKs
From: Owen Smith <owen.smith@xxxxxxxxxx>
- Adds alias for GetProjectInfoForReference target to version.vcxproj
Later kits seemed to have renamed the build target, and will fail without
this alias target.
- Adds "/fd sha256" to signtool command line
WDK 20344 and later require binaries signed with a SHA256 file digest, or
the build outputs are deleted
- Disables warning 4061 - switch statement on enum types need to have a case for
all values of the enumeration
Signed-off-by: Owen Smith <owen.smith@xxxxxxxxxx>
- Cast enum types used as array indices to avoid bounds check complaint
Signed-off-by: Paul Durrant <paul@xxxxxxx>
---
src/xenvbd/driver.c | 4 ++--
vs2019/package/package.vcxproj | 5 +++++
vs2019/version/version.vcxproj | 6 ++++++
vs2019/xencrsh/xencrsh.vcxproj | 5 ++++-
vs2019/xendisk/xendisk.vcxproj | 5 ++++-
vs2019/xenvbd/xenvbd.vcxproj | 5 ++++-
vs2019/xenvbd_coinst/xenvbd_coinst.vcxproj | 3 +++
7 files changed, 28 insertions(+), 5 deletions(-)
diff --git a/src/xenvbd/driver.c b/src/xenvbd/driver.c
index fc1c16940ec3..1084c30fed78 100644
--- a/src/xenvbd/driver.c
+++ b/src/xenvbd/driver.c
@@ -301,7 +301,7 @@ DriverGetFeatureOverride(
{
BOOLEAN Present = FALSE;
- if (Feature < ARRAYSIZE(Driver.FeatureOverride)) {
+ if ((ULONG)Feature < ARRAYSIZE(Driver.FeatureOverride)) {
Present = Driver.FeatureOverride[Feature].Present;
*Value = Driver.FeatureOverride[Feature].Value;
}
@@ -315,7 +315,7 @@ DriverGetFeatureName(
IN XENVBD_FEATURE Feature
)
{
- return (Feature < ARRAYSIZE(Driver.FeatureOverride)) ?
+ return ((ULONG)Feature < ARRAYSIZE(Driver.FeatureOverride)) ?
Driver.FeatureOverride[Feature].Name :
NULL;
}
diff --git a/vs2019/package/package.vcxproj b/vs2019/package/package.vcxproj
index 51c57a1036cc..cc39738e13f9 100644
--- a/vs2019/package/package.vcxproj
+++ b/vs2019/package/package.vcxproj
@@ -31,6 +31,11 @@
<IntDir>..\$(ProjectName)\$(ConfigurationName)\$(Platform)\</IntDir>
<OutDir>..\$(ConfigurationName)\$(Platform)\</OutDir>
</PropertyGroup>
+ <ItemDefinitionGroup>
+ <DriverSign>
+ <FileDigestAlgorithm>sha256</FileDigestAlgorithm>
+ </DriverSign>
+ </ItemDefinitionGroup>
<PropertyGroup Condition="'$(Platform)'=='Win32'">
<ArchiveDir>..\..\$(SolutionName)\x86</ArchiveDir>
</PropertyGroup>
diff --git a/vs2019/version/version.vcxproj b/vs2019/version/version.vcxproj
index 9d149d0f10dd..b6ec6f3ecb0c 100644
--- a/vs2019/version/version.vcxproj
+++ b/vs2019/version/version.vcxproj
@@ -13,4 +13,10 @@
<Target Name="Build">
<Exec Command="powershell.exe -ExecutionPolicy Bypass -NoProfile
-NonInteractive -File $(Script) $(Platform) $(SolutionDir) $(IncludeDir)
$(SourceDir)" />
</Target>
+ <Target Name="GetProjectInfoForReference"
+ Returns="@(ProjectInfoForReference)">
+ <ItemGroup>
+ <ProjectInfoForReference Include="@(LibFullPath)" />
+ </ItemGroup>
+ </Target>
</Project>
diff --git a/vs2019/xencrsh/xencrsh.vcxproj b/vs2019/xencrsh/xencrsh.vcxproj
index 6db3e1ffb12d..7aae718b5206 100644
--- a/vs2019/xencrsh/xencrsh.vcxproj
+++ b/vs2019/xencrsh/xencrsh.vcxproj
@@ -24,7 +24,7 @@
<PreprocessorDefinitions>PROJECT=$(ProjectName);POOL_NX_OPTIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<IntrinsicFunctions>true</IntrinsicFunctions>
<WarningLevel>EnableAllWarnings</WarningLevel>
-
<DisableSpecificWarnings>4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+
<DisableSpecificWarnings>4061;4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnablePREfast>true</EnablePREfast>
</ClCompile>
@@ -37,6 +37,9 @@
<AdditionalDependencies>$(DDK_LIB_PATH)/storport.lib;$(DDK_LIB_PATH)/libcntpr.lib;%(AdditionalDependencies)</AdditionalDependencies>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
+ <DriverSign>
+ <FileDigestAlgorithm>sha256</FileDigestAlgorithm>
+ </DriverSign>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<ClCompile>
diff --git a/vs2019/xendisk/xendisk.vcxproj b/vs2019/xendisk/xendisk.vcxproj
index ce4b6d304b60..799b86a07eae 100644
--- a/vs2019/xendisk/xendisk.vcxproj
+++ b/vs2019/xendisk/xendisk.vcxproj
@@ -25,7 +25,7 @@
<PreprocessorDefinitions>PROJECT=$(ProjectName);POOL_NX_OPTIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<IntrinsicFunctions>true</IntrinsicFunctions>
<WarningLevel>EnableAllWarnings</WarningLevel>
-
<DisableSpecificWarnings>4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+
<DisableSpecificWarnings>4061;4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnablePREfast>true</EnablePREfast>
</ClCompile>
@@ -37,6 +37,9 @@
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
+ <DriverSign>
+ <FileDigestAlgorithm>sha256</FileDigestAlgorithm>
+ </DriverSign>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<ClCompile>
diff --git a/vs2019/xenvbd/xenvbd.vcxproj b/vs2019/xenvbd/xenvbd.vcxproj
index 7e25d60b929b..dcdd6d8405e1 100644
--- a/vs2019/xenvbd/xenvbd.vcxproj
+++ b/vs2019/xenvbd/xenvbd.vcxproj
@@ -24,7 +24,7 @@
<PreprocessorDefinitions>PROJECT=$(ProjectName);POOL_NX_OPTIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<IntrinsicFunctions>true</IntrinsicFunctions>
<WarningLevel>EnableAllWarnings</WarningLevel>
-
<DisableSpecificWarnings>4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28160;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
+
<DisableSpecificWarnings>4061;4464;4548;4770;4711;4820;4668;4255;5045;6001;6054;26451;28160;28196;30030;30029;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnablePREfast>true</EnablePREfast>
</ClCompile>
@@ -36,6 +36,9 @@
<AdditionalDependencies>$(ProjectDir)..\$(ConfigurationName)\$(Platform)\xencrsh.lib;$(DDK_LIB_PATH)/storport.lib;$(DDK_LIB_PATH)/libcntpr.lib;%(AdditionalDependencies)</AdditionalDependencies>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
+ <DriverSign>
+ <FileDigestAlgorithm>sha256</FileDigestAlgorithm>
+ </DriverSign>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<ClCompile>
diff --git a/vs2019/xenvbd_coinst/xenvbd_coinst.vcxproj
b/vs2019/xenvbd_coinst/xenvbd_coinst.vcxproj
index d8223146b72c..9a66f45bb358 100644
--- a/vs2019/xenvbd_coinst/xenvbd_coinst.vcxproj
+++ b/vs2019/xenvbd_coinst/xenvbd_coinst.vcxproj
@@ -34,6 +34,9 @@
<ResourceCompile>
<AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ResourceCompile>
+ <DriverSign>
+ <FileDigestAlgorithm>sha256</FileDigestAlgorithm>
+ </DriverSign>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<ClCompile>
--
2.17.1
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |