* Initial libbpf port

Signed-off-by: Dave Thaler <dthaler@microsoft.com>
This commit is contained in:
Dave Thaler 2021-09-28 11:44:26 -07:00 коммит произвёл GitHub
Родитель f8ee22f4f4
Коммит ce12b0cb0c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 363 добавлений и 6 удалений

6
.gitmodules поставляемый
Просмотреть файл

@ -9,3 +9,9 @@
[submodule "external/libbpf"]
path = external/libbpf
url = https://github.com/libbpf/libbpf.git
[submodule "external/bpftool"]
path = external/bpftool
url = https://github.com/dthaler/bpftool.git
[submodule "external/win-c"]
path = external/win-c
url = https://github.com/takamin/win-c.git

Просмотреть файл

@ -122,6 +122,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "performance", "tests\perfor
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xdp_tests", "tests\xdp\xdp_tests.vcxproj", "{07DC6181-84A2-4A14-A806-5E9AF6C929C2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bpftool", "tools\bpftool\bpftool.vcxproj", "{CA179B38-EBF5-4371-B830-73486E35250B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
@ -171,9 +173,9 @@ Global
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x64.ActiveCfg = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x64.Build.0 = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x64.Deploy.0 = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.ActiveCfg = Debug|Win32
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.Build.0 = Debug|Win32
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.Deploy.0 = Debug|Win32
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.ActiveCfg = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.Build.0 = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.Debug|x86.Deploy.0 = Debug|x64
{675B59F8-089E-40B5-8388-56254447CFA3}.MinSizeRel|ARM.ActiveCfg = Debug|ARM
{675B59F8-089E-40B5-8388-56254447CFA3}.MinSizeRel|ARM.Build.0 = Debug|ARM
{675B59F8-089E-40B5-8388-56254447CFA3}.MinSizeRel|ARM.Deploy.0 = Debug|ARM
@ -374,8 +376,8 @@ Global
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|ARM64.ActiveCfg = Debug|Win32
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x64.ActiveCfg = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x64.Build.0 = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x86.ActiveCfg = Debug|Win32
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x86.Build.0 = Debug|Win32
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x86.ActiveCfg = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.Debug|x86.Build.0 = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.MinSizeRel|ARM.ActiveCfg = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.MinSizeRel|ARM.Build.0 = Debug|x64
{74803F80-A8BD-4A03-862B-FA96648A9BF6}.MinSizeRel|ARM64.ActiveCfg = Debug|x64
@ -1114,6 +1116,32 @@ Global
{07DC6181-84A2-4A14-A806-5E9AF6C929C2}.RelWithDebInfo|x64.Build.0 = Release|x64
{07DC6181-84A2-4A14-A806-5E9AF6C929C2}.RelWithDebInfo|x86.ActiveCfg = Release|Win32
{07DC6181-84A2-4A14-A806-5E9AF6C929C2}.RelWithDebInfo|x86.Build.0 = Release|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|ARM.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|ARM64.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|x64.ActiveCfg = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|x64.Build.0 = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|x86.ActiveCfg = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Debug|x86.Build.0 = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|ARM.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|ARM.Build.0 = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|ARM64.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|ARM64.Build.0 = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|x64.ActiveCfg = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|x64.Build.0 = Debug|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|x86.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.MinSizeRel|x86.Build.0 = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.Release|ARM.ActiveCfg = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Release|ARM64.ActiveCfg = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Release|x64.ActiveCfg = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Release|x64.Build.0 = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.Release|x86.ActiveCfg = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|ARM.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|ARM.Build.0 = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|ARM64.ActiveCfg = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|ARM64.Build.0 = Debug|Win32
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|x64.ActiveCfg = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|x64.Build.0 = Release|x64
{CA179B38-EBF5-4371-B830-73486E35250B}.RelWithDebInfo|x86.ActiveCfg = Debug|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -1153,6 +1181,7 @@ Global
{7358D8BD-4123-4B2D-86C0-87F6BA6CED76} = {492C9B22-9237-4996-9E33-CA14D3533616}
{724EB55A-CCFC-4662-92E3-B664CDA365E7} = {492C9B22-9237-4996-9E33-CA14D3533616}
{07DC6181-84A2-4A14-A806-5E9AF6C929C2} = {492C9B22-9237-4996-9E33-CA14D3533616}
{CA179B38-EBF5-4371-B830-73486E35250B} = {B09749EC-3D14-414B-BA9B-CD20E218DC84}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3D5F862D-74C6-4357-9F95-0B152E33B7B8}

1
external/bpftool поставляемый Submodule

@ -0,0 +1 @@
Subproject commit 5cb8ebe77cd96f176153becd694350060204df45

1
external/win-c поставляемый Submodule

@ -0,0 +1 @@
Subproject commit 29a86ef6ce6b0ef22742ba0ba7ef7d71c96da578

Просмотреть файл

@ -5,7 +5,7 @@
## Initialize parameters
##
$build_directory=".\x64\Debug"
[System.Collections.ArrayList]$built_files=@( "EbpfCore.sys", "EbpfApi.dll", "ebpfnetsh.dll", "ebpfsvc.exe", "NetEbpfExt.sys", "sample_ebpf_ext.sys", "ucrtbased.dll", "MSVCP140D.dll", "VCRUNTIME140D.dll", "VCRUNTIME140_1D.dll")
[System.Collections.ArrayList]$built_files=@( "EbpfCore.sys", "EbpfApi.dll", "ebpfnetsh.dll", "ebpfsvc.exe", "NetEbpfExt.sys", "sample_ebpf_ext.sys", "ucrtbased.dll", "MSVCP140D.dll", "VCRUNTIME140D.dll", "VCRUNTIME140_1D.dll", "bpftool.exe", "bindmonitor.o", "bpf.o", "bpf_call.o", "divide_by_zero.o", "droppacket.o", "droppacket_unsafe.o", "map_in_map.o", "reflect_packet.o", "tail_call.o", "tail_call_bad.o", "tail_call_map.o", "test_sample_ebpf.o", "test_utility_helpers.o")
$destination_directory="C:\Temp"
$error.clear()
$vm="Windows 10 dev environment"

Просмотреть файл

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation
SPDX-License-Identifier: MIT
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="Platform">
<Import Project="$(SolutionDir)Directory.Build.props"/>
<!-- Override the rules for projects that are not under control of this project -->
<PropertyGroup>
<CodeAnalysisRuleSet>$(SolutionDir)external\Analyze.external.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>

Просмотреть файл

@ -0,0 +1,187 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation
SPDX-License-Identifier: MIT
-->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\external\bpftool\btf.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\btf_dumper.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\cfg.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\cgroup.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\common.c" />
<ClCompile Include="..\..\external\bpftool\feature.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\gen.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\iter.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\jit_disasm.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\json_writer.c" />
<ClCompile Include="..\..\external\bpftool\link.c" />
<ClCompile Include="..\..\external\bpftool\main.c" />
<ClCompile Include="..\..\external\bpftool\map.c" />
<ClCompile Include="..\..\external\bpftool\map_perf_ring.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\net.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\netlink_dumper.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\perf.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\pids.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\prog.c" />
<ClCompile Include="..\..\external\bpftool\skeleton\pid_iter.bpf.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\skeleton\profiler.bpf.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\struct_ops.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\tracelog.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\xlated_dumper.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\external\win-c\source\getopt.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\external\bpftool\cfg.h" />
<ClInclude Include="..\..\external\bpftool\json_writer.h" />
<ClInclude Include="..\..\external\bpftool\main.h" />
<ClInclude Include="..\..\external\bpftool\netlink_dumper.h" />
<ClInclude Include="..\..\external\bpftool\skeleton\pid_iter.h" />
<ClInclude Include="..\..\external\bpftool\xlated_dumper.h" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\external\bpftool\Makefile" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{ca179b38-ebf5-4371-b830-73486e35250b}</ProjectGuid>
<RootNamespace>bpftool</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>BPFTOOL_VERSION="0.1";_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)include;$(SolutionDir)external/libbpf/src;$(SolutionDir)external/win-c/include</AdditionalIncludeDirectories>
<AdditionalOptions>/analyze:stacksize 163884 %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>ebpfapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>BPFTOOL_VERSION="0.1";NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalIncludeDirectories>$(ProjectDir);$(SolutionDir)include;$(SolutionDir)external/libbpf/src;$(SolutionDir)external/win-c/include</AdditionalIncludeDirectories>
<AdditionalOptions>/analyze:stacksize 163884 %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>ebpfapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

Просмотреть файл

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) Microsoft Corporation
SPDX-License-Identifier: MIT
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\external\bpftool\skeleton\pid_iter.bpf.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\skeleton\profiler.bpf.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\btf.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\btf_dumper.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\cgroup.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\common.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\feature.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\gen.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\iter.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\jit_disasm.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\json_writer.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\link.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\main.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\map.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\map_perf_ring.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\net.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\netlink_dumper.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\perf.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\pids.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\prog.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\struct_ops.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\tracelog.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\xlated_dumper.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\win-c\source\getopt.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\external\bpftool\cfg.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\external\bpftool\skeleton\pid_iter.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\external\bpftool\cfg.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\external\bpftool\json_writer.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\external\bpftool\main.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\external\bpftool\netlink_dumper.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\external\bpftool\xlated_dumper.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="..\..\external\bpftool\Makefile" />
</ItemGroup>
</Project>