//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A // PARTICULAR PURPOSE AND NONINFRINGEMENT. // //********************************************************* #ifndef __WIL_STL_INCLUDED #define __WIL_STL_INCLUDED #include "common.h" #include "resource.h" #include #include #if defined(WIL_ENABLE_EXCEPTIONS) namespace std { template class vector; template struct char_traits; template class basic_string; } // namespace std namespace wil { /** Secure allocator for STL containers. The `wil::secure_allocator` allocator calls `SecureZeroMemory` before deallocating memory. This provides a mechanism for secure STL containers such as `wil::secure_vector`, `wil::secure_string`, and `wil::secure_wstring`. */ template struct secure_allocator : public std::allocator { template struct rebind { typedef secure_allocator other; }; secure_allocator() : std::allocator() { } ~secure_allocator() = default; secure_allocator(const secure_allocator& a) : std::allocator(a) { } template secure_allocator(const secure_allocator& a) : std::allocator(a) { } T* allocate(size_t n) { return std::allocator::allocate(n); } void deallocate(T* p, size_t n) { SecureZeroMemory(p, sizeof(T) * n); std::allocator::deallocate(p, n); } }; //! `wil::secure_vector` will be securely zeroed before deallocation. template using secure_vector = std::vector>; //! `wil::secure_wstring` will be securely zeroed before deallocation. using secure_wstring = std::basic_string, wil::secure_allocator>; //! `wil::secure_string` will be securely zeroed before deallocation. using secure_string = std::basic_string, wil::secure_allocator>; /// @cond namespace details { template<> struct string_maker { HRESULT make(_In_reads_opt_(length) PCWSTR source, size_t length) WI_NOEXCEPT try { m_value = source ? std::wstring(source, length) : std::wstring(length, L'\0'); return S_OK; } catch (...) { return E_OUTOFMEMORY; } wchar_t* buffer() { return &m_value[0]; } std::wstring release() { return std::wstring(std::move(m_value)); } static PCWSTR get(const std::wstring& value) { return value.c_str(); } private: std::wstring m_value; }; } /// @endcond // str_raw_ptr is an overloaded function that retrieves a const pointer to the first character in a string's buffer. // This is the overload for std::wstring. Other overloads available in resource.h. inline PCWSTR str_raw_ptr(const std::wstring& str) { return str.c_str(); } } // namespace wil #endif // WIL_ENABLE_EXCEPTIONS #endif // __WIL_STL_INCLUDED