From 040444db8fc48cd4012bc7ec4568f6a9b6143cb3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 28 Apr 2017 17:48:44 +0300 Subject: nt_path_converter -> nt_namespace --- um/README.md | 6 +-- um/wrappers/special/CMakeLists.txt | 2 +- um/wrappers/special/nt_namespace/CMakeLists.txt | 10 +++++ um/wrappers/special/nt_namespace/README.md | 31 ++++++++++++++ .../nt_namespace/include/libnt_namespace/all.hpp | 8 ++++ .../include/libnt_namespace/device.hpp | 21 ++++++++++ um/wrappers/special/nt_namespace/src/device.cpp | 48 ++++++++++++++++++++++ .../special/nt_namespace/utils/CMakeLists.txt | 6 +++ .../special/nt_namespace/utils/convert_nt_path.cpp | 26 ++++++++++++ .../special/nt_path_converter/CMakeLists.txt | 10 ----- um/wrappers/special/nt_path_converter/README.md | 31 -------------- .../include/libnt_path_converter/all.hpp | 8 ---- .../include/libnt_path_converter/device.hpp | 21 ---------- .../special/nt_path_converter/src/device.cpp | 48 ---------------------- .../special/nt_path_converter/utils/CMakeLists.txt | 6 --- .../nt_path_converter/utils/convert_nt_path.cpp | 26 ------------ 16 files changed, 154 insertions(+), 154 deletions(-) create mode 100644 um/wrappers/special/nt_namespace/CMakeLists.txt create mode 100644 um/wrappers/special/nt_namespace/README.md create mode 100644 um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp create mode 100644 um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp create mode 100644 um/wrappers/special/nt_namespace/src/device.cpp create mode 100644 um/wrappers/special/nt_namespace/utils/CMakeLists.txt create mode 100644 um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp delete mode 100644 um/wrappers/special/nt_path_converter/CMakeLists.txt delete mode 100644 um/wrappers/special/nt_path_converter/README.md delete mode 100644 um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp delete mode 100644 um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp delete mode 100644 um/wrappers/special/nt_path_converter/src/device.cpp delete mode 100644 um/wrappers/special/nt_path_converter/utils/CMakeLists.txt delete mode 100644 um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp (limited to 'um') diff --git a/um/README.md b/um/README.md index 4a30be2..7601f25 100644 --- a/um/README.md +++ b/um/README.md @@ -5,13 +5,13 @@ A couple of usage examples are included along with the drivers. * [libservice]: Utilities to load/unload the drivers. * [libsimple]: [simple] driver usage examples. -* [libnt_path_converter]: [nt_path_converter] driver usage examples. +* [libnt_namespace]: [nt_namespace] driver usage examples. [libservice]: service/README.md [libsimple]: wrappers/simple/README.md [simple]: ../km/src/simple -[libnt_path_converter]: wrappers/special/nt_path_converter/README.md -[nt_path_converter]: ../km/src/special/nt_path_converter +[libnt_namespace]: wrappers/special/nt_namespace/README.md +[nt_namespace]: ../km/src/special/nt_namespace Building -------- diff --git a/um/wrappers/special/CMakeLists.txt b/um/wrappers/special/CMakeLists.txt index ed48e00..40b32f6 100644 --- a/um/wrappers/special/CMakeLists.txt +++ b/um/wrappers/special/CMakeLists.txt @@ -1 +1 @@ -add_subdirectory(nt_path_converter) +add_subdirectory(nt_namespace) diff --git a/um/wrappers/special/nt_namespace/CMakeLists.txt b/um/wrappers/special/nt_namespace/CMakeLists.txt new file mode 100644 index 0000000..ede2673 --- /dev/null +++ b/um/wrappers/special/nt_namespace/CMakeLists.txt @@ -0,0 +1,10 @@ +project(libnt_namespace) +file(GLOB libnt_namespace_sources "src/*.cpp") +file(GLOB_RECURSE libnt_namespace_headers "include/*.hpp") +add_library(libnt_namespace + ${libnt_namespace_sources} + ${libnt_namespace_headers}) +target_link_libraries(libnt_namespace libservice) +target_include_directories(libnt_namespace PUBLIC include/) + +add_subdirectory(utils) diff --git a/um/wrappers/special/nt_namespace/README.md b/um/wrappers/special/nt_namespace/README.md new file mode 100644 index 0000000..22a74ee --- /dev/null +++ b/um/wrappers/special/nt_namespace/README.md @@ -0,0 +1,31 @@ +nt_namespace driver utilities +================================== + +[nt_namespace] driver usage examples. + +[nt_namespace]: ../../../../km/src/special/nt_namespace + +Usage +----- + +### convert_nt_path.exe + + Usage: convert_nt_path.exe [NT_PATH...] + +Converts a NT-style path to a DOS-style path. +The NT namespace can be explored using the [WinObj] utility. +For example: + + > convert_nt_path.exe \Device\HarddiskVolume2\Windows + C:\Windows + +[WinObj]: https://technet.microsoft.com/en-us/library/bb896657.aspx + +See also +-------- + +* [Building] +* [License] + +[Building]: ../../../README.md#building +[License]: ../../../../README.md#license diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp b/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp new file mode 100644 index 0000000..474b802 --- /dev/null +++ b/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp @@ -0,0 +1,8 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#pragma once + +#include "device.hpp" diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp b/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp new file mode 100644 index 0000000..775b707 --- /dev/null +++ b/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp @@ -0,0 +1,21 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#pragma once + +#include "libservice/all.hpp" + +#include + +namespace libnt_namespace +{ + class Device : libservice::Device + { + public: + Device(); + + std::wstring convert_nt_path(const std::wstring&); + }; +} diff --git a/um/wrappers/special/nt_namespace/src/device.cpp b/um/wrappers/special/nt_namespace/src/device.cpp new file mode 100644 index 0000000..1187b1c --- /dev/null +++ b/um/wrappers/special/nt_namespace/src/device.cpp @@ -0,0 +1,48 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#include "libnt_namespace/device.hpp" + +#include "libservice/all.hpp" + +#include + +#include +#include + +namespace libnt_namespace +{ + namespace + { + const auto device_path = "\\\\.\\nt_namespace"; + const auto control_code = CTL_CODE(0x8000, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS); + } + + Device::Device() + : libservice::Device(libservice::Device::open(device_path)) + { } + + std::wstring Device::convert_nt_path(const std::wstring& src) + { + const auto in_buf = src.c_str(); + const auto in_buf_size = (src.size() + 1) * sizeof(wchar_t); + + const auto nbreq = get_required_output_size( + control_code, + in_buf, + in_buf_size); + + std::vector output(nbreq); + + send_control_code( + control_code, + in_buf, + in_buf_size, + output.data(), + nbreq); + + return reinterpret_cast(output.data()); + } +} diff --git a/um/wrappers/special/nt_namespace/utils/CMakeLists.txt b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt new file mode 100644 index 0000000..294a713 --- /dev/null +++ b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt @@ -0,0 +1,6 @@ +add_executable(convert_nt_path convert_nt_path.cpp) +target_link_libraries(convert_nt_path PRIVATE libnt_namespace) +if(MINGW) + target_compile_options(convert_nt_path PRIVATE -municode) + target_link_libraries(convert_nt_path PRIVATE -municode) +endif() diff --git a/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp b/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp new file mode 100644 index 0000000..5a77fed --- /dev/null +++ b/um/wrappers/special/nt_namespace/utils/convert_nt_path.cpp @@ -0,0 +1,26 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#include "libnt_namespace/all.hpp" + +#include +#include + +int wmain(int argc, wchar_t* argv[]) +{ + try + { + libnt_namespace::Device dev; + for (int i = 1; i < argc; ++i) + std::wcout << dev.convert_nt_path(argv[i]) << L"\n"; + } + catch (const std::exception& e) + { + std::cerr << e.what() << "\n"; + return 1; + } + + return 0; +} diff --git a/um/wrappers/special/nt_path_converter/CMakeLists.txt b/um/wrappers/special/nt_path_converter/CMakeLists.txt deleted file mode 100644 index 69f85d0..0000000 --- a/um/wrappers/special/nt_path_converter/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -project(libnt_path_converter) -file(GLOB libnt_path_converter_sources "src/*.cpp") -file(GLOB_RECURSE libnt_path_converter_headers "include/*.hpp") -add_library(libnt_path_converter - ${libnt_path_converter_sources} - ${libnt_path_converter_headers}) -target_link_libraries(libnt_path_converter libservice) -target_include_directories(libnt_path_converter PUBLIC include/) - -add_subdirectory(utils) diff --git a/um/wrappers/special/nt_path_converter/README.md b/um/wrappers/special/nt_path_converter/README.md deleted file mode 100644 index b295a80..0000000 --- a/um/wrappers/special/nt_path_converter/README.md +++ /dev/null @@ -1,31 +0,0 @@ -nt_path_converter driver utilities -================================== - -[nt_path_converter] driver usage examples. - -[nt_path_converter]: ../../../../km/src/special/nt_path_converter - -Usage ------ - -### convert_nt_path.exe - - Usage: convert_nt_path.exe [NT_PATH...] - -Converts a NT-style path to a DOS-style path. -The NT namespace can be explored using the [WinObj] utility. -For example: - - > convert_nt_path.exe \Device\HarddiskVolume2\Windows - C:\Windows - -[WinObj]: https://technet.microsoft.com/en-us/library/bb896657.aspx - -See also --------- - -* [Building] -* [License] - -[Building]: ../../../README.md#building -[License]: ../../../../README.md#license diff --git a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp b/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp deleted file mode 100644 index 474b802..0000000 --- a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright (c) 2015 Egor Tensin -// This file is part of the "Windows 7 drivers" project. -// For details, see https://github.com/egor-tensin/windows7-drivers. -// Distributed under the MIT License. - -#pragma once - -#include "device.hpp" diff --git a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp b/um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp deleted file mode 100644 index e1d75fb..0000000 --- a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2015 Egor Tensin -// This file is part of the "Windows 7 drivers" project. -// For details, see https://github.com/egor-tensin/windows7-drivers. -// Distributed under the MIT License. - -#pragma once - -#include "libservice/all.hpp" - -#include - -namespace libnt_path_converter -{ - class Device : libservice::Device - { - public: - Device(); - - std::wstring convert_nt_path(const std::wstring&); - }; -} diff --git a/um/wrappers/special/nt_path_converter/src/device.cpp b/um/wrappers/special/nt_path_converter/src/device.cpp deleted file mode 100644 index 2b5b89a..0000000 --- a/um/wrappers/special/nt_path_converter/src/device.cpp +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2015 Egor Tensin -// This file is part of the "Windows 7 drivers" project. -// For details, see https://github.com/egor-tensin/windows7-drivers. -// Distributed under the MIT License. - -#include "libnt_path_converter/device.hpp" - -#include "libservice/all.hpp" - -#include - -#include -#include - -namespace libnt_path_converter -{ - namespace - { - const auto device_path = "\\\\.\\nt_path_converter"; - const auto control_code = CTL_CODE(0x8000, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS); - } - - Device::Device() - : libservice::Device(libservice::Device::open(device_path)) - { } - - std::wstring Device::convert_nt_path(const std::wstring& src) - { - const auto in_buf = src.c_str(); - const auto in_buf_size = (src.size() + 1) * sizeof(wchar_t); - - const auto nbreq = get_required_output_size( - control_code, - in_buf, - in_buf_size); - - std::vector output(nbreq); - - send_control_code( - control_code, - in_buf, - in_buf_size, - output.data(), - nbreq); - - return reinterpret_cast(output.data()); - } -} diff --git a/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt b/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt deleted file mode 100644 index 9c5254b..0000000 --- a/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -add_executable(convert_nt_path convert_nt_path.cpp) -target_link_libraries(convert_nt_path PRIVATE libnt_path_converter) -if(MINGW) - target_compile_options(convert_nt_path PRIVATE -municode) - target_link_libraries(convert_nt_path PRIVATE -municode) -endif() diff --git a/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp b/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp deleted file mode 100644 index 9d25242..0000000 --- a/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2015 Egor Tensin -// This file is part of the "Windows 7 drivers" project. -// For details, see https://github.com/egor-tensin/windows7-drivers. -// Distributed under the MIT License. - -#include "libnt_path_converter/all.hpp" - -#include -#include - -int wmain(int argc, wchar_t* argv[]) -{ - try - { - libnt_path_converter::Device dev; - for (int i = 1; i < argc; ++i) - std::wcout << dev.convert_nt_path(argv[i]) << L"\n"; - } - catch (const std::exception& e) - { - std::cerr << e.what() << "\n"; - return 1; - } - - return 0; -} -- cgit v1.2.3