1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
// scoped HANDLE for windows
#ifndef OPENVPN_WIN_SCOPED_HANDLE_H
#define OPENVPN_WIN_SCOPED_HANDLE_H
#include <windows.h>
#include <openvpn/common/size.hpp>
#include <openvpn/win/handle.hpp>
namespace openvpn::Win {
class ScopedHANDLE
{
ScopedHANDLE(const ScopedHANDLE &) = delete;
ScopedHANDLE &operator=(const ScopedHANDLE &) = delete;
public:
typedef HANDLE base_type;
ScopedHANDLE()
: handle(Handle::undefined())
{
}
explicit ScopedHANDLE(HANDLE h)
: handle(h)
{
}
HANDLE release()
{
const HANDLE ret = handle;
handle = nullptr;
return ret;
}
bool defined() const
{
return Handle::defined(handle);
}
HANDLE operator()() const
{
return handle;
}
HANDLE *ref()
{
return &handle;
}
void reset(HANDLE h)
{
close();
handle = h;
}
void reset()
{
close();
}
// unusual semantics: replace handle without closing it first
void replace(HANDLE h)
{
handle = h;
}
bool close()
{
if (defined())
{
const BOOL ret = ::CloseHandle(handle);
// OPENVPN_LOG("**** SH CLOSE hand=" << handle << " ret=" << ret);
handle = nullptr;
return ret != 0;
}
else
return true;
}
~ScopedHANDLE()
{
close();
}
ScopedHANDLE(ScopedHANDLE &&other) noexcept
{
handle = other.handle;
other.handle = nullptr;
}
ScopedHANDLE &operator=(ScopedHANDLE &&other) noexcept
{
close();
handle = other.handle;
other.handle = nullptr;
return *this;
}
private:
HANDLE handle;
};
} // namespace openvpn::Win
#endif
|